* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Tahoma', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #2d3436;
            line-height: 1.8;
            padding-bottom: 60px;
        }
        header {
            background-color: #e74c3c;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.3px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #f1c40f;
            margin-left: 5px;
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 30px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 6px 0;
            position: relative;
        }
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #f1c40f;
            transition: width 0.3s ease;
        }
        nav ul li a:hover:after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 26px;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        h1 {
            color: #e74c3c;
            font-size: 36px;
            margin-bottom: 35px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #c0392b;
        }
        h2 {
            color: #2d3436;
            font-size: 28px;
            margin: 45px 0 20px;
            padding-left: 12px;
            border-left: 4px solid #e74c3c;
        }
        h3 {
            color: #e74c3c;
            font-size: 22px;
            margin: 30px 0 15px;
            padding-bottom: 5px;
            border-bottom: 1px dashed #c0392b;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #e74c3c;
        }
        .button-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 45px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 16px 32px;
            font-size: 18px;
            font-weight: bold;
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: inline-block;
            text-align: center;
            min-width: 200px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.12);
        }
        .download-btn {
            background-color: #27ae60;
            color: white;
        }
        .login-btn {
            background-color: #3498db;
            color: white;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }
        .btn:active {
            transform: translateY(-1px);
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
            border: 6px solid white;
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            margin: 35px 0;
            box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 25px;
        }
        .stat-item {
            text-align: center;
            padding: 25px 20px;
            background-color: #ffebee;
            border-radius: 8px;
            transition: transform 0.3s ease;
        }
        .stat-item:hover {
            transform: scale(1.04);
        }
        .stat-number {
            font-size: 34px;
            font-weight: bold;
            color: #e74c3c;
            margin-bottom: 12px;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 25px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border-left: 4px solid #c0392b;
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
        }
        .reviewer {
            font-weight: bold;
            color: #e74c3c;
        }
        .rating {
            color: #f39c12;
        }
        .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 35px 0;
        }
        .tag {
            background-color: #ffebee;
            padding: 9px 18px;
            border-radius: 25px;
            text-decoration: none;
            color: #e74c3c;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e74c3c;
            color: white;
        }
        .game-types {
            margin: 45px 0;
        }
        .type-link {
            color: #e74c3c;
            text-decoration: none;
            margin-right: 18px;
            font-size: 17px;
            transition: color 0.3s ease;
        }
        .type-link:hover {
            color: #c0392b;
            text-decoration: underline;
        }
        footer {
            background-color: #2d3436;
            color: white;
            padding: 50px 20px;
            margin-top: 60px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .footer-section {
            margin-bottom: 35px;
        }
        .footer-section h4 {
            font-size: 21px;
            margin-bottom: 22px;
            color: #e74c3c;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #4a4a4a;
            margin-top: 25px;
            font-size: 15px;
            color: #b2bec3;
        }
        .recommendation {
            background-color: #ffebee;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            text-align: center;
            border: 1px solid #c0392b;
        }
        .tip-box {
            background-color: #f8f9fa;
            border-left: 4px solid #27ae60;
            padding: 18px;
            margin: 30px 0;
            border-radius: 5px;
        }
        .tip-box h4 {
            color: #27ae60;
            margin-bottom: 12px;
            font-size: 18px;
        }
        .achievement-box {
            background-color: #fff3cd;
            border-left: 4px solid #f39c12;
            padding: 18px;
            margin: 25px 0;
            border-radius: 5px;
        }
        .achievement-box h4 {
            color: #d35400;
            margin-bottom: 10px;
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                width: 100%;
                display: none;
                margin-top: 20px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
            }
            nav ul li {
                margin: 12px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            h1 {
                font-size: 30px;
            }
            h2 {
                font-size: 25px;
            }
            h3 {
                font-size: 21px;
            }
            p {
                font-size: 16px;
            }
            .button-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 100%;
                max-width: 320px;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
