* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #f0f4f1;
            color: #2c3e50;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        .header {
            background: linear-gradient(135deg, #27ae60 0%, #219653 100%);
            padding: 15px 20px;
            color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #ffd700;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
            margin-bottom: 15px;
            text-align: center;
            letter-spacing: 0.5px;
        }
        .nav {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
            padding: 10px 0;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 16px;
        }
        .nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: 2px solid white;
            color: white;
            font-size: 26px;
            cursor: pointer;
            padding: 5px 15px;
            border-radius: 6px;
            margin: 0 auto 12px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 25px 18px;
        }
        h1 {
            color: #27ae60;
            margin: 35px 0 25px;
            font-size: 32px;
            text-align: center;
            padding-bottom: 12px;
            border-bottom: 4px solid #ffd700;
        }
        h2 {
            color: #219653;
            margin: 35px 0 20px;
            font-size: 26px;
            background-color: #e8f5e9;
            padding: 10px 18px;
            border-radius: 6px;
            border-left: 5px solid #ffd700;
        }
        h3 {
            color: #1e8449;
            margin: 25px 0 15px;
            font-size: 22px;
            padding-left: 12px;
            border-left: 4px solid #ffd700;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
            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 10px;
            transition: all 0.3s ease;
            box-shadow: 0 3px 6px rgba(0,0,0,0.2);
            font-size: 17px;
        }
        .btn:hover {
            background-color: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0,0,0,0.3);
        }
        .btn-download {
            background-color: #27ae60;
        }
        .btn-download:hover {
            background-color: #219653;
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
            border: 4px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 4px 15px rgba(0,0,0,0.12);
            border-left: 6px solid #ffd700;
        }
        .stats-box p {
            margin-bottom: 15px;
        }
        .review {
            background-color: #fffde7;
            border-left: 5px solid #fbc02d;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .review::before {
            content: '"';
            font-size: 60px;
            color: #fbc02d;
            opacity: 0.3;
            position: absolute;
            top: -15px;
            left: 15px;
        }
        .tag {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 7px 15px;
            border-radius: 25px;
            margin: 8px;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.2s ease;
        }
        .tag:hover {
            background-color: #2980b9;
            transform: scale(1.08);
        }
        .game-type {
            display: inline-block;
            background-color: #8e44ad;
            color: white;
            padding: 9px 18px;
            border-radius: 8px;
            margin: 8px;
            text-decoration: none;
            transition: all 0.2s ease;
            font-size: 16px;
        }
        .game-type:hover {
            background-color: #7d3c98;
            transform: scale(1.08);
        }
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 45px 20px 25px;
            margin-top: 70px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer h3 {
            color: #ffd700;
            border-left: 4px solid #ffd700;
            margin-bottom: 25px;
            font-size: 20px;
        }
        .footer-links {
            margin: 30px 0 40px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer p {
            color: #e0e0e0;
            text-align: left;
            margin-bottom: 30px;
            font-size: 17px;
        }
        .copyright {
            margin-top: 50px;
            text-align: center;
            font-size: 15px;
            color: #b0b0b0;
            padding-top: 25px;
            border-top: 1px solid #444;
        }
        ul, ol {
            margin: 20px 0 30px 40px;
        }
        li {
            margin-bottom: 12px;
            font-size: 18px;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            .mobile-nav-btn {
                display: block;
            }
            .nav {
                display: none;
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
            .nav.active {
                display: flex;
            }
            h1 {
                font-size: 28px;
                margin: 25px 0;
            }
            h2 {
                font-size: 24px;
                margin: 30px 0 18px;
                padding: 8px 15px;
            }
            h3 {
                font-size: 20px;
                margin: 22px 0 12px;
            }
            p, li {
                font-size: 17px;
            }
            .btn {
                display: block;
                text-align: center;
                margin: 12px auto;
                width: 92%;
                padding: 12px 20px;
            }
            .stats-box {
                padding: 20px;
            }
            .review {
                padding: 18px;
            }
            .logo {
                font-size: 24px;
            }
        }
