body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; max-width: 1200px; margin: 0 auto; padding: 20px; }
        header { background: #FF6B35; color: white; padding: 20px; text-align: center; position: relative; }
        .logo { font-size: 2.5em; font-weight: bold; margin-bottom: 10px; }
        nav { display: flex; justify-content: center; gap: 20px; }
        nav a { color: white; text-decoration: none; }
        .mobile-menu { display: none; position: absolute; top: 20px; right: 20px; }
        @media (max-width: 768px) {
            nav { display: none; flex-direction: column; position: absolute; top: 80px; left: 0; right: 0; background: #FF6B35; padding: 20px; }
            nav.active { display: flex; }
            .mobile-menu { display: block; }
        }
        h1 { color: #FF6B35; border-bottom: 2px solid #FF6B35; padding-bottom: 10px; }
        h2 { color: #E84A5F; margin-top: 30px; }
        h3 { color: #2A363B; }
        .btn { display: inline-block; background: #FF6B35; color: white; padding: 10px 20px; margin: 10px 0; border-radius: 5px; text-decoration: none; }
        img { max-width: 100%; height: auto; margin: 20px 0; }
        footer { background: #2A363B; color: white; padding: 20px; text-align: center; margin-top: 40px; }
        .game-types { margin: 20px 0; }
        .tags { margin: 20px 0; }
