:root {
            --primary-spice: #FF6B35;
            --secondary-fire: #FF4500;
            --accent-yellow: #FFD700;
            --dark-chili: #8B0000;
            --light-bg: #FFF5EE;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--light-bg) 0%, #ffffff 100%);
            color: #333;
            line-height: 1.7;
        }
        .logo-brand {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--dark-chili), var(--primary-spice));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
        }
        .nav-link {
            font-weight: 600;
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 0 5px;
        }
        .nav-link:hover {
            background-color: var(--primary-spice);
            color: white !important;
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        h1 {
            color: var(--dark-chili);
            font-size: 2.8rem;
            border-bottom: 3px solid var(--accent-yellow);
            padding-bottom: 0.5rem;
        }
        h2 {
            color: var(--primary-spice);
            font-size: 2.2rem;
            margin-top: 2.5rem;
        }
        h3 {
            color: var(--secondary-fire);
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        .content-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .key-feature {
            background: linear-gradient(135deg, #fff, #ffe8e8);
            border-left: 5px solid var(--primary-spice);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .game-image {
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            transition: all 0.4s ease;
            margin: 1.5rem 0;
        }
        .game-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--accent-yellow) 0%, var(--accent-yellow) 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
            font-weight: 700;
            padding: 0 2px;
        }
        .fact-box {
            background: linear-gradient(135deg, var(--primary-spice), var(--secondary-fire));
            color: white;
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
        }
        .table-of-contents {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            border-left: 5px solid var(--primary-spice);
        }
        .toc-item {
            padding: 0.5rem 0;
            border-bottom: 1px dashed #dee2e6;
        }
        .toc-item:last-child {
            border-bottom: none;
        }
        footer {
            background: linear-gradient(135deg, var(--dark-chili), #333);
            color: white;
            padding: 2.5rem 0;
            margin-top: 3rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .logo-brand {
                font-size: 1.8rem;
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-spice);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--secondary-fire);
            transform: translateY(-3px);
            color: white;
        }
