* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial Unicode MS', 'Segoe UI', sans-serif;
        }
        body {
            background-color: #fdf9f0;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, #b31217, #7e0c11);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .logo {
            color: #ffdd00;
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
            font-family: 'Times New Roman', serif;
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        nav ul {
            display: flex;
            list-style: none;
            justify-content: center;
            flex-wrap: wrap;
            margin: 10px 0;
        }
        nav ul li {
            margin: 0 12px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 15px;
        }
        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: 26px;
            cursor: pointer;
            position: absolute;
            right: 15px;
            top: 20px;
        }
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px 15px;
        }
        h1 {
            color: #b31217;
            text-align: center;
            margin: 30px 0 20px;
            font-size: 34px;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffdd00;
        }
        h2 {
            color: #b31217;
            margin: 35px 0 18px;
            font-size: 26px;
            border-left: 4px solid #ffdd00;
            padding-left: 15px;
        }
        h3 {
            color: #7e0c11;
            margin: 25px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 20px;
            font-size: 17px;
            text-align: justify;
        }
        .highlight {
            font-weight: bold;
            color: #b31217;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            margin: 0 10px 15px;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            transition: all 0.3s ease;
            font-size: 17px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            border: none;
            cursor: pointer;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.2);
        }
        .download-btn {
            background: linear-gradient(135deg, #006400, #008000);
        }
        .login-btn {
            background: linear-gradient(135deg, #8b4513, #a0522d);
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 40px 0;
            background-color: white;
            padding: 25px 15px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-box {
            text-align: center;
            margin: 15px;
            padding: 20px 15px;
            background-color: #fff8e6;
            border-radius: 8px;
            min-width: 200px;
            border: 1px solid #ffe8b3;
        }
        .stat-number {
            font-size: 36px;
            font-weight: bold;
            color: #b31217;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 17px;
            color: #5d5d5d;
        }
        .review-container {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .review {
            border-bottom: 1px solid #f0f0f0;
            padding: 18px 0;
        }
        .review:last-child {
            border-bottom: none;
        }
        .reviewer {
            font-weight: bold;
            color: #006400;
            margin-bottom: 5px;
        }
        .rating {
            color: #ffb800;
            margin-bottom: 10px;
            font-size: 18px;
        }
        .tag-container {
            margin: 35px 0;
        }
        .tag {
            display: inline-block;
            background-color: #fff8e6;
            color: #5d5d5d;
            padding: 7px 15px;
            border-radius: 20px;
            margin: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 15px;
            border: 1px solid #ffe8b3;
        }
        .tag:hover {
            background-color: #b31217;
            color: white;
            border-color: #b31217;
        }
        .game-types {
            margin: 35px 0;
            padding: 20px;
            background-color: #fff8e6;
            border-radius: 8px;
        }
        .game-type {
            display: inline-block;
            margin: 0 15px 10px 0;
            text-decoration: none;
            color: #006400;
            font-weight: 600;
            transition: color 0.3s ease;
            font-size: 16px;
        }
        .game-type:hover {
            color: #b31217;
            text-decoration: underline;
        }
        footer {
            background-color: #2d2d2d;
            color: #f0f0f0;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .footer-section {
            margin-bottom: 30px;
        }
        .footer-section h4 {
            font-size: 19px;
            margin-bottom: 15px;
            color: #ffdd00;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #d0d0d0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: #ffdd00;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 20px;
            font-size: 14px;
            color: #a0a0a0;
        }
        .recommendation {
            background-color: #fff8e6;
            padding: 20px;
            border-radius: 8px;
            margin: 30px 0;
            text-align: center;
            font-size: 17px;
            border: 1px solid #ffe8b3;
        }
        .recommendation a {
            color: #b31217;
            font-weight: bold;
            text-decoration: none;
        }
        .recommendation a:hover {
            text-decoration: underline;
        }
        .tips-box {
            background-color: #f0fff0;
            border-left: 4px solid #006400;
            padding: 15px 20px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .tips-box h4 {
            color: #006400;
            margin-bottom: 10px;
            font-size: 18px;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                background-color: rgba(126, 12, 17, 0.95);
                padding: 20px 0;
                border-radius: 0 0 10px 10px;
            }
            nav ul.active {
                display: flex;
            }
            nav ul li {
                margin: 8px 0;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 23px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                margin: 10px auto;
                width: 90%;
            }
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            .stat-box {
                width: 90%;
            }
        }
