body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: #f9f9f9; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #e63946; text-align: center; }
        h2 { color: #457b9d; border-bottom: 2px solid #1d3557; padding-bottom: 5px; }
        h3 { color: #1d3557; }
        .logo { font-size: 28px; font-weight: bold; color: #e63946; text-shadow: 1px 1px 2px rgba(0,0,0,0.1); }
        .nav { background: #1d3557; padding: 10px; display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; gap: 15px; }
        .nav-links a { color: white; text-decoration: none; }
        .mobile-toggle { display: none; }
        .cta-button { background: #e63946; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 10px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .game-stats { background: #e8f1f8; padding: 15px; border-radius: 8px; margin: 20px 0; }
        .footer { background: #1d3557; color: white; text-align: center; padding: 20px; margin-top: 30px; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; background: none; border: none; color: white; font-size: 24px; }
            .nav { flex-direction: column; }
        }
