/* =============================================
   MasterShot👑 – Neon/Cyberpunk stílus
   ============================================= */

/* ---- CSS változók ---- */
:root {
  --neon-cyan:    #00f5ff;
  --neon-pink:    #ff00e5;
  --neon-yellow:  #ffe600;
  --neon-green:   #00ff88;
  --bg-dark:      #0a0a0f;
  --bg-card:      #0f0f1a;
  --bg-card2:     #13132a;
  --border:       rgba(0,245,255,.15);
  --border-hover: rgba(0,245,255,.5);
  --text:         #e0e0f0;
  --text-muted:   #7070a0;
  --font-display: 'Orbitron', sans-serif;
  --font-body:    'Rajdhani', sans-serif;
  --glow-cyan:    0 0 8px #00f5ff, 0 0 20px rgba(0,245,255,.4);
  --glow-pink:    0 0 8px #ff00e5, 0 0 20px rgba(255,0,229,.4);
  --transition:   .25s ease;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--neon-cyan); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ---- Háttér animált részecskék ---- */
.bg-particles {
  position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: var(--neon-cyan);
  opacity: 0;
  animation: particleFloat linear infinite;
}
.particle:nth-child(1)  { left:10%; animation-duration:12s; animation-delay:0s;   width:3px;height:3px; background:var(--neon-pink); }
.particle:nth-child(2)  { left:25%; animation-duration:18s; animation-delay:3s; }
.particle:nth-child(3)  { left:40%; animation-duration:14s; animation-delay:6s;   background:var(--neon-yellow); }
.particle:nth-child(4)  { left:55%; animation-duration:20s; animation-delay:1s;   width:3px;height:3px; }
.particle:nth-child(5)  { left:70%; animation-duration:16s; animation-delay:4s;   background:var(--neon-green); }
.particle:nth-child(6)  { left:80%; animation-duration:11s; animation-delay:7s;   background:var(--neon-pink); width:3px;height:3px; }
.particle:nth-child(7)  { left:90%; animation-duration:15s; animation-delay:2s; }
.particle:nth-child(8)  { left:5%;  animation-duration:19s; animation-delay:9s;   background:var(--neon-yellow); }

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity:0; }
  10%  { opacity:.8; }
  90%  { opacity:.4; }
  100% { transform: translateY(-10vh) scale(1); opacity:0; }
}

/* ---- Neon szín segédosztályok ---- */
.neon-cyan   { color: var(--neon-cyan); }
.neon-pink   { color: var(--neon-pink); }
.neon-yellow { color: var(--neon-yellow); }
.neon-accent { color: var(--neon-cyan); }

.neon-glow {
  color: #fff;
  text-shadow: 0 0 10px var(--neon-cyan), 0 0 30px rgba(0,245,255,.5), 0 0 60px rgba(0,245,255,.2);
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10,10,15,.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  display: flex; align-items: center; gap: .5rem;
  text-decoration: none;
}
.logo-icon { font-size: 1.4rem; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 900; letter-spacing: .1em;
  color: #fff;
}
.logo-text .neon-accent {
  text-shadow: var(--glow-cyan);
}

.nav-menu {
  list-style: none; display: flex; gap: .25rem;
}
.nav-link {
  display: flex; align-items: center; gap: .4rem;
  padding: .45rem .9rem;
  border-radius: 6px;
  font-size: .95rem; font-weight: 600; letter-spacing: .05em;
  color: var(--text-muted);
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.nav-link:hover, .nav-link.active {
  color: var(--neon-cyan);
  background: rgba(0,245,255,.08);
  text-decoration: none;
}
.nav-link.active { border-bottom: 2px solid var(--neon-cyan); }
.nav-yt { color: #ff4444; }
.nav-yt:hover { color: #ff6666; background: rgba(255,50,50,.1); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--neon-cyan);
  transition: transform var(--transition), opacity var(--transition);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .65rem 1.4rem;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: .8rem; font-weight: 700; letter-spacing: .1em;
  cursor: pointer; border: none;
  transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; }

.btn-primary {
  background: var(--neon-cyan);
  color: #000;
  box-shadow: var(--glow-cyan);
}
.btn-primary:hover {
  background: #fff;
  box-shadow: 0 0 20px #fff, 0 0 40px var(--neon-cyan);
  color: #000;
}

.btn-secondary {
  background: transparent;
  color: var(--neon-pink);
  border: 1px solid var(--neon-pink);
  box-shadow: 0 0 6px rgba(255,0,229,.3);
}
.btn-secondary:hover {
  background: rgba(255,0,229,.12);
  box-shadow: var(--glow-pink);
  color: var(--neon-pink);
}

.btn-outline {
  background: transparent;
  color: var(--neon-cyan);
  border: 1px solid var(--border-hover);
}
.btn-outline:hover {
  background: rgba(0,245,255,.08);
  border-color: var(--neon-cyan);
  box-shadow: var(--glow-cyan);
  color: var(--neon-cyan);
}
.btn-yt {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 0 8px rgba(255,0,0,.5);
  font-size: .75rem;
}
.btn-yt:hover {
  background: #cc0000;
  box-shadow: 0 0 16px rgba(255,0,0,.8);
  color: #fff;
}

/* =============================================
   HERO SZEKCIÓ
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  filter: blur(16px) brightness(.25) saturate(1.5);
  transform: scale(1.08);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,245,255,.07) 0%, rgba(255,0,229,.05) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 1280px; margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .3rem .8rem;
  border: 1px solid var(--neon-pink);
  border-radius: 20px;
  font-family: var(--font-display);
  font-size: .65rem; font-weight: 700; letter-spacing: .15em;
  color: var(--neon-pink);
  box-shadow: 0 0 10px rgba(255,0,229,.3);
  margin-bottom: 1rem;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--neon-pink);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,0,229,.7); }
  50%      { box-shadow: 0 0 0 8px rgba(255,0,229,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 1rem;
}
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: .4rem; margin-bottom: 1rem;
  font-size: .9rem; color: var(--text-muted);
}
.meta-item { display: flex; align-items: center; gap: .3rem; }
.meta-separator { color: var(--border-hover); }
.hero-description {
  color: var(--text-muted); font-size: .95rem;
  margin-bottom: 1.75rem; line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-error { grid-column: 1 / -1; text-align: center; }
.error-msg {
  color: #ff8888; background: rgba(255,50,50,.1);
  border: 1px solid rgba(255,50,50,.3);
  padding: 1rem 1.5rem; border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* ---- Hero player ---- */
.hero-player { position: relative; }
.player-wrapper { position: relative; }
.player-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0,245,255,.15), 0 0 60px rgba(0,0,0,.8);
  aspect-ratio: 16/9;
  background: #000;
  cursor: pointer;
}
.player-frame:hover .card-overlay { opacity: 1; }
.player-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
}
.player-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.3);
  border: none; cursor: pointer;
  transition: background var(--transition);
}
.play-overlay:hover { background: rgba(0,0,0,.1); }
.play-btn-inner {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(0,245,255,.9);
  display: flex; align-items: center; justify-content: center;
  color: #000;
  box-shadow: var(--glow-cyan), 0 0 40px rgba(0,245,255,.4);
  transition: transform var(--transition), box-shadow var(--transition);
}
.play-overlay:hover .play-btn-inner {
  transform: scale(1.1);
  box-shadow: 0 0 20px var(--neon-cyan), 0 0 60px rgba(0,245,255,.6);
}
.video-duration {
  position: absolute; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.85);
  color: #fff; font-size: .75rem; font-weight: 700;
  padding: .2rem .45rem; border-radius: 4px;
  font-family: var(--font-display);
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 1.5rem;
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 1rem;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center;
  gap: .2rem; padding: .5rem 1.5rem;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 1.8rem; font-weight: 900; line-height: 1;
}
.neon-cyan.stat-value  { text-shadow: var(--glow-cyan); }
.neon-pink.stat-value  { text-shadow: var(--glow-pink); }
.neon-yellow.stat-value { text-shadow: 0 0 8px #ffe600, 0 0 20px rgba(255,230,0,.4); }
.stat-label {
  font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-muted);
}
.stat-divider {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--border-hover), transparent);
}

/* =============================================
   SECTION KÖZÖS
   ============================================= */
.featured-section, .videos-section {
  position: relative; z-index: 1;
  padding: 4rem 0;
}
.section-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
}
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 900; letter-spacing: .1em;
  color: #fff;
  text-shadow: var(--glow-cyan);
}
.title-line {
  flex: 1; max-width: 120px; height: 1px;
  background: linear-gradient(to right, transparent, var(--neon-cyan));
}
.title-line:last-child {
  background: linear-gradient(to left, transparent, var(--neon-cyan));
}
.section-footer { text-align: center; margin-top: 2.5rem; }

/* =============================================
   VIDEÓ KÁRTYÁK
   ============================================= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.video-grid--large {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

/* Nagy kártya: kép + info egymás mellett 480px felett */
@media (min-width: 480px) {
  .video-card--large {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .video-card--large .card-thumb {
    aspect-ratio: 16/9;
    height: 100%;
  }
  .video-card--large .card-info {
    padding: 1.1rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .video-card--large .card-title { font-size: .9rem; }
}

.video-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.video-card:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0,245,255,.15), 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(-4px);
}

.card-thumb-link { display: block; }
.card-thumb {
  position: relative; aspect-ratio: 16/9; overflow: hidden;
  background: #000;
}
.card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.video-card:hover .card-thumb img { transform: scale(1.05); }

.card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.video-card:hover .card-overlay { opacity: 1; }
.card-play {
  font-size: 2rem; color: var(--neon-cyan);
  filter: drop-shadow(0 0 8px var(--neon-cyan));
}
.card-duration {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0,0,0,.85);
  color: #fff; font-size: .7rem; font-weight: 700;
  padding: .15rem .4rem; border-radius: 3px;
  font-family: var(--font-display);
}

.card-info { padding: 1rem; }
.card-title {
  font-family: var(--font-display);
  font-size: .85rem; font-weight: 700; line-height: 1.4;
  margin-bottom: .5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-title a { color: #fff; }
.card-title a:hover { color: var(--neon-cyan); text-decoration: none; }
.card-desc {
  font-size: .82rem; color: var(--text-muted);
  margin-bottom: .75rem; line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-meta {
  display: flex; flex-wrap: wrap; gap: .5rem;
  font-size: .78rem; color: var(--text-muted);
}
.card-meta--row { }
.meta-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  padding: .2rem .55rem; border-radius: 20px;
  font-size: .75rem;
}

/* =============================================
   VIDEÓK OLDAL FEJLÉC
   ============================================= */
.page-hero {
  padding: 120px 1.5rem 3rem;
  text-align: center;
  background: linear-gradient(to bottom, rgba(0,245,255,.04) 0%, transparent 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner { max-width: 800px; margin: 0 auto; }
.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; margin-bottom: .75rem;
}
.page-subtitle {
  color: var(--text-muted); font-size: 1.1rem; letter-spacing: .05em;
}

/* =============================================
   LAPOZÓ
   ============================================= */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 1rem; margin-top: 3rem;
}
.pagination-btn { min-width: 140px; justify-content: center; }
.pagination-btn--disabled {
  opacity: .3; cursor: not-allowed; pointer-events: none;
}

/* =============================================
   ÜRES ÁLLAPOT
   ============================================= */
.empty-state {
  text-align: center; padding: 4rem 2rem;
}
.empty-icon { font-size: 4rem; margin-bottom: 1rem; }
.empty-title {
  font-family: var(--font-display);
  font-size: 1.5rem; color: var(--neon-cyan);
  margin-bottom: .75rem;
}
.empty-text {
  color: var(--text-muted); max-width: 500px;
  margin: 0 auto 1.5rem;
}
.empty-text code {
  background: rgba(255,255,255,.06);
  padding: .1rem .35rem; border-radius: 4px;
  color: var(--neon-yellow); font-size: .9em;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  position: relative; z-index: 1;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
  text-align: center;
}
.footer-inner { max-width: 800px; margin: 0 auto; }
.footer-logo {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-bottom: .75rem;
}
.footer-logo .logo-text { font-size: 1.2rem; }
.footer-tagline {
  color: var(--text-muted); font-size: .9rem;
  margin-bottom: 1.25rem;
}
.footer-links {
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: .5rem 1.5rem;
  margin-bottom: 1.25rem;
}
.footer-links a { color: var(--text-muted); font-size: .9rem; }
.footer-links a:hover { color: var(--neon-cyan); }
.footer-social { margin-bottom: 1.5rem; }
.social-btn {
  display: inline-flex; align-items: center; gap: .5rem;
}
.footer-copy {
  color: var(--text-muted); font-size: .8rem; line-height: 1.8;
}

/* =============================================
   RESZPONZÍV – Mobil
   ============================================= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }
  .hero-player { order: -1; }
  .hero-content { text-align: center; }
  .hero-badge, .hero-meta { justify-content: center; }
  .hero-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,15,.97);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: .25rem;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-link { font-size: .9rem; padding: .65rem 1rem; }

  .stats-inner { flex-direction: column; }
  .stat-divider { width: 80%; height: 1px; }

  .video-grid, .video-grid--large {
    grid-template-columns: 1fr;
  }

  .section-title { font-size: 1.1rem; }
  .title-line { max-width: 60px; }
}

/* =============================================
   GÖRGETŐS belépő animáció (progressive)
   ============================================= */
@media (prefers-reduced-motion: no-preference) {
  .video-card {
    animation: fadeUp .5s ease both;
  }
  .video-card:nth-child(2)  { animation-delay: .05s; }
  .video-card:nth-child(3)  { animation-delay: .1s; }
  .video-card:nth-child(4)  { animation-delay: .15s; }
  .video-card:nth-child(5)  { animation-delay: .2s; }
  .video-card:nth-child(6)  { animation-delay: .25s; }
  .video-card:nth-child(7)  { animation-delay: .3s; }
  .video-card:nth-child(8)  { animation-delay: .35s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* =============================================
   FÓKUSZ megjelenítés (akadálymentesség)
   ============================================= */
:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================
   SKIP LINK (akadálymentesség)
   ============================================= */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--neon-cyan); color: #000;
  padding: .5rem 1rem; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: .9rem;
  transition: top var(--transition);
  z-index: 9999;
}
.skip-link:focus { top: 0; text-decoration: none; }

/* =============================================
   NEON SCANNER LINE – hero player dísz
   ============================================= */
.player-frame::after {
  content: '';
  position: absolute; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  animation: scanLine 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes scanLine {
  0%   { top: 0%;  opacity: 0; }
  5%   { opacity: .7; }
  95%  { opacity: .4; }
  100% { top: 100%; opacity: 0; }
}

/* =============================================
   NEON GRID HÁTTÉR – featured section mögé
   ============================================= */
.featured-section {
  background:
    linear-gradient(rgba(0,245,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,245,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* =============================================
   YOUTUBE-STÍLUSÚ VIDEÓKÁRTYÁK (yt-card)
   ============================================= */

.yt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem 1.5rem;
}

/* Kártya wrapper */
.yt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  transition: transform .25s ease;
}
.yt-card:hover { transform: translateY(-3px); }

/* ---- Thumbnail ---- */
.yt-card__thumb-link { display: block; }
.yt-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}
.yt-card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}
.yt-card:hover .yt-card__thumb img {
  transform: scale(1.04);
  filter: brightness(.85);
}

/* Hover overlay */
.yt-card__hover-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.yt-card:hover .yt-card__hover-overlay { opacity: 1; }
.yt-card__play-ring {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0, 245, 255, .85);
  display: flex; align-items: center; justify-content: center;
  color: #000;
  box-shadow: 0 0 24px rgba(0,245,255,.8), 0 0 50px rgba(0,245,255,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.yt-card:hover .yt-card__play-ring {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(0,245,255,1), 0 0 70px rgba(0,245,255,.5);
}

/* Időtartam badge */
.yt-card__duration {
  position: absolute; bottom: 6px; right: 8px;
  background: rgba(0,0,0,.85);
  color: #fff;
  font-family: var(--font-display);
  font-size: .72rem; font-weight: 700;
  padding: .18rem .45rem;
  border-radius: 4px;
  letter-spacing: .03em;
}

/* Neon sarok díszek */
.yt-card__corner {
  position: absolute;
  width: 12px; height: 12px;
  opacity: 0;
  transition: opacity .25s ease;
}
.yt-card:hover .yt-card__corner { opacity: 1; }

.yt-card__corner--tl { top: 0; left: 0;   border-top: 2px solid var(--neon-cyan); border-left: 2px solid var(--neon-cyan); }
.yt-card__corner--tr { top: 0; right: 0;  border-top: 2px solid var(--neon-pink); border-right: 2px solid var(--neon-pink); }
.yt-card__corner--bl { bottom: 0; left: 0;  border-bottom: 2px solid var(--neon-pink); border-left: 2px solid var(--neon-pink); }
.yt-card__corner--br { bottom: 0; right: 0; border-bottom: 2px solid var(--neon-cyan); border-right: 2px solid var(--neon-cyan); }

/* ---- Info sor (avatar + szöveg + menü) ---- */
.yt-card__info {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: .65rem;
  padding: .75rem .25rem .25rem;
  align-items: flex-start;
}

/* Avatar */
.yt-card__avatar-link { display: block; flex-shrink: 0; }
.yt-card__avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.yt-card:hover .yt-card__avatar {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 8px rgba(0,245,255,.5);
}

/* Szöveg blokk */
.yt-card__text { min-width: 0; }

.yt-card__title {
  font-family: var(--font-body);
  font-size: .92rem; font-weight: 700;
  line-height: 1.35;
  margin-bottom: .3rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.yt-card__title a { color: #e8e8f0; text-decoration: none; }
.yt-card__title a:hover { color: var(--neon-cyan); }

.yt-card__meta { display: flex; flex-direction: column; gap: .15rem; }
.yt-card__channel {
  font-size: .8rem; color: var(--text-muted);
  text-decoration: none; font-weight: 600;
}
.yt-card__channel:hover { color: var(--neon-cyan); }
.yt-card__stats {
  display: flex; align-items: center; gap: .3rem;
  font-size: .78rem; color: var(--text-muted);
}
.yt-card__dot { color: var(--text-muted); }

/* Három pont gomb */
.yt-card__menu-btn {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); padding: .25rem;
  border-radius: 50%; opacity: 0;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
  margin-top: .1rem;
}
.yt-card:hover .yt-card__menu-btn { opacity: 1; }
.yt-card__menu-btn:hover {
  background: rgba(255,255,255,.1);
  color: var(--neon-cyan);
}

/* Neon glow border a kártya körül (hover) */
.yt-card__glow {
  position: absolute; inset: 0;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
  box-shadow: inset 0 0 0 1px var(--neon-cyan);
}
.yt-card:hover .yt-card__glow { opacity: .35; }

/* ---- Reszponzív ---- */
@media (max-width: 640px) {
  .yt-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 641px) and (max-width: 900px) {
  .yt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =============================================
   VIDEÓ KÉRÉSEK OLDAL
   ============================================= */

/* ---- Fejléc ---- */
.page-hero--requests {
    background:
        linear-gradient(to bottom, rgba(255,0,229,.04) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255,0,229,.15);
}
.req-hero-icon {
    font-size: 3rem; margin-bottom: .5rem;
    filter: drop-shadow(0 0 12px rgba(255,0,229,.6));
}

/* Statisztika pill-ek */
.req-stats-row {
    display: flex; flex-wrap: wrap;
    justify-content: center; gap: .6rem;
    margin-top: 1.25rem;
}
.req-stat-pill {
    display: inline-flex; align-items: center; gap: .4rem;
    padding: .35rem .9rem; border-radius: 20px;
    font-size: .82rem; font-weight: 600;
    border: 1px solid currentColor;
}
.req-stat-pill .rsp-num { font-family: var(--font-display); font-size: .95rem; font-weight: 900; }
.req-stat-pill--cyan   { color: var(--neon-cyan);   background: rgba(0,245,255,.06); }
.req-stat-pill--pink   { color: var(--neon-pink);   background: rgba(255,0,229,.06); }
.req-stat-pill--green  { color: var(--neon-green);  background: rgba(0,255,136,.06); }
.req-stat-pill--yellow { color: var(--neon-yellow); background: rgba(255,230,0,.06); }

/* ---- Layout (sidebar + main) ---- */
.req-layout { position: relative; z-index: 1; padding: 2.5rem 0 4rem; }
.req-layout-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2rem;
    align-items: start;
}

/* ---- Form kártya ---- */
.req-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,0,229,.2);
    border-radius: 16px;
    overflow: hidden;
    position: sticky; top: 90px;
    box-shadow: 0 0 30px rgba(255,0,229,.06);
}
.req-form-card__header {
    display: flex; align-items: center; gap: .6rem;
    padding: 1.1rem 1.4rem;
    background: rgba(255,0,229,.06);
    border-bottom: 1px solid rgba(255,0,229,.15);
}
.req-form-card__icon { font-size: 1.3rem; }
.req-form-card__title {
    font-family: var(--font-display);
    font-size: .9rem; font-weight: 700;
    letter-spacing: .08em; color: var(--neon-pink);
    text-shadow: 0 0 8px rgba(255,0,229,.4);
}

/* Form mezők */
.req-form { padding: 1.3rem 1.4rem 0; display: flex; flex-direction: column; gap: 1rem; }
.req-field { display: flex; flex-direction: column; gap: .35rem; }
.req-label {
    font-size: .8rem; font-weight: 700;
    letter-spacing: .06em; color: var(--text-muted);
    text-transform: uppercase;
}
.req-required { color: var(--neon-pink); margin-left: .1rem; }
.req-optional  { color: var(--text-muted); font-weight: 400; text-transform: none; font-size: .75rem; }

.req-input {
    background: rgba(255,255,255,.04);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: .95rem;
    padding: .65rem .9rem;
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
    resize: none;
}
.req-input::placeholder { color: var(--text-muted); opacity: .7; }
.req-input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px rgba(255,0,229,.15);
}
.req-input.req-input--error {
    border-color: #ff4444;
    box-shadow: 0 0 0 3px rgba(255,68,68,.15);
}
.req-textarea { min-height: 90px; }

.req-hint {
    font-size: .72rem; color: var(--text-muted);
    display: flex; justify-content: space-between;
}
.req-charlimit { justify-content: flex-end; }

.req-submit-btn {
    width: 100%; justify-content: center;
    background: var(--neon-pink);
    box-shadow: 0 0 12px rgba(255,0,229,.4);
    color: #fff; font-size: .8rem;
    margin-top: .25rem;
}
.req-submit-btn:hover {
    background: #ff33f0;
    box-shadow: 0 0 24px rgba(255,0,229,.7);
    color: #fff;
}
.req-submit-btn:disabled {
    opacity: .5; cursor: not-allowed;
    box-shadow: none;
}

.req-form-msg {
    font-size: .85rem; padding: .6rem .9rem;
    border-radius: 8px; display: none;
    margin-top: .25rem;
}
.req-form-msg.success {
    display: block;
    background: rgba(0,255,136,.1);
    border: 1px solid rgba(0,255,136,.3);
    color: var(--neon-green);
}
.req-form-msg.error {
    display: block;
    background: rgba(255,68,68,.1);
    border: 1px solid rgba(255,68,68,.3);
    color: #ff8888;
}

.req-form-rules {
    padding: 1rem 1.4rem 1.3rem;
    display: flex; flex-direction: column; gap: .35rem;
    font-size: .78rem; color: var(--text-muted);
    border-top: 1px solid var(--border);
    margin-top: 1rem;
}
.req-form-rules strong { color: var(--neon-cyan); }

/* ---- Lista fejléc + rendezés ---- */
.req-list-header {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .75rem;
    margin-bottom: 1.25rem;
}
.req-list-title {
    display: flex; align-items: center; gap: .6rem;
    font-family: var(--font-display);
    font-size: 1rem; font-weight: 700;
    letter-spacing: .06em; color: #fff;
}
.req-count-badge {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(0,245,255,.12);
    border: 1px solid rgba(0,245,255,.3);
    color: var(--neon-cyan);
    font-size: .7rem; font-weight: 700;
    padding: .1rem .5rem; border-radius: 20px;
    font-family: var(--font-display);
}
.req-sort-btns { display: flex; gap: .4rem; }
.req-sort-btn {
    padding: .35rem .85rem; border-radius: 20px;
    font-size: .78rem; font-weight: 600;
    border: 1px solid var(--border);
    color: var(--text-muted);
    transition: all var(--transition);
    text-decoration: none;
}
.req-sort-btn:hover { border-color: var(--neon-cyan); color: var(--neon-cyan); text-decoration: none; }
.req-sort-btn--active {
    background: rgba(0,245,255,.1);
    border-color: var(--neon-cyan);
    color: var(--neon-cyan);
}

/* ---- Kérés kártyák ---- */
.req-list { display: flex; flex-direction: column; gap: .85rem; }

.req-card {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
    animation: fadeUp .4s ease both;
}
.req-card:hover {
    border-color: rgba(0,245,255,.4);
    box-shadow: 0 0 20px rgba(0,245,255,.08), 0 4px 24px rgba(0,0,0,.4);
    transform: translateY(-2px);
}
.req-card--voted {
    border-color: rgba(0,245,255,.3);
    background: rgba(0,245,255,.03);
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}
.req-card--new-anim { animation: slideInTop .4s ease both; }
@keyframes slideInTop {
    from { opacity: 0; transform: translateY(-20px) scale(.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Szavazó oszlop */
.req-card__vote {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: .3rem;
    padding: 1rem .5rem;
    background: rgba(255,255,255,.02);
    border-right: 1px solid var(--border);
}
.req-vote-btn {
    background: none; border: none; cursor: pointer;
    color: var(--text-muted);
    width: 36px; height: 36px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}
.req-vote-btn:hover:not(:disabled) {
    background: rgba(0,245,255,.12);
    color: var(--neon-cyan);
    transform: translateY(-2px);
}
.req-vote-btn--active, .req-vote-btn--active:hover {
    color: var(--neon-cyan);
    background: rgba(0,245,255,.15);
    filter: drop-shadow(0 0 6px rgba(0,245,255,.6));
}
.req-vote-btn:disabled { opacity: .3; cursor: default; }
.req-vote-count {
    font-family: var(--font-display);
    font-size: .85rem; font-weight: 900;
    color: var(--text-muted);
    transition: color var(--transition);
    line-height: 1;
}
.req-card--voted .req-vote-count { color: var(--neon-cyan); }

/* Tartalom */
.req-card__body { padding: 1rem 1.1rem; min-width: 0; }
.req-card__top {
    display: flex; align-items: flex-start;
    justify-content: space-between; gap: .75rem;
    margin-bottom: .5rem;
    flex-wrap: wrap;
}
.req-card__title {
    font-family: var(--font-body);
    font-size: .97rem; font-weight: 700;
    color: #e8e8f0; line-height: 1.3; flex: 1;
}
.req-card__badges { display: flex; flex-wrap: wrap; gap: .35rem; flex-shrink: 0; }

/* Státusz badge-ek */
.req-badge {
    display: inline-flex; align-items: center; gap: .25rem;
    padding: .18rem .55rem; border-radius: 20px;
    font-size: .7rem; font-weight: 700;
    border: 1px solid currentColor;
    white-space: nowrap;
}
.badge--open     { color: var(--neon-cyan);   background: rgba(0,245,255,.08); }
.badge--planned  { color: var(--neon-yellow); background: rgba(255,230,0,.08); }
.badge--done     { color: var(--neon-green);  background: rgba(0,255,136,.08); }
.badge--rejected { color: #ff6666;            background: rgba(255,50,50,.08); }
.req-badge--new  { color: var(--neon-pink);   background: rgba(255,0,229,.08); border-color: var(--neon-pink); }

.req-card__desc {
    font-size: .83rem; color: var(--text-muted);
    line-height: 1.55; margin-bottom: .65rem;
}
.req-card__footer {
    display: flex; align-items: center; justify-content: space-between;
    gap: .5rem; flex-wrap: wrap;
    padding-top: .6rem;
    border-top: 1px solid var(--border);
    font-size: .75rem; color: var(--text-muted);
}
.req-card__author {
    display: flex; align-items: center; gap: .4rem;
    font-weight: 600;
}
.req-avatar {
    width: 22px; height: 22px; border-radius: 50%;
    background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
    display: flex; align-items: center; justify-content: center;
    font-size: .65rem; font-weight: 900; color: #000;
    flex-shrink: 0;
}
.req-card__time { font-size: .72rem; }

/* Hover neon glow */
.req-card__glow {
    position: absolute; inset: 0; pointer-events: none;
    border-radius: 14px;
    opacity: 0;
    transition: opacity .3s;
    box-shadow: inset 0 0 0 1px var(--neon-cyan);
}
.req-card:hover .req-card__glow { opacity: .2; }

/* Üres állapot */
.req-empty {
    text-align: center; padding: 3rem 2rem;
    background: var(--bg-card);
    border: 1px dashed var(--border);
    border-radius: 14px;
}
.req-empty__icon { font-size: 2.5rem; margin-bottom: .75rem; opacity: .5; }
.req-empty__text { color: var(--text-muted); font-size: .95rem; }

/* ---- Reszponzív ---- */
@media (max-width: 860px) {
    .req-layout-inner {
        grid-template-columns: 1fr;
    }
    .req-form-card { position: static; }
}
@media (max-width: 480px) {
    .req-card__top { flex-direction: column; }
    .req-sort-btns { width: 100%; }
    .req-sort-btn  { flex: 1; text-align: center; }
}
