/* ============================================================
   RESPAWNERZ — Global Stylesheet
   Dark / Neon Cyberpunk Editorial
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800;900&family=Barlow:wght@400;500;600&family=Share+Tech+Mono&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */

:root {
  --bg-primary: #080c10;
  --bg-secondary: #0d1117;
  --bg-card: #111820;
  --bg-card-hover: #161f2a;
  --border: #1e2d3d;
  --border-bright: #2a3f54;

  --neon-cyan: #00f5d4;
  --neon-green: #39ff14;
  --neon-magenta: #ff2d78;
  --neon-yellow: #f9c846;

  --accent: var(--neon-cyan);
  --accent-glow: rgba(0, 245, 212, 0.15);
  --accent-glow-strong: rgba(0, 245, 212, 0.35);

  --text-primary: #e8edf2;
  --text-secondary: #7a8fa3;
  --text-muted: #4a5c6a;
  --text-accent: var(--neon-cyan);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;

  --radius: 4px;
  --radius-lg: 8px;
  --transition: 0.2s ease;
  --transition-slow: 0.4s ease;

  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-neon: 0 0 20px var(--accent-glow-strong);
  --shadow-neon-sm: 0 0 8px var(--accent-glow);
}

/* ============================================================
   RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0, 245, 212, 0.012) 2px,
      rgba(0, 245, 212, 0.012) 4px
    );
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.mono {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--shadow-neon-sm);
}

.section-title {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.section-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: color var(--transition);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius);
}

.section-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 12, 16, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 32px;
}

.site-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  flex-shrink: 0;
  transition: color var(--transition);
}

.site-logo span {
  color: var(--accent);
  text-shadow: var(--shadow-neon-sm);
}

.site-logo:hover {
  color: var(--accent);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
  background: var(--accent-glow);
}

.header-search {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 12px;
  gap: 8px;
  transition: border-color var(--transition);
}

.header-search:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon-sm);
}

.header-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  width: 140px;
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.search-icon {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
}

/* ============================================================
   TICKER STRIP
   ============================================================ */

.ticker-bar {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  overflow: hidden;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
}

.ticker-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--bg-primary);
  background: var(--accent);
  padding: 3px 12px;
  text-transform: uppercase;
  flex-shrink: 0;
  margin-right: 16px;
}

.ticker-track {
  overflow: hidden;
  flex: 1;
}

.ticker-content {
  display: flex;
  gap: 48px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

.ticker-content:hover {
  animation-play-state: paused;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.ticker-item a:hover {
  color: var(--accent);
}

.ticker-sep {
  color: var(--text-muted);
  margin: 0 8px;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  padding: 48px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* Featured Post - Large */
.post-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: block;
  transition: border-color var(--transition-slow);
}

.post-hero:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.post-hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.75);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.post-hero:hover .post-hero-image {
  filter: brightness(0.65);
  transform: scale(1.02);
}

.post-hero-body {
  padding: 24px;
  position: relative;
}

.post-hero-body::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.post-hero .post-category {
  margin-bottom: 12px;
}

.post-hero h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 12px;
  line-height: 1.1;
}

.post-hero h2 a:hover {
  color: var(--accent);
}

.post-hero .post-excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hero Sidebar Stack */
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ============================================================
   POST CARDS
   ============================================================ */

.post-category {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  background: var(--accent-glow);
  color: var(--accent);
  border: 1px solid rgba(0, 245, 212, 0.25);
}

.post-category.cat-reviews   { --accent: var(--neon-yellow); --accent-glow: rgba(249, 200, 70, 0.12); border-color: rgba(249, 200, 70, 0.25); }
.post-category.cat-guides    { --accent: var(--neon-green);  --accent-glow: rgba(57, 255, 20, 0.12);  border-color: rgba(57, 255, 20, 0.25); }
.post-category.cat-trailers  { --accent: var(--neon-cyan);   }
.post-category.cat-esports   { --accent: var(--neon-magenta); --accent-glow: rgba(255, 45, 120, 0.12); border-color: rgba(255, 45, 120, 0.25); }

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Compact Card (sidebar / list) */
.post-card-compact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.post-card-compact:hover {
  border-color: var(--border-bright);
  background: var(--bg-card-hover);
}

.post-card-compact .thumb {
  width: 80px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.post-card-compact .post-category {
  margin-bottom: 6px;
}

.post-card-compact h4 {
  font-size: 0.85rem;
  line-height: 1.2;
  margin-bottom: 6px;
}

.post-card-compact h4 a:hover {
  color: var(--accent);
}

/* Grid Card */
.post-card-grid {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}

.post-card-grid:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-neon);
}

.post-card-grid .thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  filter: brightness(0.85);
  transition: filter var(--transition-slow);
}

.post-card-grid:hover .thumb {
  filter: brightness(1);
}

.post-card-grid .card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-grid .post-category {
  margin-bottom: 10px;
}

.post-card-grid h3 {
  font-size: 1rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.post-card-grid h3 a:hover {
  color: var(--accent);
}

.post-card-grid .post-excerpt {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-grid .post-meta {
  margin-top: auto;
}

/* Horizontal Card */
.post-card-horizontal {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.post-card-horizontal:hover {
  border-color: var(--border-bright);
}

.post-card-horizontal .thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 120px;
}

.post-card-horizontal .card-body {
  padding: 20px;
}

.post-card-horizontal h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.post-card-horizontal h3 a:hover {
  color: var(--accent);
}

/* ============================================================
   NEWS GRID SECTION
   ============================================================ */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ============================================================
   LATEST NEWS — 2 COL WITH SIDEBAR
   ============================================================ */

.latest-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.latest-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.latest-list .post-card-horizontal + .post-card-horizontal {
  margin-top: 12px;
}

/* ============================================================
   SIDEBAR WIDGETS
   ============================================================ */

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.widget-header {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-secondary);
  position: relative;
}

.widget-header::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  box-shadow: var(--shadow-neon-sm);
}

.widget-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.widget-body {
  padding: 16px 18px;
}

/* Trending widget */
.trending-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.trending-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.trending-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--border-bright);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
  text-align: right;
  transition: color var(--transition);
}

.trending-item:hover .trending-num {
  color: var(--accent);
}

.trending-text {
  flex: 1;
}

.trending-text h5 {
  font-size: 0.82rem;
  line-height: 1.2;
  margin-bottom: 4px;
}

.trending-text h5 a:hover {
  color: var(--accent);
}

/* Tags widget */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all var(--transition);
}

.tag:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ============================================================
   TRAILERS SECTION
   ============================================================ */

.trailers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.trailer-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--transition-slow);
}

.trailer-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}

.trailer-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  filter: brightness(0.6);
  transition: filter var(--transition-slow);
}

.trailer-card:hover .trailer-thumb {
  filter: brightness(0.45);
}

.trailer-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.play-btn {
  align-self: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 245, 212, 0.15);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  transition: all var(--transition);
  margin: auto;
  box-shadow: 0 0 20px rgba(0, 245, 212, 0.3);
}

.trailer-card:hover .play-btn {
  background: rgba(0, 245, 212, 0.25);
  transform: scale(1.1);
}

.trailer-info {
  background: linear-gradient(to top, rgba(8, 12, 16, 0.95), transparent);
  margin: -16px;
  margin-top: auto;
  padding: 24px 16px 16px;
}

.trailer-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: #fff;
}

/* ============================================================
   PAGINATION
   ============================================================ */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.page-btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  background: var(--bg-card);
  transition: all var(--transition);
  cursor: pointer;
}

.page-btn:hover,
.page-btn.active {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-top {
  padding: 48px 0 32px;
  display: grid;
  grid-template-columns: 280px 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .site-logo {
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 8px;
}

.social-link {
  width: 32px;
  height: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.social-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-glow);
}

/* ============================================================
   SINGLE POST PAGE
   ============================================================ */

.post-header-section {
  padding: 48px 0 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.post-header-inner {
  max-width: 820px;
}

.post-header-inner .post-category {
  margin-bottom: 16px;
}

.post-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.05;
}

.post-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.post-featured-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  display: block;
  margin-top: 32px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding-top: 40px;
}

.post-content {
  max-width: 700px;
}

.post-content h2,
.post-content h3,
.post-content h4 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.post-content p {
  margin-bottom: 1.2rem;
  color: var(--text-secondary);
}

.post-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(0, 245, 212, 0.3);
}

.post-content a:hover {
  text-decoration-color: var(--accent);
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.post-content blockquote p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 0;
}

.post-content ul,
.post-content ol {
  padding-left: 1.4rem;
  margin-bottom: 1.2rem;
}

.post-content li {
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

/* ============================================================
   CATEGORY / ARCHIVE PAGE
   ============================================================ */

.archive-header {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  position: relative;
}

.archive-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--accent);
  box-shadow: var(--shadow-neon-sm);
}

.archive-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.archive-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.archive-count {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.05em;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-accent { color: var(--accent); }
.text-muted  { color: var(--text-muted); }
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* ============================================================
   SCROLLBAR
   ============================================================ */

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border-bright); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-sidebar { flex-direction: row; overflow-x: auto; }
  .post-card-compact { min-width: 260px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .post-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg-secondary); border-bottom: 1px solid var(--border); padding: 12px; z-index: 99; }
  .header-search { display: none; }
  .mobile-menu-btn { display: flex; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .trailers-grid { grid-template-columns: 1fr; }
  .latest-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .post-card-horizontal { grid-template-columns: 120px 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .post-card-horizontal { grid-template-columns: 1fr; }
  .post-card-horizontal .thumb { height: 160px; }
}
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 24px 0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ============================================================
   VIDEO EMBED (YouTube responsive wrapper)
   ============================================================ */
 
.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin: 24px 0;
}
 
.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
 
/* ============================================================
   TRAILERS PAGE
   ============================================================ */
 
.trailers-page-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  padding-bottom: 80px;
}
 
.trailer-entry {
  display: flex;
  flex-direction: column;
}
 
.trailer-entry .video-embed {
  margin: 0 0 16px 0;
  border-color: var(--border);
  transition: border-color var(--transition-slow);
}
 
.trailer-entry:hover .video-embed {
  border-color: var(--accent);
  box-shadow: var(--shadow-neon);
}
 
.trailer-entry-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
 
.trailer-entry-info .post-category {
  align-self: flex-start;
}
 
.trailer-entry-info h3 {
  font-size: 1rem;
  line-height: 1.2;
}
 
.trailer-entry-info h3 a:hover {
  color: var(--accent);
}
 
.trailer-entry-info p {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
 
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .news-grid { grid-template-columns: 1fr; }
  .post-card-horizontal { grid-template-columns: 1fr; }
  .post-card-horizontal .thumb { height: 160px; }
}
 
@media (max-width: 768px) {
  .trailers-page-grid { grid-template-columns: 1fr; gap: 32px; }
}
 
