:root {
    --primary-dark: #2c3e50;
    --primary-green: #11CEA9;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --border-light: #e9ecef;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
}

.main-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--bg-light);
}

.content-wrapper {
    text-align: center;
    max-width: 800px;
    width: 100%;
}

header {
    margin-bottom: 60px;
}

.brand-name {
    font-family: 'DM Serif Text', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--primary-green);
    margin-bottom: 0;
}

.hero-section {
    margin-bottom: 60px;
}

.tagline {
    font-family: 'DM Serif Text', serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(17, 206, 169, 0.1);
    border: 1px solid rgba(17, 206, 169, 0.3);
    border-radius: 50px;
    color: var(--primary-green);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(17, 206, 169, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(17, 206, 169, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(17, 206, 169, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(17, 206, 169, 0);
    }
}

.countdown-section {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto 60px;
}

.countdown-section h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 80px;
}

.countdown-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.faq-section {
    max-width: 700px;
    margin: 0 auto 60px;
}

.faq-section h3 {
    font-family: 'DM Serif Text', serif;
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    margin-bottom: 10px;
}

.accordion-button {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-white);
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-green);
    background: var(--bg-light);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-light);
}

.accordion-body {
    color: var(--text-muted);
    line-height: 1.6;
}

.btn-primary {
    background: var(--primary-green);
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #0fb896;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(17, 206, 169, 0.4);
    color: white;
}

footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
}

.separator {
    color: var(--text-muted);
    margin: 0 15px;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-green);
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
}

@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .countdown-section {
        padding: 30px 20px;
    }
    
    .countdown-value {
        font-size: 2.5rem;
    }
    
    .faq-section h3 {
        font-size: 1.5rem;
    }
    
    .footer-links {
        font-size: 0.75rem;
    }
    
    .separator {
        margin: 0 10px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.25rem;
    }
    
    header {
        margin-bottom: 40px;
    }
    
    .hero-section {
        margin-bottom: 40px;
    }
}