body { font-family: 'Arial', sans-serif; line-height: 1.6; max-width: 1200px; margin: 0 auto; padding: 20px; color: #333; }
        h1 { color: #FF6B35; text-align: center; }
        h2 { color: #008080; border-bottom: 2px solid #FFD700; }
        h3 { color: #4682B4; }
        .nav-bar { background-color: #FF6B35; padding: 10px; position: sticky; top: 0; display: flex; justify-content: space-between; align-items: center; }
        .nav-links a { color: white; margin: 0 15px; text-decoration: none; }
        .mobile-menu { display: none; }
        .game-buttons { text-align: center; margin: 20px 0; }
        .game-buttons a { display: inline-block; padding: 10px 20px; background-color: #4CAF50; color: white; text-decoration: none; margin: 0 10px; border-radius: 5px; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        .footer { background-color: #333; color: white; padding: 20px; text-align: center; margin-top: 30px; }
        @media (max-width: 768px) {
            .nav-links { display: none; }
            .mobile-menu { display: block; }
        }
