:root {
            --primary-gold: #D4AF37;
            --secondary-red: #C41E3A;
            --accent-purple: #8B008B;
            --dark-blue: #1E3A8A;
            --light-cream: #FFF8DC;
            --deep-maroon: #800000;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.7;
        }
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-gold) !important;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
            color: var(--dark-blue) !important;
        }
        .nav-link:hover {
            color: var(--secondary-red) !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--deep-maroon);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            border-bottom: 3px solid var(--primary-gold);
            padding-bottom: 0.5rem;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--secondary-red);
            padding-left: 1rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--dark-blue);
            margin-top: 2rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            margin-bottom: 2rem;
        }
        .highlight-box {
            background: linear-gradient(135deg, var(--light-cream) 0%, #f5f5dc 100%);
            border-left: 5px solid var(--primary-gold);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-feature {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            border-top: 3px solid var(--accent-purple);
        }
        .game-feature:hover {
            transform: translateY(-5px);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-gold);
            margin-bottom: 1rem;
        }
        img {
            border-radius: 10px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
            margin: 2rem 0;
            max-width: 100%;
            height: auto;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 0.5rem;
        }
        footer {
            background: linear-gradient(135deg, var(--dark-blue) 0%, #1a1a2e 100%);
            color: white;
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-gold);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            transform: translateY(-5px);
            background: var(--secondary-red);
        }
        .keyword-highlight {
            background-color: rgba(212, 175, 55, 0.2);
            padding: 0.2rem 0.4rem;
            border-radius: 4px;
            font-weight: 600;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .navbar-brand {
                font-size: 1.5rem;
            }
        }
