:root {
            --primary-spice: #FF4500;
            --secondary-gold: #FFD700;
            --dark-chilli: #8B0000;
            --light-yellow: #FFFACD;
            --spice-gradient: linear-gradient(135deg, #FF4500, #FF8C00, #FFD700);
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f8f9fa;
        }
        .logo-text {
            font-family: 'Georgia', serif;
            font-weight: bold;
            font-size: 2.2rem;
            background: var(--spice-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-custom {
            background: linear-gradient(135deg, #8B0000, #FF4500);
            box-shadow: 0 4px 12px rgba(139, 0, 0, 0.3);
        }
        .hero-section {
            background: var(--spice-gradient);
            color: white;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 30px 30px;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        h1, h2, h3 {
            color: var(--dark-chilli);
            margin-bottom: 1.5rem;
        }
        h1 {
            font-size: 2.8rem;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
        }
        h2 {
            border-left: 5px solid var(--primary-spice);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            color: #FF8C00;
            margin-top: 2rem;
        }
        .keyword-highlight {
            background-color: var(--light-yellow);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: bold;
            color: var(--dark-chilli);
        }
        .feature-icon {
            color: var(--primary-spice);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        .image-container {
            text-align: center;
            margin: 2.5rem 0;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .fact-box {
            background: linear-gradient(135deg, #FFFACD, #FFE4B5);
            border-left: 4px solid var(--secondary-gold);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .footer-custom {
            background: linear-gradient(135deg, #333, #000);
            color: white;
            padding: 2rem 0;
            margin-top: 4rem;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2.2rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
        .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);
        }
        .table-of-contents {
            background: #f8f9fa;
            border-radius: 10px;
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-left: 4px solid var(--primary-spice);
        }
        .toc-item {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .toc-item:hover {
            border-left-color: var(--primary-spice);
            padding-left: 1.5rem;
        }
