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

:root {
    --primary: #1e9c02;
    --primary-dark: #006918;
    --secondary: #6C757D;
    --dark: #1A1A1A;
    --darker: #0D0D0D;
    --light: #F8F9FA;
    --border: #2A2A2A;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--darker);
    color: var(--light);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}


.navbar {
    background: var(--dark);
    border-bottom: 2px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary), #00FFAA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s;
}


.coming-soon-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.coming-soon-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
}

.coming-soon-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), #00FFAA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out;
}

.coming-soon-subtitle {
    font-size: 1.5rem;
    color: #AAA;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-card {
    background: var(--dark);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--light);
}

.feature-card p {
    color: #AAA;
    line-height: 1.6;
}


.launch-info {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.launch-text {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), #00FFAA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.launch-description {
    font-size: 1.2rem;
    color: #AAA;
    max-width: 600px;
    margin: 0 auto;
}


.footer {
    padding: 2rem;
    text-align: center;
    background: var(--dark);
    border-top: 1px solid var(--border);
    color: #888;
}


@media (max-width: 768px) {
    .coming-soon-title {
        font-size: 2.5rem;
    }
    
    .coming-soon-subtitle {
        font-size: 1.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .launch-text {
        font-size: 1.5rem;
    }
    
    .launch-description {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
}
