* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f5f5f0;
            color: #2d2d2d;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1a5276;
            color: #ffd700;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffd700;
            border-bottom: 2px solid #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a5276;
            margin: 40px 0 30px;
            text-align: center;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            font-size: 2.2rem;
            color: #2980b9;
            margin: 50px 0 25px;
            border-bottom: 3px solid #ffd700;
            padding-bottom: 12px;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: #1a5276;
            bottom: -3px;
            left: 0;
        }
        h3 {
            font-size: 1.6rem;
            color: #c0392b;
            margin: 35px 0 18px;
            padding-left: 10px;
            border-left: 4px solid #ffd700;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #c0392b;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 15px 8px;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-download:hover {
            background-color: #219653;
        }
        .image-container {
            margin: 40px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 3px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 5px solid #2980b9;
        }
        .tag {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 6px 12px;
            border-radius: 25px;
            margin: 8px 6px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #2980b9;
            transform: scale(1.05);
        }
        .game-type {
            display: inline-block;
            margin: 12px 8px;
            text-decoration: none;
            color: #1a5276;
            font-weight: 600;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type:hover {
            color: #e74c3c;
        }
        footer {
            background-color: #1a5276;
            color: white;
            padding: 40px 0 20px;
            margin-top: 70px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .copyright {
            margin-top: 30px;
            text-align: center;
            font-size: 0.95rem;
            opacity: 0.8;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        .strategy-tip {
            background-color: #fff8e1;
            border-radius: 8px;
            padding: 18px;
            margin: 20px 0;
            border-left: 4px solid #f39c12;
        }
        .review-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 25px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.08);
            position: relative;
        }
        .review-box::before {
            content: """;
            font-size: 5rem;
            color: rgba(41, 128, 185, 0.1);
            position: absolute;
            top: -10px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .regional-note {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 5px;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: #1a5276;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 30px 0 20px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 18px;
            }
            .btn {
                padding: 12px 24px;
                margin: 10px 5px;
                font-size: 1rem;
                display: block;
                width: 90%;
                margin-left: auto;
                margin-right: auto;
                text-align: center;
            }
            .stats-box {
                padding: 20px;
            }
        }
