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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-section {
    margin-bottom: 4rem;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    color: #a5a5a5;
    white-space: nowrap;
    margin: 0 auto;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: #a5a5a5;
}

.search-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.search-input {
    width: 100%;
    max-width: 600px;
    padding: 1.2rem;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #111;
    color: #fff;
    font-size: 1rem;
}

.search-input::placeholder {
    color: #666;
    transition: opacity 0.2s ease;
}

.search-input:focus::placeholder {
    opacity: 0;
}

.search-input:focus {
    outline: none;
    border-color: #444;
    background-color: #151515;
}

.discover-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.discover-btn:hover {
    transform: scale(1.05);
}

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

    .hero-section {
        margin-bottom: 2rem;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
        white-space: normal;
    }

    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .search-input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .discover-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        width: 100%;
        max-width: 600px;
    }

    /* Modal mobile optimizations */
    .modal-content {
        padding: 1.5rem;
        width: 95%;
        margin: 1rem;
    }

    .waitlist-content h2 {
        font-size: 1.4rem;
    }

    .waitlist-content p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .input-group input {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .waitlist-btn {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .thank-you-content h2 {
        font-size: 1.6rem;
    }

    .thank-you-content p {
        font-size: 0.9rem;
    }

    .close-modal {
        right: 1rem;
        top: 1rem;
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
}

/* Add a smaller breakpoint for very small devices */
@media (max-width: 380px) {
    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .search-input {
        padding: 0.7rem;
        font-size: 0.8rem;
    }
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(145deg, #151515, #111);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    margin-bottom: 1.5rem;
}

.gradient-line {
    height: 2px;
    background: linear-gradient(90deg, #fff, transparent);
    margin: 1rem 0;
    width: 50%;
}

.waitlist-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.waitlist-content p {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.input-group input:focus ~ .input-focus-border {
    width: 100%;
}

.waitlist-btn {
    width: 100%;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(90deg, #fff, #a5a5a5);
    color: #000;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(255, 255, 255, 0.3);
}

.waitlist-btn svg {
    transition: transform 0.3s ease;
}

.waitlist-btn:hover svg {
    transform: translateX(4px);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.close-modal:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.thank-you-content {
    text-align: center;
}

.thank-you-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    line-height: 1.5;
} 