:root {
            --primary-gold: #FFD700;
            --divine-blue: #1E40AF;
            --sacred-orange: #EA580C;
            --mystic-purple: #7C3AED;
            --holy-white: #F8FAFC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
            color: #E2E8F0;
            line-height: 1.7;
        }
        .nav-logo {
            font-family: 'Georgia', serif;
            font-weight: bold;
            color: var(--primary-gold);
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
            font-size: 1.8rem;
        }
        .hero-section {
            background: linear-gradient(rgba(30, 64, 175, 0.8), rgba(124, 58, 237, 0.8)), url('https://via.placeholder.com/1200x600') center/cover;
            padding: 4rem 0;
            border-bottom: 3px solid var(--primary-gold);
        }
        .content-section {
            background: rgba(30, 41, 59, 0.95);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            margin: 2rem 0;
            padding: 2.5rem;
        }
        h1, h2, h3 {
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            border-bottom: 2px solid var(--sacred-orange);
            padding-bottom: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 4px solid var(--divine-blue);
            padding-left: 1rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--mystic-purple);
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--divine-blue), var(--mystic-purple));
            border-left: 5px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .btn-download {
            background: linear-gradient(45deg, var(--sacred-orange), #DC2626);
            color: white;
            font-weight: bold;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(234, 88, 12, 0.4);
        }
        .btn-login {
            background: transparent;
            color: var(--primary-gold);
            border: 2px solid var(--primary-gold);
            font-weight: bold;
            padding: 10px 28px;
            border-radius: 25px;
            transition: all 0.3s ease;
        }
        .btn-login:hover {
            background: var(--primary-gold);
            color: #1E293B;
        }
        .game-image {
            border-radius: 15px;
            border: 3px solid var(--primary-gold);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .tag-badge {
            background: linear-gradient(135deg, var(--mystic-purple), var(--divine-blue));
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            margin: 5px;
            display: inline-block;
            transition: all 0.3s ease;
        }
        .tag-badge:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(124, 58, 237, 0.4);
        }
        .rating-stars {
            color: var(--primary-gold);
            font-size: 1.2rem;
        }
        footer {
            background: #0F172A;
            border-top: 3px solid var(--primary-gold);
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 0;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
                margin: 1rem 0;
            }
        }
