* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 40px;
        }
        header {
            background: linear-gradient(135deg, #1e3a8a, #3b82f6);
            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: 1.8rem;
            font-weight: bold;
            color: #fbbf24;
            text-align: center;
            margin: 10px 0;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 8px 15px;
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        nav a:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 20px;
            right: 20px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 20px;
        }
        h1 {
            color: #1e3a8a;
            text-align: center;
            margin: 20px 0 30px;
            font-size: 2.5rem;
            padding-bottom: 10px;
            border-bottom: 3px solid #fbbf24;
            display: inline-block;
            width: 100%;
        }
        h2 {
            color: #1e40af;
            margin: 40px 0 20px;
            font-size: 1.8rem;
            padding-bottom: 8px;
            border-bottom: 2px solid #fbbf24;
        }
        h3 {
            color: #3b82f6;
            margin: 30px 0 15px;
            font-size: 1.4rem;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            margin: 10px 10px 20px 0;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #10b981;
        }
        .btn-login {
            background-color: #f59e0b;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 10px rgba(0,0,0,0.15);
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 900px;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 5px solid white;
        }
        .highlight {
            font-weight: bold;
            color: #dc2626;
            text-decoration: underline;
            text-underline-offset: 4px;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #fbbf24;
        }
        .stats-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        .stats-item:last-child {
            border-bottom: none;
        }
        .tips-list {
            margin: 20px 0 30px 25px;
        }
        .tips-list li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 10px;
        }
        .tips-list li:before {
            content: "•";
            color: #f59e0b;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }
        blockquote {
            border-left: 4px solid #3b82f6;
            padding: 15px 20px;
            margin: 25px 0;
            background-color: #eff6ff;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background-color: #1e3a8a;
            color: white;
            padding: 40px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .game-types {
            margin: 30px 0;
        }
        .game-types h4, .tags h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #fbbf24;
            padding-bottom: 5px;
            border-bottom: 1px solid #fbbf24;
            display: inline-block;
        }
        .game-types a, .tags a {
            color: white;
            text-decoration: none;
            display: inline-block;
            margin: 0 8px 10px 0;
            padding: 6px 12px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 20px;
            transition: all 0.3s ease;
        }
        .game-types a:hover, .tags a:hover {
            background-color: #3b82f6;
            transform: translateY(-2px);
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.08);
            border-radius: 8px;
            border: 1px dashed #fbbf24;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #e5e7eb;
        }
        @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(30, 58, 138, 0.95);
                padding: 20px;
                border-radius: 10px;
            }
            nav ul.show {
                display: flex;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                width: 100%;
                margin: 10px 0;
            }
            .stats-item {
                flex-direction: column;
            }
            .stats-item span:last-child {
                font-weight: bold;
                margin-top: 5px;
                color: #1e40af;
            }
        }
