* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f9f9f9;
            color: #2d2d2d;
            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 3px 10px rgba(0,0,0,0.2);
        }
        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 0.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: 1.1rem;
            transition: all 0.3s ease;
            padding: 8px 12px;
            border-radius: 5px;
            font-weight: 500;
        }
        nav ul li a:hover {
            color: #ffd700;
            background-color: rgba(255,255,255,0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            padding: 5px 10px;
        }
        main {
            max-width: 1200px;
            margin: 30px auto;
            padding: 0 20px;
        }
        h1 {
            color: #d62828;
            font-size: 2.8rem;
            margin-bottom: 25px;
            text-align: center;
            padding: 20px 0;
            border-bottom: 4px solid #ffd700;
            text-shadow: 0 1px 2px rgba(0,0,0,0.1);
        }
        h2 {
            color: #d62828;
            font-size: 2.2rem;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 2px solid #ffd700;
            position: relative;
        }
        h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 80px;
            height: 2px;
            background-color: #d62828;
        }
        h3 {
            color: #d62828;
            font-size: 1.6rem;
            margin: 40px 0 18px;
            padding-left: 12px;
            border-left: 4px solid #ffd700;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: bold;
            color: #d62828;
            text-decoration: underline dotted #ffd700;
            text-underline-offset: 4px;
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }
        .btn {
            padding: 16px 32px;
            text-decoration: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .download-btn {
            background-color: #1e88e5;
            color: white;
            min-width: 240px;
        }
        .login-btn {
            background-color: #388e3c;
            color: white;
            min-width: 240px;
        }
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .btn:active {
            transform: translateY(-2px);
        }
        .image-container {
            margin: 45px 0;
            text-align: center;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.18);
            transition: transform 0.3s ease;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        .stats-box {
            background-color: white;
            border-radius: 12px;
            padding: 35px;
            margin: 45px 0;
            box-shadow: 0 6px 25px rgba(0,0,0,0.12);
            border-top: 5px solid #ffd700;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 25px;
            background-color: #f8f9fa;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .stat-item:hover {
            transform: translateY(-7px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: bold;
            color: #d62828;
            margin-bottom: 15px;
        }
        .stat-label {
            font-size: 1.15rem;
            color: #555;
        }
        .review-container {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
            box-shadow: 0 6px 20px rgba(0,0,0,0.1);
            border-left: 5px solid #d62828;
            transition: transform 0.3s ease;
        }
        .review-container:hover {
            transform: translateX(7px);
        }
        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 18px;
            align-items: center;
        }
        .reviewer {
            font-weight: bold;
            color: #d62828;
            font-size: 1.15rem;
        }
        .rating {
            color: #ffd700;
            font-weight: bold;
            font-size: 1.3rem;
        }
        .tag-container {
            margin: 45px 0;
        }
        .tag {
            display: inline-block;
            background-color: #ffebee;
            color: #d62828;
            padding: 11px 22px;
            border-radius: 30px;
            margin: 0 15px 15px 0;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            font-size: 1.05rem;
        }
        .tag:hover {
            background-color: #d62828;
            color: white;
            transform: translateY(-4px);
        }
        .game-types {
            margin: 50px 0;
            padding: 25px;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        .game-type-link {
            color: #d62828;
            text-decoration: none;
            font-weight: bold;
            margin-right: 30px;
            transition: all 0.3s ease;
            font-size: 1.15rem;
            position: relative;
            padding-bottom: 4px;
        }
        .game-type-link::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .game-type-link:hover {
            color: #b71c1c;
        }
        .game-type-link:hover::after {
            width: 100%;
        }
        footer {
            background: linear-gradient(135deg, #e63946 0%, #d62828 100%);
            color: white;
            padding: 60px 0 30px;
            margin-top: 70px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            margin-bottom: 50px;
        }
        .footer-section h3 {
            color: #ffd700;
            margin-bottom: 25px;
            font-size: 1.5rem;
            border-left: 4px solid #ffd700;
            padding-left: 15px;
        }
        .footer-description {
            font-size: 1.15rem;
            line-height: 1.8;
            margin-bottom: 25px;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.15);
            margin-top: 50px;
            font-size: 1.05rem;
            color: #f0f0f0;
        }
        .tips-box {
            background-color: #fff8e1;
            border-left: 5px solid #ffc107;
            padding: 25px;
            margin: 35px 0;
            border-radius: 5px;
        }
        .tips-box p {
            color: #ff8f00;
            margin-bottom: 0;
            font-weight: 500;
            font-size: 1.15rem;
        }
        .game-category {
            margin: 40px 0;
            padding: 20px;
            background-color: #fff;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .game-category h4 {
            color: #d62828;
            font-size: 1.3rem;
            margin-bottom: 15px;
        }
        .game-list {
            list-style-type: none;
        }
        .game-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
        }
        .game-list li:before {
            content: "•";
            color: #ffd700;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        th {
            background-color: #f8f8f8;
            color: #d62828;
            font-weight: bold;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background-color: #d62828;
                flex-direction: column;
                align-items: center;
                padding: 30px 0;
                display: none;
                box-shadow: 0 10px 15px rgba(0,0,0,0.15);
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 20px 0;
                margin-left: 0;
                width: 85%;
                text-align: center;
            }
            nav ul li a {
                display: block;
                width: 100%;
                padding: 12px;
                font-size: 1.15rem;
            }
            h1 {
                font-size: 2.3rem;
                padding: 18px 0;
                margin-bottom: 20px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 15px;
            }
            p {
                font-size: 1.1rem;
                margin-bottom: 22px;
            }
            .btn-container {
                flex-direction: column;
                gap: 20px;
            }
            .btn {
                width: 100%;
                padding: 16px 20px;
                font-size: 1.2rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .stat-number {
                font-size: 2.5rem;
            }
            .tag {
                padding: 10px 18px;
                font-size: 1rem;
                margin: 0 10px 10px 0;
            }
            .game-type-link {
                display: inline-block;
                margin-bottom: 18px;
                margin-right: 20px;
            }
            .review-container {
                padding: 25px;
            }
        }
