* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #fff9e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background-color: #e67e22;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffffff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #f8c471;
            border-bottom: 2px solid #f8c471;
        }
        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 101;
        }
        .main-content {
            max-width: 1200px;
            margin: 35px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d35400;
            margin: 30px 0 25px;
            font-size: 2.8rem;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #e67e22;
            margin: 40px 0 20px;
            font-size: 2.2rem;
            border-left: 5px solid #d35400;
            padding-left: 18px;
            line-height: 1.4;
        }
        h3 {
            color: #f39c12;
            margin: 30px 0 15px;
            font-size: 1.7rem;
            padding-left: 10px;
            border-left: 3px solid #d35400;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            letter-spacing: 0.3px;
        }
        .highlight {
            font-weight: bold;
            color: #d35400;
            text-decoration: none;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #d35400;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            margin: 15px 12px 15px 0;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 8px rgba(211, 84, 0, 0.3);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(211, 84, 0, 0.4);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .stats-box {
            background-color: #ffffff;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-top: 5px solid #d35400;
        }
        .review {
            background-color: #ffffff;
            border-left: 5px solid #27ae60;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #fad7a0;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #d35400;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        .tag:hover {
            background-color: #f8c471;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            margin: 12px 12px 12px 0;
            text-decoration: none;
            color: #e67e22;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #d35400;
        }
        .footer {
            max-width: 1200px;
            margin: 60px auto 0;
            padding: 35px 20px;
            border-top: 3px solid #d35400;
            background-color: #fff;
            border-radius: 12px 12px 0 0;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        }
        .copyright {
            margin-top: 30px;
            color: #666;
            font-size: 1rem;
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        ul {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.15rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #e67e22;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-toggle {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 20px 0;
            }
            h2 {
                font-size: 1.8rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 8px 10px 0;
                font-size: 1rem;
            }
            .stats-box {
                padding: 20px;
                margin: 20px 0;
            }
            .review {
                padding: 15px;
                margin: 15px 0;
            }
        }
