* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', Tahoma, sans-serif;
        }
        body {
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background: linear-gradient(135deg, #e63946 0%, #d62828 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;
            color: #ffd700;
            text-align: center;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        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;
            padding: 6px 12px;
            border-radius: 4px;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        nav ul li a:hover {
            background-color: rgba(255,255,255,0.2);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            position: absolute;
            top: 15px;
            right: 15px;
            z-index: 101;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #d62828;
            margin: 25px 0 15px;
            line-height: 1.4;
            font-weight: 700;
        }
        h1 {
            font-size: 2.2rem;
            text-align: center;
            margin: 30px 0 40px;
            padding-bottom: 10px;
            border-bottom: 3px solid #ffd700;
            display: inline-block;
            width: 100%;
        }
        h2 {
            font-size: 1.8rem;
            border-bottom: 2px solid #e63946;
            padding-bottom: 8px;
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            color: #c1121f;
            margin-top: 30px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #ff9800;
        }
        .btn-login {
            background-color: #2196f3;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
            border: 5px solid white;
        }
        strong {
            color: #c1121f;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 15px;
            background-color: #fff1f1;
            border-radius: 8px;
            transition: transform 0.3s;
        }
        .stat-item:hover {
            transform: scale(1.03);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: bold;
            color: #d62828;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #333;
            font-weight: 500;
            font-size: 1rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.06);
            border-left: 5px solid #e63946;
        }
        .reviewer {
            font-weight: bold;
            color: #333;
            margin-top: 15px;
            display: block;
            font-size: 1rem;
        }
        .review-date {
            color: #666;
            font-size: 0.9rem;
            display: block;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffebee;
            color: #c1121f;
            padding: 8px 18px;
            border-radius: 20px;
            margin: 8px 5px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s;
            font-weight: 500;
        }
        .tag:hover {
            background-color: #c1121f;
            color: white;
            transform: translateY(-2px);
        }
        .game-type-nav {
            margin: 25px 0;
        }
        .game-type {
            display: inline-block;
            margin-right: 18px;
            margin-bottom: 10px;
            text-decoration: none;
            color: #1976d2;
            font-weight: 600;
            font-size: 1rem;
        }
        .game-type:hover {
            text-decoration: underline;
            color: #0d47a1;
        }
        footer {
            background-color: #2d3047;
            color: white;
            padding: 45px 20px 30px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.4rem;
            border-bottom: 2px solid #ffd700;
            padding-bottom: 8px;
            display: inline-block;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.2);
            margin-top: 20px;
            font-size: 0.95rem;
            color: #e0e0e0;
        }
        ul {
            margin-left: 30px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
            font-size: 1rem;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
                background-color: #c1121f;
                padding: 20px 0;
                border-radius: 0 0 10px 10px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 12px 0;
            }
            h1 {
                font-size: 1.8rem;
                line-height: 1.5;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 90%;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            p {
                text-align: left;
                font-size: 1rem;
            }
            .container {
                padding: 12px;
            }
        }
