:root {
    --bg-color: #000000;
    --text-color: #ffffff;
    --primary-color: #A020F0;
    /* Purple */
    --accent-color: #FF007F;
    /* Pink */
    --gradient-main: linear-gradient(135deg, #FF007F 0%, #A020F0 100%);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;
}

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

html,
body {
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header */
.site-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

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

.main-nav a:hover {
    color: var(--accent-color);
}

/* Hero */
.hero {
    padding: 100px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-buttons img {
    height: 60px;
    width: auto;
}

.hero-image-container {
    margin-top: 40px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(160, 32, 240, 0.3);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

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

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

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: linear-gradient(145deg, #111, #1a1a1a);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stars {
    color: #FFD700;
    display: block;
    margin-bottom: 5px;
}

.name {
    font-weight: 600;
    color: var(--accent-color);
}

/* Bedroom Game Section */
.bedroom-game {
    padding: 80px 0;
    background: linear-gradient(to bottom, #000, #1a0520);
    text-align: center;
}

.game-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.game-text {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.game-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.game-text p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.game-image {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.scratch-card-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.4);
    transition: transform 0.3s;
}

.scratch-card-img:hover {
    transform: scale(1.02);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #0a0a0a;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: white;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-content p {
    padding: 20px 0;
    opacity: 0.8;
}

/* Footer */
.site-footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
.mobile-menu-toggle {
    display: none;
    /* Hide on desktop by default */
}

@media (max-width: 768px) {
    .site-header .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        /* Full width on mobile for better touch targets */
        max-width: 300px;
        /* But limit max width */
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        /* Slightly transparent black */
        backdrop-filter: blur(15px);
        padding: 100px 30px;
        /* More top padding to clear header */
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .site-header .main-nav.open {
        right: 0;
    }

    .site-header .main-nav ul {
        flex-direction: column;
        gap: 25px;
        width: 100%;
        text-align: center;
    }

    .site-header .main-nav a {
        font-size: 1.2rem;
        display: block;
        padding: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1100;
        /* Higher than nav to stay clickable */
        position: relative;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 2px;
        background: white;
        transition: 0.3s;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

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

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .game-content {
        flex-direction: column;
        text-align: center;
    }

    .game-text {
        text-align: center;
    }
}