body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; margin: 0; padding: 0; background-color: #f5f5f5; }
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background-color: #ff6b35; color: white; padding: 15px 0; text-align: center; position: relative; }
        .logo { font-size: 28px; font-weight: bold; letter-spacing: 2px; }
        nav { display: flex; justify-content: center; gap: 20px; margin-top: 10px; }
        nav a { color: white; text-decoration: none; font-weight: 500; }
        .mobile-nav-toggle { display: none; position: absolute; top: 15px; right: 20px; background: none; border: none; color: white; font-size: 24px; }
        h1 { font-size: 2.5em; margin-bottom: 20px; color: #ff6b35; }
        h2 { font-size: 1.8em; margin: 30px 0 15px; color: #4a4a4a; }
        h3 { font-size: 1.4em; margin: 25px 0 10px; color: #666; }
        .btn { display: inline-block; padding: 10px 20px; background-color: #ff6b35; color: white; text-decoration: none; border-radius: 5px; margin: 10px 0; font-weight: bold; }
        .image-container { text-align: center; margin: 20px 0; }
        .image-container img { max-width: 100%; height: auto; border-radius: 8px; }
        .tags { margin: 20px 0; }
        .tag { display: inline-block; background-color: #e0e0e0; padding: 5px 10px; margin-right: 5px; border-radius: 20px; text-decoration: none; color: #333; }
        footer { background-color: #333; color: white; text-align: center; padding: 20px; margin-top: 30px; }
        .game-types { margin: 20px 0; }
        .game-type { display: inline-block; margin-right: 10px; }
        .game-type a { color: #ff6b35; text-decoration: none; }
        @media (max-width: 768px) {
            nav { flex-direction: column; align-items: center; display: none; }
            nav.active { display: flex; }
            .mobile-nav-toggle { display: block; }
            h1 { font-size: 2em; }
            h2 { font-size: 1.5em; }
        }
