* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f0f2f5;
            color: #2d3748;
            padding-bottom: 60px;
        }
        .header {
            background-color: #1e3a8a;
            padding: 18px 20px;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            color: #f97316;
            font-size: 26px;
            font-weight: bold;
            text-decoration: none;
            display: inline-block;
            margin-right: 35px;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
        }
        .nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 18px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-size: 17px;
            font-weight: 500;
            transition: color 0.3s;
        }
        .nav-links a:hover {
            color: #f97316;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px;
        }
        h1 {
            color: #1e3a8a;
            font-size: 34px;
            margin: 25px 0;
            border-bottom: 3px solid #f97316;
            padding-bottom: 12px;
        }
        h2 {
            color: #0f172a;
            font-size: 28px;
            margin: 35px 0 18px;
            position: relative;
            padding-left: 12px;
        }
        h2::before {
            content: "▶";
            color: #f97316;
            position: absolute;
            left: 0;
        }
        h3 {
            color: #1e3a8a;
            font-size: 24px;
            margin: 30px 0 15px;
        }
        p {
            margin: 18px 0;
            font-size: 19px;
            color: #334155;
        }
        .highlight {
            font-weight: bold;
            color: #f97316;
            text-decoration: underline dotted;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #f97316;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 8px;
            transition: all 0.3s;
            box-shadow: 0 4px 6px rgba(249, 115, 22, 0.2);
        }
        .btn:hover {
            background-color: #ea580c;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(249, 115, 22, 0.3);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 2px solid #e2e8f0;
        }
        .tag {
            display: inline-block;
            background-color: #e2e8f0;
            padding: 6px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            color: #1e3a8a;
            font-size: 15px;
            transition: all 0.3s;
        }
        .tag:hover {
            background-color: #cbd5e1;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 20px 12px 0;
            text-decoration: none;
            color: #0f172a;
            font-weight: bold;
            font-size: 17px;
            transition: color 0.3s;
        }
        .game-type:hover {
            color: #f97316;
        }
        .footer {
            background-color: #1e3a8a;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-links {
            margin: 25px 0;
        }
        .copyright {
            margin-top: 40px;
            font-size: 15px;
            color: #cbd5e1;
            text-align: center;
        }
        .review-box {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            border-left: 4px solid #f97316;
        }
        .stat-card {
            background-color: #ffffff;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
            text-align: center;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #1e3a8a;
            margin: 10px 0;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: #1e3a8a;
                padding: 25px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links li {
                margin: 15px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 26px;
            }
            h3 {
                font-size: 22px;
            }
            p {
                font-size: 17px;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 5px;
                width: 90%;
                text-align: center;
            }
            .stat-number {
                font-size: 30px;
            }
        }
