* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif;
        }
        body {
            background-color: #f0f2f5;
            color: #1c1e21;
            line-height: 1.7;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #0a4da2 0%, #1a73e8 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #ffdf00;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 0 12px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
            color: #ffdf00;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #0a4da2;
            margin: 25px 0 15px;
            line-height: 1.4;
            font-weight: 700;
        }
        h1 {
            font-size: 2.3rem;
            text-align: center;
            margin: 30px 0 40px;
            color: #0a4da2;
            border-bottom: 3px solid #ffdf00;
            padding-bottom: 12px;
        }
        h2 {
            font-size: 1.8rem;
            border-left: 5px solid #ffdf00;
            padding-left: 15px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: #1a73e8;
            margin-top: 30px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #e74c3c;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #1a73e8;
        }
        .btn-download:hover {
            background-color: #0d66d0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
            position: relative;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            border: 5px solid white;
        }
        .watermark {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 3rem;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.2);
            z-index: 10;
            pointer-events: none;
            rotate: -30deg;
        }
        .highlight {
            font-weight: bold;
            color: #0a4da2;
            text-decoration: underline dotted #1a73e8;
            text-underline-offset: 4px;
        }
        .tips-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #1a73e8;
        }
        .tips-list {
            padding-left: 20px;
        }
        .tips-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 5px solid #1a73e8;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 18px;
            background-color: #f8f9fa;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: bold;
            color: #e74c3c;
        }
        .tag-container {
            margin: 40px 0;
            padding: 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        .tag {
            display: inline-block;
            background-color: #e8f0fe;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 5px;
            text-decoration: none;
            color: #0a4da2;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #d2e3fc;
            transform: translateY(-2px);
        }
        .section {
            margin-bottom: 40px;
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .review-card {
            background-color: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            border-left: 4px solid #ffdf00;
            transition: box-shadow 0.3s ease;
        }
        .review-card:hover {
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: bold;
            color: #0a4da2;
            font-size: 1.1rem;
        }
        .rating {
            color: #ffdf00;
            margin: 5px 0;
            letter-spacing: 2px;
        }
        .strategy-card {
            background-color: #f0f7ff;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            border-left: 4px solid #1a73e8;
        }
        .strategy-title {
            font-weight: bold;
            color: #0a4da2;
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        footer {
            background-color: #0a4da2;
            color: white;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #ffdf00;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .game-types {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-type {
            color: white;
            text-decoration: none;
            background-color: rgba(255,255,255,0.15);
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        .game-type:hover {
            background-color: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            margin-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
        }
        .emoji {
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                background-color: rgba(10, 77, 162, 0.95);
                padding: 15px;
                border-radius: 8px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
                width: 100%;
                text-align: center;
            }
            nav ul li a {
                display: block;
                width: 100%;
            }
            h1 {
                font-size: 1.9rem;
                margin: 25px 0 30px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            p {
                text-align: left;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .logo {
                font-size: 1.5rem;
            }
            h1 {
                font-size: 1.7rem;
            }
            .watermark {
                font-size: 2rem;
            }
        }
