body { font-family: 'Segoe UI', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #d44; border-bottom: 3px solid #f90; padding-bottom: 10px; }
        h2 { color: #0a7; margin-top: 30px; }
        h3 { color: #660; }
        .nav { background: #003; color: white; padding: 15px; position: sticky; top: 0; display: flex; justify-content: space-between; align-items: center; }
        .nav-links { display: flex; gap: 20px; }
        .mobile-toggle { display: none; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-toggle { display: block; background: #f90; padding: 10px; border-radius: 5px; }
            .nav.active .nav-links { display: flex; flex-direction: column; position: absolute; top: 60px; left: 0; right: 0; background: #003; padding: 20px; }
        }
        .cta-btn { background: #f90; color: white; padding: 10px 20px; border-radius: 5px; text-decoration: none; display: inline-block; margin: 10px 0; }
        .game-stats { background: #f0f8ff; padding: 15px; border-radius: 8px; margin: 20px 0; }
        img { max-width: 100%; height: auto; margin: 20px 0; border-radius: 8px; }
        .footer { margin-top: 40px; padding: 20px; background: #333; color: white; text-align: center; }
