:root {
    --primary-color: #ffffff;
    --accent-color: #ff0000;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-logo: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden; /* Prevent all scrolling */
    position: fixed; /* Extra precaution for mobile */
}

body {
    background: url('landscape_bg.png') no-repeat center center; /* Default for desktop */
    background-size: cover;
    color: var(--primary-color);
    font-family: var(--font-main);
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100vh; /* Changed from 85vh to fill screen */
    box-sizing: border-box;
}

/* Logo Styles */
.logo {
    margin-bottom: 20px;
    margin-top: 5vh; /* Moved more to the top */
}

.logo h1 {
    font-family: var(--font-logo);
    font-size: 7rem;
    font-weight: 700;
    letter-spacing:1px; /* Added letter spacing as requested */
    line-height: 1;
    margin-bottom: -5px;
}

.style-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
}

.line {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    flex-grow: 1;
}

.sub-logo {
    font-size: 1rem;
    letter-spacing: 8px;
    font-weight: 400;
    padding-top: 0;
    display: inline-block;
}

/* Countdown Styles */
.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 20px 0;
}

.timer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.timer-item span {
    font-size: 2.5rem; /* Updated as requested */
    font-weight: 900;
    line-height: 1;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.timer-item label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    margin-top: 5px;
    opacity: 0.7;
    font-weight: 700;
}

/* Coming Soon Section */
.coming-soon {
    margin-top: auto;
    margin-bottom: 2vh; /* Move it down further */
    width: 100%;
}

.main-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-top, .text-bottom {
    font-family: var(--font-heading);
    font-size: 8vw; /* Reduced from 10vw */
    font-weight: 900;
    line-height: 0.8;
    letter-spacing: -2px;
    text-transform: uppercase;
}

.red-banner {
    background-color: var(--accent-color);
    width: 150vw; /* Increased width to ensure full coverage on wide screens */
    padding: 8px 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-1.5deg);
    overflow: hidden;
    z-index: 3;
    box-shadow: 0 5px 25px rgba(255, 0, 0, 0.4);
    display: flex;
    align-items: center;
}

.banner-content {
    white-space: nowrap;
    display: flex;
    align-items: center; /* Center text vertically */
    font-weight: 900;
    font-size: 1rem; /* Slightly smaller text */
    animation: marquee 30s linear infinite;
    flex-shrink: 0;
    padding-right: 40px;
}

@keyframes marquee {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0); }
}

/* Responsive */
@media (max-width: 768px) {
    body { background-image: url('bg_image.png'); } /* Use portrait bg for mobile */
    .logo { margin-top: 0; } /* Removed margin top for mobile */
    .logo h1 { font-size: 2.5rem; }
    .style-container { max-width: 250px; gap: 10px; }
    .sub-logo { font-size: 0.8rem; letter-spacing: 5px; }
    
    .countdown { gap: 15px; }
    .timer-item span { font-size: 1.8rem; } /* Reduced from 2.5rem */
    .timer-item label { font-size: 0.6rem; }
    
    .text-top, .text-bottom { font-size: 20vw; }
    .red-banner { padding: 8px 0; }
    .banner-content { font-size: 0.7rem; }
}

/* Animation for numbers change */
.number-pop {
    animation: pop 0.4s ease-out;
}

@keyframes pop {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}
