    :root {
        --primary-color: #8B4789;
        --secondary-color: #D4AF37;
        --accent-color: #4A90E2;
        --dark-bg: #1A1A2E;
        --light-bg: #16213E;
        --text-light: #E8E8E8;
        --text-dark: #2C2C2C;
        --success-color: #6BCF7F;
        --warning-color: #FFB347;
        --danger-color: #E74C3C;
    }

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

    body {
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', sans-serif;
        background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
        color: var(--text-light);
        line-height: 1.6;
        min-height: 100vh;
    }

    /* Header Styles */
    header {
        background: linear-gradient(90deg, rgba(26, 26, 46, 0.95) 0%, rgba(22, 33, 62, 0.95) 100%);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 4px 20px rgba(139, 71, 137, 0.3);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border-bottom: 2px solid var(--primary-color);
    }

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

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.8rem;
        font-weight: bold;
        color: var(--secondary-color);
        text-decoration: none;
        text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
    }

    .logo:hover {
        color: var(--primary-color);
        text-shadow: 0 0 15px rgba(139, 71, 137, 0.7);
        transition: all 0.3s ease;
    }

    /* Hamburger Menu */
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
        gap: 5px;
        padding: 10px;
    }

    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--secondary-color);
        transition: all 0.3s ease;
        border-radius: 3px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

    nav ul li a {
        color: var(--text-light);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
    }

    nav ul li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transform: translateX(-50%);
        transition: width 0.3s ease;
    }

    nav ul li a:hover::before {
        width: 80%;
    }

    nav ul li a:hover {
        color: var(--secondary-color);
        background: rgba(139, 71, 137, 0.2);
    }

    nav ul li a.active {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: #fff;
        box-shadow: 0 4px 15px rgba(139, 71, 137, 0.4);
    }

    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, rgba(139, 71, 137, 0.3) 0%, rgba(74, 144, 226, 0.3) 100%);
        padding: 4rem 2rem;
        text-align: center;
        border-bottom: 3px solid var(--secondary-color);
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '✨';
        position: absolute;
        top: 20px;
        left: 10%;
        font-size: 3rem;
        opacity: 0.3;
        animation: float 3s ease-in-out infinite;
    }

    .hero::after {
        content: '🎮';
        position: absolute;
        bottom: 20px;
        right: 10%;
        font-size: 3rem;
        opacity: 0.3;
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

    .hero-content {
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    }

    .hero p {
        font-size: 1.3rem;
        margin-bottom: 2rem;
        color: var(--text-light);
    }

    .hero-image {
        max-width: 100%;
        height: auto;
        margin: 2rem 0;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .btn-primary {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        font-weight: bold;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(139, 71, 137, 0.4);
        border: none;
        cursor: pointer;
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(139, 71, 137, 0.6);
        background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    }

    /* Disclaimer Box */
    .disclaimer-box {
        background: linear-gradient(135deg, rgba(231, 76, 60, 0.1), rgba(255, 179, 71, 0.1));
        border-left: 5px solid var(--warning-color);
        padding: 1.5rem;
        margin: 2rem auto;
        max-width: 1200px;
        border-radius: 10px;
        box-shadow: 0 5px 25px rgba(255, 179, 71, 0.2);
    }

    .disclaimer-box h3 {
        color: var(--warning-color);
        margin-bottom: 1rem;
        font-size: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .disclaimer-box h3::before {
        content: '⚠️';
        font-size: 1.8rem;
    }

    .disclaimer-box p {
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .disclaimer-box ul {
        margin-left: 2rem;
        margin-bottom: 1rem;
    }

    .disclaimer-box ul li {
        margin-bottom: 0.5rem;
    }

    .btn-secondary {
        display: inline-block;
        padding: 0.7rem 1.5rem;
        background: var(--warning-color);
        color: var(--text-dark);
        text-decoration: none;
        border-radius: 8px;
        font-weight: bold;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
    }

    .btn-secondary:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    }

    /* Game Section */
    .game-section {
        padding: 3rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .game-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: var(--secondary-color);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    .game-selector {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }

    .game-btn {
        padding: 0.8rem 1.8rem;
        background: linear-gradient(135deg, rgba(139, 71, 137, 0.3), rgba(74, 144, 226, 0.3));
        color: var(--text-light);
        border: 2px solid var(--primary-color);
        border-radius: 12px;
        cursor: pointer;
        font-weight: bold;
        font-size: 1rem;
        transition: all 0.3s ease;
        font-family: inherit;
    }

    .game-btn:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        transform: scale(1.05);
        box-shadow: 0 5px 20px rgba(139, 71, 137, 0.5);
    }

    .game-btn.active {
        background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        border-color: var(--secondary-color);
        color: var(--text-dark);
        box-shadow: 0 5px 20px rgba(212, 175, 55, 0.5);
    }

    .game-container {
        max-width: 900px;
        margin: 0 auto;
        background: rgba(22, 33, 62, 0.5);
        border-radius: 10px;
        height: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        border: 2px solid var(--primary-color);
    }

    .game-container iframe {
        width: 100%;
        height: 600px;
        margin: 0 auto;
        border: none;
        border-radius: 10px;
        max-width: 900px;
        height: auto;
        aspect-ratio: 16/9;
        box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.7);
        align-items: center;
        justify-content: center ;
    }



    /* About Section */
    .about-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }

    .about-text h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-color);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    .about-text p {
        font-size: 1.1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
    }

    .about-image {
        text-align: center;
    }

    .about-image img {
        max-width: 100%;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(139, 71, 137, 0.3);
    }

    /* Features Section */
    .features-section {
        padding: 4rem 2rem;
        background: linear-gradient(135deg, rgba(139, 71, 137, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    }

    .features-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .features-container h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--secondary-color);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

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

    .feature-card {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .feature-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-color);
        box-shadow: 0 10px 40px rgba(139, 71, 137, 0.4);
    }

    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        display: block;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--secondary-color);
    }

    .feature-card p {
        line-height: 1.6;
        color: var(--text-light);
    }

    /* Reviews Section */
    .reviews-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .reviews-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--secondary-color);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

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

    .review-card {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.7), rgba(22, 33, 62, 0.7));
        padding: 2rem;
        border-radius: 15px;
        border-left: 4px solid var(--accent-color);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
        transition: all 0.3s ease;
    }

    .review-card:hover {
        transform: translateX(10px);
        box-shadow: 0 8px 35px rgba(74, 144, 226, 0.4);
    }

    .review-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .reviewer-name {
        font-weight: bold;
        color: var(--secondary-color);
        font-size: 1.2rem;
    }

    .stars {
        color: var(--secondary-color);
        font-size: 1.1rem;
    }

    .review-text {
        line-height: 1.7;
        font-style: italic;
        color: var(--text-light);
    }

    /* Contact Section */
    .contact-section {
        padding: 4rem 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }

    .contact-section h2 {
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 3rem;
        color: var(--secondary-color);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .contact-form {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border: 2px solid var(--primary-color);
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--secondary-color);
        font-weight: bold;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid var(--primary-color);
        border-radius: 8px;
        background: rgba(26, 26, 46, 0.5);
        color: var(--text-light);
        font-family: inherit;
        font-size: 1rem;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--secondary-color);
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 150px;
    }

    .contact-info {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
        padding: 2.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border: 2px solid var(--accent-color);
    }

    .contact-info h3 {
        color: var(--secondary-color);
        margin-bottom: 1.5rem;
        font-size: 1.8rem;
    }

    .info-item {
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .info-icon {
        font-size: 2rem;
    }

    /* Legal Pages */
    .legal-section {
        padding: 4rem 2rem;
        max-width: 1000px;
        margin: 0 auto;
    }

    .legal-section h1 {
        text-align: center;
        font-size: 2.8rem;
        margin-bottom: 2rem;
        color: var(--secondary-color);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    .legal-content {
        background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(22, 33, 62, 0.8));
        padding: 3rem;
        border-radius: 15px;
        line-height: 1.8;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
        border: 2px solid var(--primary-color);
    }

    .legal-content h2 {
        color: var(--secondary-color);
        margin-top: 2rem;
        margin-bottom: 1rem;
        font-size: 1.8rem;
    }

    .legal-content h3 {
        color: var(--accent-color);
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        font-size: 1.4rem;
    }

    .legal-content p {
        margin-bottom: 1rem;
    }

    .legal-content ul {
        margin-left: 2rem;
        margin-bottom: 1rem;
    }

    .legal-content ul li {
        margin-bottom: 0.5rem;
    }

    /* Footer */
    footer {
        background: linear-gradient(90deg, rgba(26, 26, 46, 0.98) 0%, rgba(22, 33, 62, 0.98) 100%);
        padding: 3rem 2rem 1rem;
        border-top: 3px solid var(--primary-color);
        margin-top: 4rem;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 3rem;
        margin-bottom: 2rem;
    }

    .footer-section h3 {
        color: var(--secondary-color);
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    .footer-section p {
        line-height: 1.8;
        margin-bottom: 0.8rem;
    }

    .footer-links {
        list-style: none;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
    }

    .footer-links li a {
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

    .footer-links li a:hover {
        color: var(--secondary-color);
        transform: translateX(5px);
    }

    .footer-disclaimer {
        background: rgba(139, 71, 137, 0.1);
        padding: 1.5rem;
        border-radius: 10px;
        border-left: 4px solid var(--warning-color);
        margin-bottom: 2rem;
    }

    .footer-disclaimer p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(139, 71, 137, 0.3);
        color: var(--text-light);
    }

    .footer-bottom p {
        margin-bottom: 0.5rem;
    }

    /* Age Verification Modal */
    .age-modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.9);
        z-index: 10000;
        justify-content: center;
        align-items: center;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
    }

    .age-modal.show {
        display: flex;
    }

    .modal-content {
        background: linear-gradient(135deg, var(--dark-bg), var(--light-bg));
        padding: 3rem;
        border-radius: 20px;
        max-width: 500px;
        text-align: center;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
        border: 3px solid var(--primary-color);
        animation: modalSlideIn 0.5s ease;
    }

    @keyframes modalSlideIn {
        from {
            transform: translateY(-100px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        color: var(--secondary-color);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }

    .modal-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.8;
    }

    .modal-buttons {
        display: flex;
        gap: 1rem;
        justify-content: center;
    }

    .btn-confirm,
    .btn-decline {
        padding: 1rem 2rem;
        border: none;
        border-radius: 10px;
        font-weight: bold;
        font-size: 1.1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn-confirm {
        background: linear-gradient(135deg, var(--success-color), var(--accent-color));
        color: #fff;
    }

    .btn-confirm:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(107, 207, 127, 0.5);
    }

    .btn-decline {
        background: linear-gradient(135deg, var(--danger-color), var(--warning-color));
        color: #fff;
    }

    .btn-decline:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(231, 76, 60, 0.5);
    }

    /* Scroll to Top Button */
    .scroll-top {
        position: fixed;
        bottom: 30px;
        right: 30px;
        background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
        color: #fff;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: none;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(139, 71, 137, 0.5);
        transition: all 0.3s ease;
        z-index: 999;
        border: 2px solid var(--secondary-color);
    }

    .scroll-top:hover {
        transform: translateY(-5px) scale(1.1);
        box-shadow: 0 8px 30px rgba(139, 71, 137, 0.7);
    }

    .scroll-top.show {
        display: flex;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }

        nav ul {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.98), rgba(22, 33, 62, 0.98));
            flex-direction: column;
            padding: 1rem;
            gap: 0;
            display: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        nav ul.active {
            display: flex;
        }

        nav ul li {
            width: 100%;
        }

        nav ul li a {
            display: block;
            padding: 1rem;
            border-bottom: 1px solid rgba(139, 71, 137, 0.2);
        }

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

        .hero p {
            font-size: 1.1rem;
        }

        .about-content,
        .contact-container {
            grid-template-columns: 1fr;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .reviews-grid {
            grid-template-columns: 1fr;
        }

        .game-container iframe {
            height: auto;
        }

        .footer-content {
            grid-template-columns: 1fr;
        }

        .modal-content {
            margin: 1rem;
            padding: 2rem;
        }

        .modal-buttons {
            flex-direction: column;
        }

        /* Mobile tweaks for About section: center and scale image, place it above the text */
        .about-section {
            padding: 2rem 1rem;
        }

        .about-content {
            grid-template-columns: 1fr;
            gap: 1.5rem;
            align-items: start;
        }

        /* Put image first on narrow screens so it sits above the copy */
        .about-image {
            order: -1;
            text-align: center;
        }

        .about-image img {
            width: 100%;
            max-width: 360px; /* constrain large images */
            height: auto;
            display: block;
            margin: 0 auto;
            border-radius: 12px;
        }

        /* Center heading/text for single-column layout for better balance */
        .about-text h2,
        .about-text p {
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .hero h1 {
            font-size: 2rem;
        }

        .game-container iframe {
            height: auto;
        }

        .scroll-top {
            width: 45px;
            height: 45px;
            bottom: 20px;
            right: 20px;
        }
    }
