body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: linear-gradient(135deg, #FF4D4D, #FF9900); color: white; padding: 20px; text-align: center; position: relative; }
        .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; margin-top: 15px; }
        nav a { color: white; margin: 0 15px; text-decoration: none; font-weight: bold; }
        .mobile-menu { display: none; position: absolute; top: 20px; right: 20px; background: white; color: #FF4D4D; border: none; padding: 10px; cursor: pointer; }
        h1 { color: #FF4D4D; border-bottom: 3px solid #FF9900; padding-bottom: 10px; }
        h2 { color: #FF9900; margin-top: 30px; }
        h3 { color: #FF6B35; }
        .download-btn, .login-btn { display: inline-block; background: #FF4D4D; color: white; padding: 12px 25px; margin: 15px 0; border-radius: 30px; text-decoration: none; font-weight: bold; }
        .image-container { text-align: center; margin: 25px 0; }
        img { max-width: 100%; height: auto; border-radius: 10px; }
        .player-review { background: #f9f9f9; padding: 15px; margin: 15px 0; border-left: 4px solid #FF9900; }
        .strategy-box { background: #fff8e6; padding: 15px; margin: 15px 0; border-radius: 8px; }
        footer { background: #333; color: white; text-align: center; padding: 20px; margin-top: 40px; }
        .tag { background: #FF9900; color: white; padding: 5px 10px; margin: 5px; border-radius: 20px; display: inline-block; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; align-items: center; }
            nav.active { display: flex; }
            .mobile-menu { display: block; }
            .logo { font-size: 2em; }
        }
