* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Helvetica', sans-serif;
        }
        body {
            background-color: #fdf9f1;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #1e5799 0%, #3ccdbb 0%, #16c9f6 100%);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 10px;
            color: #ffdd00;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.5px;
        }
        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 25px;
            flex-wrap: wrap;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }
        .nav-links li a:hover {
            color: #ffdd00;
            background-color: rgba(255,255,255,0.1);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            margin: 0 auto 15px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #1a5276;
            text-align: center;
            margin-bottom: 30px;
            font-size: 36px;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
            padding-bottom: 15px;
            border-bottom: 3px solid #ffdd00;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #c0392b;
            margin: 40px 0 20px;
            font-size: 28px;
            border-bottom: 2px solid #f39c12;
            padding-bottom: 10px;
            position: relative;
            padding-left: 15px;
        }
        h2:before {
            content: "🔹";
            position: absolute;
            left: 0;
            top: 5px;
        }
        h3 {
            color: #27ae60;
            margin: 30px 0 15px;
            font-size: 22px;
            position: relative;
            padding-left: 15px;
        }
        h3:before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            font-size: 30px;
            line-height: 0.7;
        }
        p {
            margin-bottom: 20px;
            font-size: 18px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #1a5276;
            text-decoration: underline dotted;
            text-underline-offset: 4px;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            margin: 0 10px 15px;
            background-color: #e67e22;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 18px;
            transition: background-color 0.3s, transform 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            border: none;
            cursor: pointer;
            font-family: inherit;
        }
        .btn:hover {
            background-color: #d35400;
            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 {
            text-align: center;
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            border-left: 5px solid #3498db;
        }
        .stat-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }
        .stat-item:hover {
            background-color: #f8f9fa;
        }
        .stat-item span {
            margin-right: 10px;
            font-size: 22px;
            min-width: 30px;
        }
        .review {
            background-color: #fff8e1;
            border-left: 5px solid #f39c12;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
            position: relative;
        }
        .review:before {
            content: """;
            font-size: 80px;
            color: rgba(243, 156, 18, 0.2);
            position: absolute;
            top: -20px;
            left: 10px;
            font-family: Georgia, serif;
        }
        .reviewer {
            font-style: italic;
            color: #7f8c8d;
            margin-top: 10px;
            font-weight: bold;
        }
        .tips-list {
            list-style-type: none;
            margin: 20px 0;
        }
        .tips-list li {
            background-color: #e8f4f8;
            padding: 15px;
            margin-bottom: 10px;
            border-radius: 5px;
            position: relative;
            padding-left: 40px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tips-list li:hover {
            transform: translateX(5px);
            box-shadow: 0 3px 5px rgba(0,0,0,0.1);
        }
        .tips-list li:before {
            content: "🎯";
            position: absolute;
            left: 10px;
            top: 15px;
        }
        .tag-container {
            margin: 40px 0;
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 3px 6px rgba(0,0,0,0.05);
        }
        .tag {
            display: inline-block;
            background-color: #3498db;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.3s, transform 0.3s;
        }
        .tag:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }
        .game-type {
            display: inline-block;
            background-color: #9b59b6;
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            font-size: 14px;
            transition: background-color 0.3s, transform 0.3s;
        }
        .game-type:hover {
            background-color: #8e44ad;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 20px;
            margin-bottom: 20px;
            color: #ffdd00;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
            display: inline-block;
            padding: 3px 0;
        }
        .footer-links a:hover {
            color: #ffdd00;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #34495e;
            margin-top: 30px;
            font-size: 14px;
            color: #bdc3c7;
            grid-column: 1 / -1;
        }
        .recommendation {
            background-color: #f1c40f;
            padding: 20px;
            border-radius: 5px;
            margin: 30px 0;
            text-align: center;
            font-weight: bold;
            font-size: 18px;
            color: #2c3e50;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            line-height: 1.6;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                gap: 15px;
                text-align: center;
                padding: 15px 0;
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
                text-align: left;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            .stat-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .stat-item span {
                margin-bottom: 5px;
            }
        }
