:root {
            --primary-cinnamon: #D2691E;
            --secondary-spice: #FF7F50;
            --accent-gold: #FFD700;
            --dark-bg: #2C1810;
            --light-text: #FFF8DC;
        }
        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #4A2C1A 100%);
            color: var(--light-text);
            line-height: 1.7;
        }
        .logo-brand {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            background: linear-gradient(45deg, var(--accent-gold), var(--secondary-spice));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-custom {
            background: rgba(44, 24, 16, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--primary-cinnamon);
        }
        .nav-link {
            color: var(--light-text) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }
        .nav-link:hover {
            color: var(--accent-gold) !important;
            transform: translateY(-2px);
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background: var(--accent-gold);
            transition: all 0.3s ease;
        }
        .nav-link:hover::after {
            width: 100%;
            left: 0;
        }
        .hero-section {
            background: linear-gradient(rgba(44, 24, 16, 0.8), rgba(44, 24, 16, 0.9)), url('https://via.placeholder.com/1200x600');
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            text-align: center;
        }
        .content-section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            margin: 30px 0;
            border: 1px solid rgba(210, 105, 30, 0.3);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h1, h2, h3 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        h1 {
            font-size: 3rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary-cinnamon);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--secondary-spice);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .keyword-highlight {
            background: linear-gradient(120deg, transparent 0%, rgba(210, 105, 30, 0.2) 100%);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--accent-gold);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-cinnamon);
            margin-bottom: 1rem;
        }
        .game-image {
            border-radius: 10px;
            border: 3px solid var(--primary-cinnamon);
            box-shadow: 0 5px 15px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
            width: 100%;
            height: auto;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .fact-box {
            background: linear-gradient(135deg, var(--primary-cinnamon), var(--secondary-spice));
            color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .footer {
            background: var(--dark-bg);
            color: var(--light-text);
            padding: 40px 0 20px;
            margin-top: 50px;
            border-top: 3px solid var(--primary-cinnamon);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-section {
                padding: 25px;
            }
            .hero-section {
                padding: 60px 0;
            }
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-cinnamon);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background: var(--secondary-spice);
            transform: translateY(-5px);
        }
