/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0b0b0b;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Header */
header {
    padding: 20px 0 0 0 ;
    text-align: center;
}

.logo span {
    color: #a3a3a3;
    font-weight: 300;
}

/* Hero Section */
.hero {
    text-align: center;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero h1 span {
    color: #666;
}

.subtitle {
    font-size: 1.1rem;
    color: #a3a3a3;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-weight: 300;
}
.logo img {
    width: 200px;
    filter: invert(1);
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #555;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .countdown {
        gap: 10px;
    }
    .time-box {
        min-width: 75px;
        padding: 12px;
    }
    .time-box span {
        font-size: 1.8rem;
    }
    .cta-form {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-info p {
        justify-content: center;
    }
}