body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        h1 { color: #FF4500; text-align: center; }
        h2 { color: #008000; border-bottom: 2px solid #FF4500; padding-bottom: 5px; }
        h3 { color: #4B0082; }
        .nav { background: #FFD700; padding: 10px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; }
        .nav-links { display: flex; gap: 15px; }
        .mobile-toggle { display: none; }
        @media (max-width: 768px) {
            .nav-links { display: none; flex-direction: column; }
            .nav-links.active { display: flex; }
            .mobile-toggle { display: block; }
        }
        .btn { background: #FF4500; 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-types { margin-top: 30px; }
        .tags { margin-top: 20px; }
        footer { background: #333; color: white; padding: 20px; text-align: center; margin-top: 30px; }
