/* Modern dark theme with gradients */
:root {
    --primary-color: #00B4D8;
    --secondary-color: #90E0EF;
    --background-dark: #0A1929;
    --text-light: #FFFFFF;
    --text-muted: #94A3B8;
    --card-bg: rgba(255, 255, 255, 0.05);
    --gradient: linear-gradient(135deg, #00B4D8 0%, #90E0EF 100%);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

header {
    margin-bottom: 4rem;
}

h1 {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.countdown-container {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.countdown-container h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-box {
    background: rgba(0, 180, 216, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    min-width: 120px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.countdown-box span {
    display: block;
}

.countdown-box span:first-child {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.label {
    font-size: 1rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.description {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.description p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.waitlist-button {
    display: inline-block;
    background: var(--gradient);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 2rem 0;
}

.waitlist-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.team {
    margin-top: 5rem;
}

.team h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.team-members {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.member {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: 300px;
}

.member-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
}

.member-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.member h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.member p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--secondary-color);
}

.social-link img {
    width: 20px;
    height: 20px;
    filter: invert(1);
}

.launch-message {
    text-align: center;
    padding: 2rem;
}

.launch-message h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.launch-message p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    #countdown {
        gap: 1rem;
    }

    .countdown-box {
        min-width: 80px;
        padding: 1rem;
    }

    .countdown-box span:first-child {
        font-size: 2rem;
    }

    .team-members {
        gap: 2rem;
    }

    .member {
        width: 100%;
        max-width: 300px;
    }
} 