body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .logo { font-size: 28px; font-weight: bold; color: #FF4500; text-shadow: 2px 2px 4px rgba(0,0,0,0.2); }
        nav { background: #FFA500; padding: 15px; margin-bottom: 30px; }
        nav ul { list-style: none; padding: 0; display: flex; justify-content: space-around; }
        nav li { display: inline; }
        nav a { color: white; text-decoration: none; font-weight: bold; }
        .mobile-menu { display: none; background: #FFA500; color: white; padding: 10px; text-align: center; cursor: pointer; }
        h1 { color: #FF4500; border-bottom: 3px solid #FFA500; padding-bottom: 10px; }
        h2 { color: #FF8C00; margin-top: 30px; }
        h3 { color: #FFA500; margin-top: 25px; }
        .download-btn { display: inline-block; background: #4CAF50; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .login-btn { display: inline-block; background: #2196F3; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 5px; text-decoration: none; font-weight: bold; }
        .game-image { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .game-stats { background: #f8f8f8; padding: 15px; margin: 20px 0; border-radius: 8px; }
        .player-review { margin: 20px 0; padding: 15px; background: #fff8e6; border-left: 4px solid #FFA500; }
        .tag { background: #e0e0e0; padding: 5px 10px; margin: 5px; display: inline-block; border-radius: 20px; }
        footer { margin-top: 50px; padding: 20px; background: #333; color: white; }
        @media (max-width: 768px) {
            nav ul { display: none; flex-direction: column; }
            .mobile-menu { display: block; }
            .active { display: flex !important; }
        }
