/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #153563 0%, #365E96 50%, #153563 100%);
    background-color: #153563;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Subtle background pattern */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.3" fill="white"/></svg>') repeat;
    background-size: 300px 300px;
    opacity: 0.1;
    z-index: 1;
}

.twinkling {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="0.2" fill="white"/><circle cx="80" cy="40" r="0.15" fill="white"/><circle cx="40" cy="80" r="0.25" fill="white"/></svg>') repeat;
    background-size: 400px 400px;
    opacity: 0.05;
    z-index: 2;
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Subtle grid overlay */
.grid-overlay {
    /* position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 3;
    pointer-events: none; */
}

/* Container */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: 8rem;
    padding-bottom: 2rem;
}

/* Header */
.header {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 20;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

/* Main content */
.main-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
}

.hero-section {
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* Title and subtitle */
.title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: #ffffff;
    margin-bottom: 3rem;
    line-height: 1.4;
}



/* Countdown section */
.countdown-section {
    margin: 2.5rem 0;
    width: 100%;
    max-width: 800px;
}

.countdown-label {
    margin-bottom: 2.5rem;
}

.label-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #ffffff;
    display: block;
    margin-bottom: 0.8rem;
}

.label-line {
    width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    margin: 1.2rem auto;
}

.target-date {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: #b0bec5;
    display: block;
    line-height: 1.4;
}

/* Countdown timer */
.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    margin: 2.5rem 0;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.timer-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.timer-label {
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #b0bec5;
    text-transform: uppercase;
    line-height: 1;
}

.timer-separator {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: #ffffff;
    margin-top: 0.5rem;
}



/* Description */
.description {
    margin: 3rem 0;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.description p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #ffffff;
}

/* CTA buttons */
.cta-section {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    padding: 1rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    border: 2px solid;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: #DB6C06;
    border-color: #DB6C06;
    color: #ffffff;
}

.cta-button.primary:hover {
    background: #FF9838;
    border-color: #FF9838;
    transform: translateY(-1px);
}

.cta-button.secondary {
    background: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.cta-button.secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

/* Floating elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.floating-icon {
    position: absolute;
    font-size: 1.2rem;
    opacity: 0.03;
    animation: float 10s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1.5s;
}

.floating-icon:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 3s;
}

.floating-icon:nth-child(4) {
    top: 40%;
    right: 25%;
    animation-delay: 4.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

/* Responsive design */
@media (max-width: 768px) {
    .header {
        top: 1rem;
        left: 1rem;
    }
    
    .logo-image {
        height: 40px;
    }
    
    .container {
        padding-top: 6rem;
        padding-bottom: 4rem;
        min-height: 100vh;
        justify-content: space-between;
    }
    
    .title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .countdown-timer {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 1rem;
        margin: 2rem 0;
        flex-wrap: nowrap;
    }
    
    .timer-unit {
        min-width: 70px;
        text-align: center;
    }
    
    .timer-number {
        font-size: 2.2rem;
        margin-bottom: 0.3rem;
    }
    
    .timer-label {
        font-size: 0.65rem;
    }
    
    .timer-separator {
        font-size: 1.8rem;
        margin-top: 0.3rem;
        display: block;
    }
    
    .cta-section {
        flex-direction: column;
        align-items: center;
        margin-top: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-button {
        width: 100%;
        max-width: 320px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .description {
        margin: 1.5rem 0;
        padding: 0 1rem;
    }
    
    .description p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .header {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .logo-image {
        height: 35px;
    }
    
    .container {
        padding: 1rem;
        padding-top: 5rem;
        padding-bottom: 3rem;
        min-height: 100vh;
        justify-content: space-between;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .countdown-timer {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 0.8rem;
        margin: 1.5rem 0;
        flex-wrap: nowrap;
    }
    
    .timer-unit {
        min-width: 60px;
        text-align: center;
    }
    
    .timer-number {
        font-size: 1.8rem;
        margin-bottom: 0.2rem;
    }
    
    .timer-label {
        font-size: 0.6rem;
    }
    
    .timer-separator {
        font-size: 1.5rem;
        margin-top: 0.2rem;
        display: block;
    }
    
    .cta-section {
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        max-width: 280px;
        padding: 1.1rem 1.5rem;
        font-size: 1rem;
        min-height: 52px;
    }
    
    .description {
        margin: 1rem 0;
        padding: 0 0.5rem;
    }
    
    .description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
} 