:root {
            --primary-red: #e63946;
            --secondary-orange: #f4a261;
            --spicy-yellow: #e9c46a;
            --dark-chilli: #8b0000;
            --light-bg: #fff5f5;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: var(--light-bg);
        }
        .logo-text {
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--dark-chilli);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            letter-spacing: 1px;
        }
        .logo-text span {
            color: var(--primary-red);
        }
        .navbar {
            background: linear-gradient(135deg, var(--dark-chilli) 0%, var(--primary-red) 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 15px !important;
            border-radius: 4px;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        h1, h2, h3 {
            color: var(--dark-chilli);
            margin-top: 1.5rem;
            margin-bottom: 1rem;
        }
        h1 {
            border-bottom: 3px solid var(--secondary-orange);
            padding-bottom: 10px;
            font-size: 2.5rem;
        }
        h2 {
            border-left: 5px solid var(--primary-red);
            padding-left: 15px;
            font-size: 2rem;
        }
        h3 {
            color: var(--primary-red);
            font-size: 1.5rem;
        }
        .content-section {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease;
        }
        .content-section:hover {
            transform: translateY(-5px);
        }
        .key-term {
            background-color: #ffe8e8;
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: bold;
            color: var(--dark-chilli);
        }
        .game-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 1.5rem 0;
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .feature-list {
            list-style-type: none;
            padding-left: 0;
        }
        .feature-list li {
            padding: 10px 0;
            border-bottom: 1px dashed #eee;
        }
        .feature-list li:before {
            content: "?️";
            margin-right: 10px;
        }
        .highlight-box {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            border-left: 5px solid var(--primary-red);
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        .rating-stars {
            color: var(--secondary-orange);
            font-size: 1.2rem;
        }
        footer {
            background-color: var(--dark-chilli);
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: var(--primary-red);
            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.2);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        .back-to-top:hover {
            background-color: var(--dark-chilli);
            transform: translateY(-5px);
            color: white;
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .content-section {
                padding: 1.5rem;
            }
        }
