body { font-family: 'Arial', sans-serif; line-height: 1.6; margin: 0; padding: 0; color: #333; background-color: #f9f9f9; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #FF5722; color: white; padding: 10px 0; text-align: center; position: relative; }
        header .logo { font-size: 24px; font-weight: bold; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; }
        .mobile-nav-toggle { display: none; position: absolute; top: 10px; right: 10px; background: none; border: none; color: white; font-size: 20px; }
        h1, h2, h3 { color: #FF5722; }
        h1 { font-size: 28px; margin-bottom: 20px; }
        h2 { font-size: 22px; margin-top: 30px; margin-bottom: 15px; }
        h3 { font-size: 18px; margin-top: 20px; margin-bottom: 10px; }
        p { margin-bottom: 15px; }
        .btn { display: inline-block; background-color: #FF5722; color: white; padding: 10px 20px; text-decoration: none; border-radius: 5px; margin-top: 10px; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px 0; margin-top: 30px; }
        .game-types, .tags { margin-top: 20px; }
        .game-types a, .tags a { color: #FF5722; text-decoration: none; margin-right: 10px; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            .container { padding: 10px; }
        }
