:root {
            --primary-gold: #FFD700;
            --deep-purple: #4B0082;
            --rich-red: #DC143C;
            --emerald-green: #008000;
            --royal-blue: #4169E1;
            --dark-bg: #1a1a2e;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #16213e 100%);
            color: #f8f9fa;
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: 900;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--primary-gold), var(--rich-red), var(--royal-blue));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
        }
        .logo-text:hover {
            transform: scale(1.05);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.5);
        }
        .nav-link {
            color: #e9ecef !important;
            font-weight: 600;
            padding: 0.8rem 1.2rem !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            margin: 0 0.2rem;
        }
        .nav-link:hover, .nav-link:focus {
            background: linear-gradient(45deg, var(--primary-gold), var(--rich-red));
            color: #000 !important;
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), 
                        url('https://via.placeholder.com/1200x600') center/cover;
            padding: 5rem 0;
            border-bottom: 3px solid var(--primary-gold);
        }
        .content-section {
            background: rgba(255,255,255,0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 2rem 0;
            border: 1px solid rgba(255,255,255,0.1);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--primary-gold);
        }
        h1 {
            font-size: 3rem;
            text-align: center;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--rich-red);
            padding-left: 1rem;
            margin-top: 3rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--royal-blue);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight-text {
            background: linear-gradient(45deg, transparent 30%, rgba(255,215,0,0.2) 50%, transparent 70%);
            padding: 0.5rem 1rem;
            border-radius: 8px;
            font-weight: 600;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            text-shadow: 0 0 10px rgba(255,215,0,0.5);
        }
        .game-image {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
            margin: 2rem 0;
            border: 2px solid var(--primary-gold);
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .footer {
            background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            color: #e9ecef;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-gold);
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: linear-gradient(45deg, var(--primary-gold), var(--rich-red));
            color: #000;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .logo-text { font-size: 1.8rem; }
            .content-section { padding: 1.5rem; }
        }
