body { font-family: 'Segoe UI', Arial, sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        .mobile-nav { display: none; background: #2c3e50; color: white; padding: 10px; text-align: center; }
        .desktop-nav { display: flex; justify-content: space-between; align-items: center; padding: 15px 0; border-bottom: 2px solid #e74c3c; }
        .logo { font-size: 28px; font-weight: bold; color: #e74c3c; text-transform: uppercase; }
        .nav-links a { margin: 0 15px; color: #2c3e50; text-decoration: none; font-weight: 500; }
        .content { margin-top: 30px; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .cta-btn { display: inline-block; padding: 12px 25px; background: #e74c3c; color: white; border-radius: 5px; text-decoration: none; margin: 10px 0; font-weight: bold; }
        h1 { color: #2c3e50; border-bottom: 3px solid #e74c3c; padding-bottom: 10px; }
        h2 { color: #e74c3c; margin-top: 30px; }
        h3 { color: #2c3e50; margin-top: 25px; }
        .game-stats { background: #f8f9fa; padding: 15px; border-radius: 8px; margin: 20px 0; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background: #3498db; color: white; padding: 5px 10px; margin: 5px; border-radius: 20px; }
        .footer { margin-top: 50px; padding: 20px 0; border-top: 2px solid #e74c3c; text-align: center; }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-nav { display: block; }
            body { padding: 10px; }
        }
