* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #333;
            background-color: #f9f6f0;
            padding-bottom: 50px;
        }
        .header {
            background-color: #8B4513;
            padding: 15px 20px;
            color: white;
            position: relative;
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            text-align: center;
            margin: 10px 0;
            color: #FFD700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin: 15px 0;
        }
        .nav a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .nav a:hover {
            background-color: #A0522D;
        }
        .mobile-nav-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 24px;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            display: none;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 10px;
            background-color: #A0522D;
            padding: 15px;
            border-radius: 4px;
            margin-top: 10px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        h1 {
            font-size: 36px;
            color: #8B4513;
            text-align: center;
            margin: 30px 0;
            border-bottom: 2px solid #D2B48C;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 28px;
            color: #8B4513;
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid #D2B48C;
        }
        h3 {
            font-size: 22px;
            color: #A0522D;
            margin: 30px 0 15px;
        }
        p {
            margin: 15px 0;
            font-size: 18px;
            text-align: justify;
        }
        .btn {
            display: inline-block;
            padding: 12px 24px;
            background-color: #FF8C00;
            color: white;
            text-decoration: none;
            font-weight: bold;
            border-radius: 6px;
            margin: 10px 10px 10px 0;
            transition: background 0.3s;
            font-size: 18px;
        }
        .btn:hover {
            background-color: #FF6347;
        }
        .btn-download {
            background-color: #228B22;
        }
        .btn-download:hover {
            background-color: #006400;
        }
        .btn-login {
            background-color: #1E90FF;
        }
        .btn-login:hover {
            background-color: #0000CD;
        }
        .img-container {
            text-align: center;
            margin: 30px 0;
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #f0e6d6;
        }
        .stats-table th {
            background-color: #D2B48C;
            color: #8B4513;
            font-weight: bold;
        }
        .stats-table tr:hover {
            background-color: #f5f0e6;
        }
        .review-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: bold;
            color: #8B4513;
            margin-bottom: 5px;
        }
        .rating {
            color: #FFD700;
            margin-bottom: 10px;
        }
        .tag-container {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .tag {
            padding: 8px 15px;
            background-color: #D2B48C;
            color: #8B4513;
            border-radius: 20px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        .tag:hover {
            background-color: #8B4513;
            color: white;
        }
        .game-type-nav {
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .game-type-nav a {
            padding: 10px 20px;
            background-color: #A0522D;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            transition: background 0.3s;
        }
        .game-type-nav a:hover {
            background-color: #8B4513;
        }
        .footer {
            background-color: #333;
            color: white;
            padding: 30px 20px;
            margin-top: 50px;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }
        .copyright {
            text-align: center;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #555;
        }
        @media (max-width: 768px) {
            .nav {
                display: none;
            }
            .mobile-nav-btn {
                display: block;
            }
            .mobile-nav.hidden {
                display: none;
            }
            .mobile-nav {
                display: flex;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
        }
