/* VOIDFLIX 2025 — assets/css/style.css (Parça 1) */
:root {
  --vf-bg: #0b0e1a;
  --vf-card: #12152a;
  --vf-text: #e6e6f0;
  --vf-muted: #9aa0b4;
  --vf-accent: #8a5cff;   /* neon mor */
  --vf-accent-2: #00d1ff; /* neon camgöbeği */
}

body.voidflix {
  background: var(--vf-bg);
  color: var(--vf-text);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
}

/* Genel yerleşim */
.vf-header, .vf-footer, .vf-main { padding: 24px; }
.vf-main { padding-top: 8px; }

/* Üst bar */
.vf-topbar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.vf-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--vf-accent);
  letter-spacing: 0.5px;
}
.vf-logo .vf-year { color: #fff; margin-left: 6px; font-weight: 700; }

/* Arama */
.vf-search { display: flex; gap: 8px; margin-left: auto; }
.vf-search input {
  background: #0d1125;
  border: 1px solid #1f2646;
  color: #cfd7ff;
  padding: 8px 12px;
  border-radius: 6px;
  min-width: 240px;
  outline: none;
}
.vf-search input::placeholder { color: #8e95b8; }
.vf-search button {
  background: var(--vf-accent);
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* MENÜ — neon etkili */
.vf-nav .vf-menu {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.vf-nav .vf-menu li {
  background: #171a36;
  border-radius: 10px;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  border: 1px solid #1f2646;
}

.vf-nav .vf-menu a {
  display: block;
  padding: 10px 16px;
  font-weight: 700;
  color: #e6e6f0;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.2px;
}

.vf-nav .vf-menu a:hover {
  background: var(--vf-accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(138, 92, 255, 0.65);
}

.vf-nav .vf-menu .current-menu-item a,
.vf-nav .vf-menu .current_page_item a {
  background: var(--vf-accent-2);
  color: #0b0e1a;
  box-shadow: 0 0 14px rgba(0, 209, 255, 0.6);
}

/* Mobil menü uyumu */
@media (max-width: 600px) {
  .vf-nav .vf-menu { flex-direction: column; gap: 8px; }
  .vf-search { width: 100%; margin-left: 0; }
  .vf-search input { flex: 1; min-width: 0; width: 100%; }
}

/* Sidebar ile iki kolon yerleşim */
.vf-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
}
@media (max-width: 1100px) { .vf-layout { grid-template-columns: 1fr; } }

/* Grid — kompakt posterler */
.vf-grid-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1400px) { .vf-grid-inner { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1100px) { .vf-grid-inner { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .vf-grid-inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .vf-grid-inner { grid-template-columns: 1fr; } }

/* Kartlar */
.vf-card {
  background: var(--vf-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.3);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.vf-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.vf-card-link { text-decoration: none; color: #fff; display: block; }
.vf-card-poster {
  position: relative;
  aspect-ratio: 2 / 3;
  background: #0e132b;
}
.vf-card-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.vf-card-year {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0,0,0,.6);
  padding: 3px 7px;
  border-radius: 6px;
  font-size: 11px;
}
.vf-card-title {
  font-size: 14px;
  padding: 10px;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* VOIDFLIX 2025 — assets/css/style.css (Parça 2) */

/* Hero */
.vf-hero {
  background: var(--vf-card);
  padding: 18px;
  border-radius: 14px;
  margin-bottom: 18px;
}
.vf-hero-inner { display: flex; gap: 18px; align-items: flex-end; flex-wrap: wrap; }
.vf-hero-poster {
  width: 180px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
}
.vf-hero-meta { flex: 1; }
.vf-hero-title { font-size: 24px; margin: 0 0 6px; }
.vf-hero-year { color: var(--vf-accent-2); margin-left: 8px; }
.vf-meta-list {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  color: var(--vf-muted);
  flex-wrap: wrap;
}

/* Buton */
.vf-btn {
  display: inline-block;
  background: var(--vf-accent);
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.vf-btn:hover {
  box-shadow: 0 0 12px rgba(138, 92, 255, 0.6);
  transform: translateY(-1px);
}

/* İçerik */
.vf-details { padding: 12px 0; }
.vf-synopsis { background: var(--vf-card); padding: 12px; border-radius: 10px; }

/* Sidebar */
.vf-sidebar {
  background: #111427;
  border: 1px solid #1f2646;
  border-radius: 12px;
  padding: 16px;
  position: sticky;
  top: 24px;
  height: fit-content;
}
.vf-widget + .vf-widget { margin-top: 16px; }
.vf-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: #cbd1ea;
  margin: 0 0 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid #1f2646;
}

/* Kategori listesi */
.vf-cat-list,
.vf-widget .cat-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vf-cat-list li,
.vf-widget .cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  background: #0d1125;
  border: 1px solid #1a2040;
  color: #cfd7ff;
}

.vf-cat-list li + li,
.vf-widget .cat-item + .cat-item {
  margin-top: 8px;
}

.vf-cat-list a,
.vf-widget .cat-item a {
  color: #e6e6f0;
  text-decoration: none;
  flex: 1;
}

.vf-cat-list a:hover,
.vf-widget .cat-item a:hover {
  color: var(--vf-accent-2);
}

.vf-cat-list .count,
.vf-widget .cat-item .count {
  color: #8e95b8;
  background: #0b1028;
  border: 1px solid #1a2040;
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 12px;
}

/* Footer + sayfalama */
.vf-footer {
  padding: 24px;
  color: #8e95b8;
  text-align: center;
  border-top: 1px solid #1f2646;
}

.vf-empty {
  color: #8e95b8;
}

.vf-pagination {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.vf-pagination a,
.vf-pagination span {
  background: #171a36;
  color: #cbd1ea;
  padding: 6px 10px;
  border-radius: 6px;
  text-decoration: none;
}

.vf-pagination .current {
  background: var(--vf-accent);
  color: #fff;
}
 
 /* Trailer responsive embed */
.vf-trailer { margin: 12px 0; }
.vf-trailer-inner {
  position: relative;
  width: 100%;
  /* 16:9 ratio box */
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #0e132b;
  border: 1px solid #1a2040;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);
}
.vf-trailer-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vf-hero-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start; /* ✅ afiş yukarı hizalanır */
  flex-wrap: wrap;
}

/* Oyuncu kartları optimize */
.vf-actors .vf-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.vf-actors .vf-card:hover {
  transform: translateY(-6px);
}
.vf-actors .vf-card-poster img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: 6px;
}
.vf-actors .vf-card-title {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: #fff;
}
.vf-actors .vf-grid-inner {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
}

.vf-meta-box {
  margin-top: 20px;
  padding: 10px;
  border-top: 1px solid #333;
  font-size: 14px;
  color: #ccc;
}

.vf-meta-box strong {
  color: #fff;
  margin-right: 8px;
}

.vf-meta-link {
  display: inline-block;
  margin-right: 6px;
  padding: 4px 8px;
  background: #222;
  border-radius: 4px;
  color: #eee;
  text-decoration: none;
  transition: background 0.3s;
}

.vf-meta-link:hover {
  background: #444;
  color: #fff;
}