/*
Theme Name: VCD Cinema
Theme URI: https://vcd.com.tr
Author: VCD Cinema
Description: Türkiye'nin sinema topluluğu. Canlı tasarım, film eleştirisi ve topluluk tartışmaları.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: vcd-cinema
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

:root {
  --bg:       #0d0d14;
  --bg2:      #13131f;
  --bg3:      #1a1a2e;
  --card:     #16162b;
  --card2:    #1e1e35;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.15);

  /* CANLI RENKLER */
  --red:      #ff3b5c;
  --orange:   #ff7a3d;
  --yellow:   #ffd93d;
  --green:    #06d6a0;
  --cyan:     #00c4ff;
  --purple:   #a855f7;
  --pink:     #f472b6;

  --accent:   #ff3b5c;
  --accent2:  #ff7a3d;
  --gold:     #ffd93d;

  --text:     #f0eee8;
  --muted:    #8a8499;
  --muted2:   #4a4860;

  --serif:    'Playfair Display', Georgia, serif;
  --sans:     'Inter', system-ui, sans-serif;
  --display:  'Bebas Neue', sans-serif;

  --r:        10px;
  --r-sm:     6px;
  --r-lg:     16px;
  --shadow:   0 8px 40px rgba(0,0,0,0.6);
  --t:        0.2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--sans); }
ul { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* === LAYOUT === */
.vcd-container { max-width: 1320px; margin: 0 auto; padding: 0 28px; }
.vcd-wrap { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { line-height: 1.15; color: #fff; }
h1 { font-family: var(--display); font-size: clamp(36px,5vw,64px); letter-spacing: 1px; }
h2 { font-family: var(--display); font-size: clamp(26px,3vw,40px); letter-spacing: 0.5px; }
h3 { font-family: var(--serif); font-size: 20px; font-weight: 700; }

/* === BUTTONS === */
.vcd-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 26px; border-radius: 8px; font-size: 13px;
  font-weight: 600; letter-spacing: 0.5px; border: none;
  transition: all var(--t); white-space: nowrap; cursor: pointer;
}
.vcd-btn-red    { background: var(--red);    color: #fff; }
.vcd-btn-red:hover { background: #ff5070; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,59,92,0.4); }
.vcd-btn-orange { background: linear-gradient(135deg, var(--red), var(--orange)); color: #fff; }
.vcd-btn-orange:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,122,61,0.4); }
.vcd-btn-outline { background: transparent; color: var(--text); border: 1.5px solid var(--border2); }
.vcd-btn-outline:hover { border-color: var(--red); color: var(--red); }
.vcd-btn-ghost { background: rgba(255,255,255,0.07); color: var(--text); border: 1px solid var(--border); }
.vcd-btn-ghost:hover { background: rgba(255,255,255,0.12); }
.vcd-btn-sm { padding: 7px 16px; font-size: 12px; }
.vcd-btn-lg { padding: 14px 34px; font-size: 15px; }

/* === BADGES === */
.vcd-badge {
  display: inline-block; padding: 3px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.vcd-badge-red    { background: rgba(255,59,92,0.15);  color: var(--red);    border: 1px solid rgba(255,59,92,0.3);  }
.vcd-badge-orange { background: rgba(255,122,61,0.15); color: var(--orange); border: 1px solid rgba(255,122,61,0.3); }
.vcd-badge-yellow { background: rgba(255,217,61,0.15); color: var(--yellow); border: 1px solid rgba(255,217,61,0.3); }
.vcd-badge-green  { background: rgba(6,214,160,0.15);  color: var(--green);  border: 1px solid rgba(6,214,160,0.3);  }
.vcd-badge-cyan   { background: rgba(0,196,255,0.12);  color: var(--cyan);   border: 1px solid rgba(0,196,255,0.25); }
.vcd-badge-purple { background: rgba(168,85,247,0.15); color: var(--purple); border: 1px solid rgba(168,85,247,0.3); }

/* === SECTION HEADER === */
.vcd-section-head {
  display: flex; align-items: center; gap: 16px; margin-bottom: 30px;
}
.vcd-section-head h2 { font-size: 28px; white-space: nowrap; }
.vcd-section-head h2 span { color: var(--red); }
.vcd-line { flex: 1; height: 2px; background: linear-gradient(to right, rgba(255,59,92,0.4), transparent); }
.vcd-more { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--red); white-space: nowrap; font-weight: 600; }
.vcd-more:hover { color: var(--orange); }

/* ============================================
   HEADER
   ============================================ */
#site-header {
  position: sticky; top: 0; z-index: 900;
  background: rgba(13,13,20,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.vcd-header-inner {
  display: flex; align-items: center; gap: 20px; height: 64px;
}
.vcd-logo-link { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.vcd-logo-text {
  font-family: var(--display); font-size: 26px; letter-spacing: 3px;
}
.vcd-logo-text .r { color: var(--red); }
.vcd-logo-text .w { color: #fff; }

.vcd-main-nav { display: flex; align-items: center; gap: 2px; }
.vcd-main-nav a {
  font-size: 12px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); padding: 8px 14px; border-radius: 6px; transition: all var(--t);
}
.vcd-main-nav a:hover,
.vcd-main-nav .current-menu-item > a { color: #fff; background: rgba(255,59,92,0.12); }

.vcd-header-right { display: flex; align-items: center; gap: 10px; margin-left: auto; position: relative; }

.vcd-search-form {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1.5px solid var(--border);
  border-radius: 8px; padding: 0 14px; transition: border-color var(--t);
}
.vcd-search-form:focus-within { border-color: rgba(255,59,92,0.5); }
.vcd-search-form input {
  background: none; border: none; outline: none;
  color: var(--text); font-size: 13px; width: 180px; height: 38px;
  font-family: var(--sans);
}
.vcd-search-form input::placeholder { color: var(--muted2); }
.vcd-search-form button { background: none; border: none; color: var(--muted); font-size: 15px; transition: color var(--t); }
.vcd-search-form button:hover { color: var(--red); }

.vcd-hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.vcd-hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }
.vcd-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.vcd-hamburger.open span:nth-child(2) { opacity: 0; }
.vcd-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.vcd-mobile-nav {
  display: none; position: absolute; top: 64px; left: 0; right: 0;
  background: var(--bg2); border-bottom: 1px solid var(--border);
  padding: 20px 28px; flex-direction: column; gap: 4px;
}
.vcd-mobile-nav.open { display: flex; }
.vcd-mobile-nav a { font-size: 14px; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--border); }
.vcd-mobile-nav a:hover { color: var(--red); }

/* Live search dropdown */
#vcd-live-results {
  position: absolute; top: 54px; right: 0;
  width: 360px; background: var(--bg2);
  border: 1.5px solid var(--border2); border-radius: var(--r);
  z-index: 999; box-shadow: var(--shadow); overflow: hidden;
  display: none;
}
.vcd-live-item:hover { background: rgba(255,255,255,0.05) !important; }

/* ============================================
   HERO — Sinema afişi stili
   ============================================ */
.vcd-hero {
  position: relative; overflow: hidden;
  background: var(--bg);
  padding: 0;
  min-height: 580px;
  display: flex; align-items: center;
}
.vcd-hero-noise {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}
.vcd-hero-gradient {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 70% at -5% 50%, rgba(255,59,92,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 105% 50%, rgba(255,122,61,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, rgba(168,85,247,0.08) 0%, transparent 60%);
}
.vcd-hero-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}
.vcd-hero-lines::before {
  content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,59,92,0.3), transparent);
  transform: rotate(15deg) translateX(-50%);
}

.vcd-hero-inner {
  position: relative; z-index: 1; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 70px 0;
}

/* Sol içerik */
.vcd-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); background: rgba(255,59,92,0.1);
  border: 1px solid rgba(255,59,92,0.25); border-radius: 4px; padding: 6px 14px;
  margin-bottom: 22px;
}
.vcd-hero-label::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: blink 1.5s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.vcd-hero h1 {
  font-size: clamp(42px, 5.5vw, 76px); letter-spacing: 1px;
  line-height: 0.95; margin-bottom: 24px; color: #fff;
}
.vcd-hero h1 .line-colored {
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vcd-hero-desc { font-size: 16px; color: var(--muted); max-width: 440px; line-height: 1.8; margin-bottom: 36px; }
.vcd-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

.vcd-hero-stats { display: flex; gap: 0; }
.vcd-hero-stat {
  padding: 0 32px 0 0; margin-right: 32px;
  border-right: 1px solid var(--border);
}
.vcd-hero-stat:last-child { border-right: none; padding-right: 0; margin-right: 0; }
.vcd-stat-num {
  font-family: var(--display); font-size: 36px; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.vcd-stat-lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted2); margin-top: 2px; }

/* Sağ: VCD Disk */
.vcd-hero-disk-zone {
  display: flex; align-items: center; justify-content: center; position: relative;
}
.vcd-hero-disk-bg {
  position: absolute; width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,59,92,0.15) 0%, rgba(255,122,61,0.08) 40%, transparent 70%);
  animation: diskGlow 4s ease-in-out infinite;
}
@keyframes diskGlow { 0%,100%{transform:scale(1);opacity:0.7} 50%{transform:scale(1.08);opacity:1} }

/* ============================================
   VCD DISK COMPONENT
   ============================================ */
.vcd-disk {
  position: relative; border-radius: 50%;
  animation: spin 5s linear infinite;
  filter: drop-shadow(0 0 30px rgba(255,59,92,0.3));
}
.vcd-disk.paused { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }

.vcd-disk-surface {
  width: 100%; height: 100%; border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #1a0a14 0deg, #2d1022 30deg,
    #3d1530 55deg, #ff3b5c 60deg,
    #ff7a3d 63deg, #ffd93d 66deg,
    #ff3b5c 70deg, #2d1022 90deg,
    #1a0a14 130deg, #0d1a2d 160deg,
    #1a2d3d 185deg, #00c4ff 190deg,
    #1a2d3d 195deg, #0d1a2d 230deg,
    #1a0a14 270deg, #2d1022 310deg,
    #a855f7 315deg, #2d1022 320deg,
    #1a0a14 360deg
  );
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 0 60px rgba(255,59,92,0.2),
    inset 0 0 40px rgba(0,0,0,0.4);
}
.vcd-disk-rainbow {
  position: absolute; inset: 8px; border-radius: 50%;
  background: conic-gradient(
    from 20deg,
    transparent 0deg, rgba(255,255,255,0.04) 30deg,
    rgba(255,255,255,0.18) 50deg, rgba(0,196,255,0.12) 70deg,
    rgba(168,85,247,0.1) 100deg, transparent 140deg,
    rgba(255,59,92,0.08) 200deg, rgba(255,255,255,0.12) 240deg,
    transparent 300deg
  );
}
.vcd-disk-ring1 { position: absolute; inset: 16px; border-radius: 50%; border: 1.5px solid rgba(255,59,92,0.3); pointer-events: none; }
.vcd-disk-ring2 { position: absolute; inset: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.08); pointer-events: none; }
.vcd-disk-ring3 { position: absolute; inset: 72px; border-radius: 50%; border: 1px solid rgba(0,196,255,0.15); pointer-events: none; }

.vcd-disk-label {
  position: absolute; inset: 80px; border-radius: 50%;
  background: radial-gradient(circle, #100820 0%, #0d0d14 100%);
  border: 1px solid rgba(255,59,92,0.2);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 12px; z-index: 2;
}
.vcd-disk-label-brand {
  font-family: var(--display); font-size: 9px; letter-spacing: 3px;
  color: var(--red); text-transform: uppercase;
}
.vcd-disk-label-film {
  font-family: var(--serif); font-size: 9px; font-weight: 700;
  color: rgba(255,255,255,0.8); margin-top: 4px; line-height: 1.3;
  max-width: 80px; text-align: center;
}
.vcd-disk-hole {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg); border: 2px solid rgba(255,59,92,0.5); z-index: 3;
}

/* ============================================
   CATEGORY FILTER BAR
   ============================================ */
.vcd-filter-bar {
  background: var(--bg2); border-bottom: 1px solid var(--border);
  position: sticky; top: 64px; z-index: 80;
}
.vcd-filter-inner { display: flex; gap: 6px; padding: 12px 0; overflow-x: auto; }
.vcd-filter-inner::-webkit-scrollbar { height: 0; }
.vcd-filter-btn {
  white-space: nowrap; padding: 8px 20px; border-radius: 6px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.5px;
  background: transparent; color: var(--muted); border: 1.5px solid var(--border);
  transition: all var(--t);
}
.vcd-filter-btn:hover { color: var(--text); border-color: var(--border2); background: rgba(255,255,255,0.05); }
.vcd-filter-btn.active { background: var(--red); color: #fff; border-color: var(--red); }

/* ============================================
   FILM GRID & CARDS
   ============================================ */
.vcd-films-section { padding: 56px 0; }
.vcd-film-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(188px, 1fr));
  gap: 20px;
}
.vcd-film-grid.list-view { grid-template-columns: 1fr; }

.vcd-film-card { position: relative; }
.vcd-film-card-inner {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); overflow: hidden; cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.vcd-film-card-inner:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(255,59,92,0.2);
  border-color: rgba(255,59,92,0.3);
}

.vcd-film-poster {
  position: relative; aspect-ratio: 2/3; overflow: hidden; background: var(--bg3);
}
.vcd-film-poster img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease, filter 0.3s;
}
.vcd-film-card-inner:hover .vcd-film-poster img {
  transform: scale(1.08); filter: brightness(0.5);
}

.vcd-film-poster-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,20,0.98) 0%, rgba(13,13,20,0.3) 50%, transparent 100%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 16px;
}
.vcd-film-card-inner:hover .vcd-film-poster-overlay { opacity: 1; }

.vcd-overlay-score {
  font-family: var(--display); font-size: 34px; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.vcd-overlay-votes { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.vcd-overlay-play {
  width: 44px; height: 44px; border-radius: 50%; margin-top: 12px;
  background: linear-gradient(135deg, var(--red), var(--orange));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,59,92,0.5);
  transition: transform 0.2s;
}
.vcd-overlay-play:hover { transform: scale(1.1); }
.vcd-overlay-play svg { fill: #fff; width: 14px; height: 14px; margin-left: 2px; }

.vcd-poster-top {
  position: absolute; top: 10px; left: 10px; right: 10px;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.vcd-score-pill {
  background: rgba(13,13,20,0.85); backdrop-filter: blur(4px);
  border: 1px solid rgba(255,217,61,0.3); border-radius: 5px;
  padding: 4px 8px; font-family: var(--display); font-size: 14px;
  letter-spacing: 0.5px; color: var(--yellow);
}
.vcd-new-pill {
  background: var(--red); border-radius: 4px;
  padding: 3px 8px; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; color: #fff; text-transform: uppercase;
}

.vcd-film-info { padding: 14px; }
.vcd-film-title {
  font-family: var(--serif); font-size: 14px; font-weight: 700;
  color: var(--text); line-height: 1.35; margin-bottom: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.vcd-film-meta { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.vcd-film-year { font-size: 11px; color: var(--muted2); }
.vcd-film-genre {
  font-size: 10px; font-weight: 600; letter-spacing: 0.8px; text-transform: uppercase;
  color: var(--red); background: rgba(255,59,92,0.1);
  border: 1px solid rgba(255,59,92,0.2); border-radius: 3px; padding: 2px 7px;
}

/* List view */
.vcd-film-grid.list-view .vcd-film-card-inner { display: flex; }
.vcd-film-grid.list-view .vcd-film-poster { width: 88px; flex-shrink: 0; aspect-ratio: unset; }
.vcd-film-grid.list-view .vcd-film-info { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 16px 20px; }
.vcd-film-grid.list-view .vcd-film-title { font-size: 16px; -webkit-line-clamp: 1; }

/* ============================================
   FEATURED SECTION
   ============================================ */
.vcd-featured {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 56px 0;
}
.vcd-featured-grid { display: grid; grid-template-columns: 1.7fr 1fr; gap: 24px; }
.vcd-featured-main {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: 440px; display: flex; align-items: flex-end; cursor: pointer;
  transition: transform var(--t);
}
.vcd-featured-main:hover { transform: scale(1.01); }
.vcd-featured-main img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vcd-featured-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,20,0.97) 0%, rgba(13,13,20,0.2) 55%, transparent 100%);
}
.vcd-featured-main-content { position: relative; z-index: 1; padding: 28px; }
.vcd-featured-main-title { font-family: var(--display); font-size: 30px; letter-spacing: 0.5px; color: #fff; margin: 8px 0; }
.vcd-featured-main-score {
  font-family: var(--display); font-size: 24px; letter-spacing: 1px;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.vcd-featured-main-desc { font-size: 14px; color: rgba(240,238,232,0.6); line-height: 1.7; max-width: 480px; margin-top: 8px; }

.vcd-featured-list { display: flex; flex-direction: column; gap: 14px; }
.vcd-featured-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 14px; cursor: pointer;
  transition: all var(--t);
}
.vcd-featured-item:hover {
  border-color: rgba(255,59,92,0.3);
  background: var(--card2); transform: translateX(4px);
  box-shadow: 0 4px 20px rgba(255,59,92,0.1);
}
.vcd-featured-item-thumb { width: 60px; flex-shrink: 0; aspect-ratio: 2/3; border-radius: var(--r-sm); overflow: hidden; background: var(--bg3); }
.vcd-featured-item-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vcd-featured-item-title { font-family: var(--serif); font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.vcd-featured-item-score { font-family: var(--display); font-size: 15px; color: var(--yellow); }
.vcd-featured-item-meta { font-size: 11px; color: var(--muted2); margin-top: 3px; }

/* ============================================
   SINGLE FILM PAGE
   ============================================ */
.vcd-film-detail { padding: 48px 0 80px; }

.vcd-film-hero {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  margin-bottom: 44px; min-height: 400px; display: flex; align-items: flex-end;
}
.vcd-film-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(13,13,20,0.97) 35%, rgba(13,13,20,0.5) 100%);
  z-index: 1;
}
.vcd-film-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.35; }
.vcd-film-hero-content { position: relative; z-index: 2; display: flex; gap: 32px; align-items: flex-end; padding: 40px; }
.vcd-film-hero-poster { width: 160px; flex-shrink: 0; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); border: 2px solid var(--border2); }
.vcd-film-hero-poster img { width: 100%; }
.vcd-film-hero-title { font-family: var(--display); font-size: clamp(28px,4vw,48px); letter-spacing: 0.5px; color: #fff; margin-bottom: 12px; }
.vcd-film-hero-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.vcd-film-hero-desc { font-size: 15px; color: rgba(240,238,232,0.65); max-width: 560px; line-height: 1.8; }
.vcd-film-hero-actions { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }

/* Score Box */
.vcd-score-box {
  display: flex; align-items: center; gap: 24px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 22px 28px; margin-bottom: 32px;
}
.vcd-score-big {
  font-family: var(--display); font-size: 58px; letter-spacing: 1px; line-height: 1;
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.vcd-score-label { font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted2); }
.vcd-score-votes { font-size: 13px; color: var(--muted); margin-top: 4px; }
.vcd-stars { display: flex; gap: 4px; margin: 8px 0; }
.vcd-star { font-size: 20px; color: var(--muted2); cursor: pointer; transition: color var(--t), transform 0.15s; }
.vcd-star.filled,
.vcd-star:hover { color: var(--yellow); transform: scale(1.15); }

/* Tabs */
.vcd-film-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.vcd-film-tab {
  padding: 12px 22px; font-size: 13px; font-weight: 500;
  color: var(--muted); border-bottom: 2px solid transparent; background: none;
  border-top: none; border-left: none; border-right: none;
  transition: all var(--t); margin-bottom: -2px; letter-spacing: 0.3px;
}
.vcd-film-tab.active { color: var(--red); border-bottom-color: var(--red); }
.vcd-film-tab:hover { color: var(--text); }
.vcd-film-tab-content { display: none; }
.vcd-film-tab-content.active { display: block; }

.vcd-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 24px; }
.vcd-info-item { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-sm); padding: 14px 18px; }
.vcd-info-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted2); margin-bottom: 4px; }
.vcd-info-value { font-size: 14px; color: var(--text); font-weight: 500; }

/* ============================================
   REVIEWS
   ============================================ */
.vcd-reviews-section { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.vcd-reviews-title { font-family: var(--display); font-size: 22px; letter-spacing: 0.5px; color: #fff; margin-bottom: 18px; }
.vcd-review {
  display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--border);
}
.vcd-review:last-child { border-bottom: none; }
.vcd-review-avatar {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255,59,92,0.2), rgba(255,122,61,0.2));
  border: 1.5px solid rgba(255,59,92,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px; color: var(--red);
}
.vcd-review-name { font-size: 13px; font-weight: 600; color: var(--text); }
.vcd-review-date { font-size: 11px; color: var(--muted2); margin-left: 8px; }
.vcd-review-stars { display: flex; gap: 2px; margin: 4px 0; }
.vcd-review-star { font-size: 13px; color: var(--muted2); }
.vcd-review-star.on { color: var(--yellow); }
.vcd-review-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 6px; }
.vcd-review-actions { margin-top: 8px; }
.vcd-review-like {
  background: none; border: none; font-size: 12px; color: var(--muted2);
  display: flex; align-items: center; gap: 5px; padding: 0; transition: color var(--t);
}
.vcd-review-like:hover { color: var(--red); }

/* Comment Form */
.vcd-comment-form {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 24px; margin-top: 24px;
}
.vcd-comment-form h4 { font-family: var(--display); font-size: 20px; letter-spacing: 0.5px; color: #fff; margin-bottom: 18px; }
.vcd-rating-input { display: flex; gap: 6px; margin-bottom: 16px; }
.vcd-rating-star { font-size: 26px; color: var(--muted2); cursor: pointer; transition: color var(--t), transform 0.15s; }
.vcd-rating-star:hover, .vcd-rating-star.on { color: var(--yellow); transform: scale(1.2); }
.vcd-form-field { margin-bottom: 14px; }
.vcd-form-field label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--muted2); margin-bottom: 6px; }
.vcd-form-field input,
.vcd-form-field textarea,
.vcd-form-field select {
  width: 100%; background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 10px 14px; color: var(--text); font-size: 14px;
  outline: none; transition: border-color var(--t); font-family: var(--sans); resize: vertical;
}
.vcd-form-field input:focus,
.vcd-form-field textarea:focus { border-color: rgba(255,59,92,0.5); background: rgba(255,59,92,0.04); }
.vcd-form-field input::placeholder,
.vcd-form-field textarea::placeholder { color: var(--muted2); }
.vcd-form-field textarea { min-height: 100px; }

/* ============================================
   SIDEBAR
   ============================================ */
.vcd-row { display: flex; gap: 32px; }
.vcd-col-main { flex: 1; min-width: 0; }
.vcd-col-side { width: 300px; flex-shrink: 0; }
.vcd-sidebar { display: flex; flex-direction: column; gap: 24px; }
.vcd-widget { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.vcd-widget-title {
  font-family: var(--display); font-size: 16px; letter-spacing: 1px;
  color: #fff; padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to right, rgba(255,59,92,0.06), transparent);
}
.vcd-widget-body { padding: 14px 18px; }
.vcd-top-film {
  display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border);
  align-items: center; cursor: pointer; transition: background var(--t);
}
.vcd-top-film:last-child { border-bottom: none; padding-bottom: 0; }
.vcd-top-film:hover { padding-left: 4px; }
.vcd-top-film-rank { font-family: var(--display); font-size: 20px; color: var(--muted2); min-width: 28px; }
.vcd-top-film-rank.top3 { color: var(--red); }
.vcd-top-film-thumb { width: 44px; height: 66px; border-radius: 4px; flex-shrink: 0; object-fit: cover; background: var(--bg3); }
.vcd-top-film-info { flex: 1; min-width: 0; }
.vcd-top-film-title { font-size: 13px; font-weight: 500; color: var(--text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vcd-top-film-score { font-size: 12px; color: var(--yellow); margin-top: 2px; }
.vcd-top-film-genre { font-size: 11px; color: var(--muted2); }
.vcd-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.vcd-tag {
  padding: 5px 12px; border-radius: 5px; font-size: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border); color: var(--muted);
  transition: all var(--t);
}
.vcd-tag:hover { background: rgba(255,59,92,0.1); border-color: rgba(255,59,92,0.3); color: var(--red); }

/* ============================================
   ARCHIVE PAGE
   ============================================ */
.vcd-archive { padding: 48px 0 80px; }
.vcd-archive-controls {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border);
}
.vcd-archive-count { font-size: 14px; color: var(--muted); flex: 1; }
.vcd-archive-count span { color: #fff; font-weight: 600; }
.vcd-sort-select {
  background: var(--card); border: 1.5px solid var(--border); border-radius: var(--r-sm);
  padding: 8px 30px 8px 14px; color: var(--text); font-size: 13px; outline: none;
  cursor: pointer; appearance: none; font-family: var(--sans);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a8499' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
  transition: border-color var(--t);
}
.vcd-sort-select:focus { border-color: rgba(255,59,92,0.5); }
.vcd-view-toggle { display: flex; gap: 4px; }
.vcd-view-btn {
  background: var(--card); border: 1.5px solid var(--border); color: var(--muted);
  width: 36px; height: 36px; border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  transition: all var(--t);
}
.vcd-view-btn.active { background: rgba(255,59,92,0.12); border-color: rgba(255,59,92,0.4); color: var(--red); }

/* ============================================
   PAGINATION
   ============================================ */
.vcd-pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 48px 0 0; }
.vcd-page-btn {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--card); border: 1.5px solid var(--border); color: var(--muted);
  font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all var(--t);
}
.vcd-page-btn:hover { border-color: rgba(255,59,92,0.4); color: var(--red); }
.vcd-page-btn.active { background: var(--red); border-color: var(--red); color: #fff; font-weight: 600; }
.vcd-page-dots { color: var(--muted2); padding: 0 4px; }

/* ============================================
   NOTICES / ALERTS
   ============================================ */
.vcd-notice {
  padding: 12px 16px; border-radius: var(--r-sm); font-size: 13px;
  margin-bottom: 14px; display: flex; align-items: center; gap: 8px;
}
.vcd-notice-success { background: rgba(6,214,160,0.1); border: 1px solid rgba(6,214,160,0.3); color: var(--green); }
.vcd-notice-error   { background: rgba(255,59,92,0.1);  border: 1px solid rgba(255,59,92,0.3);  color: var(--red); }

/* ============================================
   SCORE BARS
   ============================================ */
.vcd-score-bar { margin-bottom: 8px; }
.vcd-score-bar-label { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 4px; }
.vcd-score-bar-track { height: 5px; background: rgba(255,255,255,0.07); border-radius: 3px; overflow: hidden; }
.vcd-score-bar-fill { height: 100%; background: linear-gradient(to right, var(--red), var(--orange)); border-radius: 3px; transition: width 0.7s ease; }

/* ============================================
   SPINNER
   ============================================ */
.vcd-spinner {
  width: 34px; height: 34px; border-radius: 50%;
  border: 3px solid rgba(255,59,92,0.15); border-top-color: var(--red);
  animation: spin 0.7s linear infinite; margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.vcd-footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 60px 0 0; }
.vcd-footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border);
}
.vcd-footer-brand .vcd-logo-text { font-size: 24px; display: block; margin-bottom: 14px; }
.vcd-footer-desc { font-size: 13px; color: var(--muted); line-height: 1.8; max-width: 280px; }
.vcd-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.vcd-social-link {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--muted); transition: all var(--t);
}
.vcd-social-link:hover { background: rgba(255,59,92,0.15); border-color: rgba(255,59,92,0.3); color: var(--red); }
.vcd-footer-col h4 { font-family: var(--display); font-size: 14px; letter-spacing: 1.5px; color: #fff; margin-bottom: 18px; }
.vcd-footer-links { display: flex; flex-direction: column; gap: 10px; }
.vcd-footer-links a { font-size: 13px; color: var(--muted); transition: color var(--t); }
.vcd-footer-links a:hover { color: var(--red); }
.vcd-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-size: 12px; color: var(--muted2); gap: 16px; flex-wrap: wrap;
}
.vcd-footer-bottom a { color: var(--muted); }
.vcd-footer-bottom a:hover { color: var(--red); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .vcd-hero-inner { grid-template-columns: 1fr; }
  .vcd-hero-disk-zone { display: none; }
  .vcd-footer-grid { grid-template-columns: 1fr 1fr; }
  .vcd-featured-grid { grid-template-columns: 1fr; }
  .vcd-featured-list { display: grid; grid-template-columns: repeat(3,1fr); }
  .vcd-row { flex-direction: column; }
  .vcd-col-side { width: 100%; }
}
@media (max-width: 768px) {
  .vcd-main-nav { display: none; }
  .vcd-hamburger { display: flex; }
  .vcd-search-form { display: none; }
  .vcd-film-grid { grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 14px; }
  .vcd-hero { min-height: auto; padding: 0; }
  .vcd-hero-inner { padding: 48px 0 40px; }
  .vcd-info-grid { grid-template-columns: 1fr; }
  .vcd-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .vcd-featured-list { grid-template-columns: 1fr; }
  .vcd-film-hero-content { flex-direction: column; }
}
@media (max-width: 480px) {
  .vcd-container { padding: 0 16px; }
  .vcd-film-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }
}
