body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f5f5ff;
        }
        header {
            background-color: #4a00e0;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 28px;
            font-weight: bold;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .mobile-menu-btn {
            display: none;
            background: #ff6b6b;
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-weight: 500;
        }
        h1 {
            color: #4a00e0;
            font-size: 32px;
            margin-bottom: 20px;
            border-bottom: 2px solid #ffcc00;
            padding-bottom: 10px;
        }
        h2 {
            color: #ff6b6b;
            font-size: 24px;
            margin: 25px 0 15px;
        }
        h3 {
            color: #4a90e2;
            font-size: 20px;
            margin: 20px 0 10px;
        }
        .download-btn, .login-btn {
            display: inline-block;
            background-color: #4caf50;
            color: white;
            padding: 12px 25px;
            margin: 15px 5px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .download-btn:hover, .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .login-btn {
            background-color: #2196f3;
        }
        .game-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 20px 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stats-box {
            background-color: white;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .player-review {
            background-color: #f8f9fa;
            border-left: 4px solid #4a00e0;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
        }
        footer {
            background-color: #333;
            color: white;
            padding: 25px;
            margin-top: 40px;
            border-radius: 8px;
            text-align: center;
        }
        .tag-cloud {
            margin: 20px 0;
        }
        .tag-cloud a {
            display: inline-block;
            background-color: #e0e0e0;
            color: #333;
            padding: 5px 10px;
            margin: 3px;
            border-radius: 20px;
            text-decoration: none;
            font-size: 14px;
        }
        .tag-cloud a:hover {
            background-color: #4a00e0;
            color: white;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            nav {
                flex-direction: column;
                align-items: flex-start;
            }
            nav a {
                margin: 5px 0;
                display: none;
            }
            nav.active a {
                display: block;
            }
            body {
                padding: 10px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
        }
