:root {
            --primary-gold: #FFD700;
            --deep-purple: #4B0082;
            --rich-red: #DC143C;
            --dark-blue: #00008B;
            --cream-white: #FFFDD0;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, var(--cream-white) 0%, #f8f9fa 100%);
            color: #333;
            line-height: 1.7;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            color: var(--deep-purple);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, var(--primary-gold), var(--rich-red));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: transform 0.3s ease;
        }
        .logo-text:hover {
            transform: scale(1.05);
        }
        .nav-custom {
            background: linear-gradient(90deg, var(--deep-purple), var(--dark-blue));
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            border-radius: 5px;
            margin: 0 5px;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--deep-purple);
            margin-bottom: 1rem;
            font-weight: 700;
        }
        h1 {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 10px;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--rich-red);
            padding-left: 15px;
            margin-top: 2rem;
        }
        h3 {
            color: var(--dark-blue);
            margin-top: 1.5rem;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .key-term {
            background-color: rgba(255, 215, 0, 0.2);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
            margin: 1.5rem 0;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .feature-icon {
            color: var(--rich-red);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .quote-box {
            border-left: 4px solid var(--primary-gold);
            background-color: rgba(255, 215, 0, 0.1);
            padding: 1.5rem;
            margin: 1.5rem 0;
            font-style: italic;
        }
        footer {
            background: linear-gradient(90deg, var(--deep-purple), var(--dark-blue));
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: var(--rich-red);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--primary-gold);
            color: var(--deep-purple);
            transform: translateY(-5px);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .logo-text {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
