:root {
    --primary-purple: #4c1d95;
    --secondary-purple: #3730a3;
    --light-gray: #f3f4f6;
    --text-color: #d1d5db;
    --text-heading: #ffffff;
    --background-gradient: linear-gradient(135deg, var(--primary-purple), var(--secondary-purple));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--primary-purple);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background: rgba(25, 10, 45, 0.5);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-heading);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-heading);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-color);
}

/* Hero Section */
.hero {
    background: var(--background-gradient);
    padding: 12rem 0 6rem 0;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content h1 {
    font-size: 4rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.hero-content .tagline {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.hero-content .subtext {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.launch-banner {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-heading);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

.hero-buttons .btn {
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin: 0 0.5rem;
}

.btn-primary {
    background: var(--light-gray);
    color: var(--primary-purple);
}

.btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--light-gray);
    color: var(--light-gray);
}

.btn-secondary:hover {
    background: var(--light-gray);
    color: var(--primary-purple);
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: #11071F;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    color: var(--text-heading);
    margin-bottom: 1.5rem;
}

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

/* Platform Availability Section */
.platforms {
    padding: 6rem 0;
    text-align: center;
}

.platforms h2 {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 3rem;
}

.platform-timeline {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.platform-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 12px;
    width: 300px;
}

.platform-item h3 {
    font-size: 1.75rem;
    color: var(--text-heading);
}

.platform-item p {
    font-size: 1.1rem;
    color: var(--text-color);
}

/* Download Section */
.download {
    padding: 6rem 0;
    background: #11071F;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    color: var(--text-heading);
    margin-bottom: 1rem;
}

.download p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.store-badges img {
    margin: 0 1rem;
    cursor: not-allowed;
    opacity: 0.7;
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    background: #0D0417;
}

.footer-links {
    margin-top: 1rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-heading);
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in-out forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.logo {
        display: flex;
        align-items: center;
        gap: 8px; /* space between icon and text */
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--text-heading);
        text-decoration: none;
}

.logo-icon {
    height: 40px; /* scales icon to match text height */
    width: 40px;
    object-fit: contain; /* ensures proper proportions */
    display: inline-block;
}

.logo:hover .logo-icon {
transform: scale(1.05);
transition: transform 0.2s ease;
}

.store-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px; /* space between the texts */
    flex-wrap: wrap; /* ensures text doesn’t overflow on small screens */
}

.store-text {
    font-size: 1rem;
    color: gray; /* soft light purple like your screenshot */
    font-weight: 500;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Simple hiding for this example */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 80%;
    }

    .platform-timeline {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

}