* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background-color: #e63946;
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: color 0.3s;
        }
        nav ul li a:hover {
            color: #ffd700;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            position: absolute;
            right: 20px;
            top: 20px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1, h2, h3 {
            color: #1d3557;
            margin: 25px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #457b9d;
        }
        h1 {
            font-size: 2.2rem;
            color: #e63946;
            text-align: center;
            margin: 30px 0;
            border-bottom: none;
        }
        h2 {
            font-size: 1.8rem;
            color: #1d3557;
        }
        h3 {
            font-size: 1.5rem;
            color: #457b9d;
            border-bottom: 1px solid #457b9d;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .highlight {
            font-weight: bold;
            color: #e63946;
        }
        .btn-container {
            text-align: center;
            margin: 40px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 30px;
            margin: 0 15px;
            background-color: #e63946;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s, transform 0.3s;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d62828;
            transform: translateY(-2px);
        }
        .btn-download {
            background-color: #2a9d8f;
        }
        .btn-download:hover {
            background-color: #21867a;
        }
        .image-container {
            text-align: center;
            margin: 30px 0;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-left: 5px solid #e63946;
        }
        .stats-box p {
            font-size: 1.1rem;
        }
        .review-container {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: bold;
            color: #457b9d;
            margin-bottom: 5px;
        }
        .stars {
            color: #ffd700;
            margin-bottom: 10px;
        }
        footer {
            background-color: #1d3557;
            color: white;
            padding: 40px 20px;
            margin-top: 50px;
        }
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
        }
        .game-type {
            margin: 20px 0;
        }
        .game-type h3 {
            color: #ffd700;
            border-bottom: 1px solid #ffd700;
        }
        .game-type a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }
        .game-type a:hover {
            color: #ffd700;
        }
        .tags {
            margin: 30px 0;
        }
        .tags h3 {
            color: #ffd700;
            border-bottom: 1px solid #ffd700;
        }
        .tag {
            display: inline-block;
            background-color: #457b9d;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            margin: 0 8px 10px 0;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        .tag:hover {
            background-color: #e63946;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid #457b9d;
            font-size: 0.9rem;
        }
        .recommendation {
            margin: 30px 0;
            padding: 20px;
            background-color: rgba(255,255,255,0.1);
            border-radius: 10px;
        }
        .recommendation a {
            color: #ffd700;
            font-weight: bold;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav ul {
                display: none;
                flex-direction: column;
                align-items: center;
                margin-top: 20px;
            }
            nav ul.show {
                display: flex;
            }
            nav ul li {
                margin: 10px 0;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                display: block;
                margin: 15px auto;
                width: 80%;
            }
        }
