body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5f5;
        }
        header {
            background-color: #ff6b6b;
            color: white;
            padding: 20px;
            text-align: center;
            border-radius: 10px;
            margin-bottom: 30px;
        }
        .logo {
            font-size: 2.5em;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 15px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
        }
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5em;
            cursor: pointer;
        }
        h1, h2, h3 {
            color: #ff6b6b;
            margin-top: 30px;
        }
        h1 {
            font-size: 2.2em;
            border-bottom: 2px solid #ff6b6b;
            padding-bottom: 10px;
        }
        h2 {
            font-size: 1.8em;
        }
        h3 {
            font-size: 1.5em;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #4CAF50;
            color: white;
            padding: 12px 24px;
            margin: 15px 0;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        .download-btn:hover, .login-btn:hover {
            background-color: #45a049;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            height: auto;
            display: block;
            margin: 20px auto;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .table-container {
            overflow-x: auto;
            margin: 20px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background-color: white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        th, td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #ff6b6b;
            color: white;
        }
        tr:hover {
            background-color: #f5f5f5;
        }
        .player-review {
            background-color: white;
            padding: 20px;
            margin: 20px 0;
            border-radius: 10px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }
        .review-author {
            font-weight: bold;
            color: #ff6b6b;
        }
        footer {
            margin-top: 50px;
            padding: 20px;
            background-color: #333;
            color: white;
            text-align: center;
            border-radius: 10px;
        }
        .tag-cloud {
            margin: 30px 0;
            text-align: center;
        }
        .tag-cloud a {
            display: inline-block;
            background-color: #e0e0e0;
            color: #333;
            padding: 8px 12px;
            margin: 5px;
            border-radius: 20px;
            text-decoration: none;
            transition: all 0.3s;
        }
        .tag-cloud a:hover {
            background-color: #ff6b6b;
            color: white;
        }
        @media (max-width: 768px) {
            .mobile-nav-toggle {
                display: block;
            }
            nav {
                flex-direction: column;
                align-items: center;
                display: none;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.5em;
            }
            h3 {
                font-size: 1.3em;
            }
        }
