/* ─── Auth Popup ───────────────────────────────────────── */
.auth-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5, 5, 5, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.auth-popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.auth-popup-panel {
  position: relative;
  width: min(460px, 100%);
  background: linear-gradient(145deg, rgba(16, 10, 12, 0.98), rgba(10, 10, 10, 0.98));
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 12px;
  padding: 32px 28px 28px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(200, 16, 46, 0.08);
  animation: popupSlideUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
  transform-origin: bottom center;
}

@keyframes popupSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.auth-popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: rgba(245, 240, 238, 0.4);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.auth-popup-close:hover {
  background: rgba(200, 16, 46, 0.15);
  color: #ff6b6b;
}

.auth-popup-icon {
  margin: 0 auto 12px;
  width: 54px;
  height: 54px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 16, 46, 0.2);
}

.auth-popup-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2rem, 5vw, 2.6rem);
  margin: 0 0 8px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: #f5f0ee;
}

.auth-popup-title .text-red {
  color: #C8102E;
}

.auth-popup-desc {
  color: rgba(245, 240, 238, 0.55);
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
  margin: 0 0 16px;
}

.auth-popup-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  text-align: left;
}

.auth-popup-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 238, 0.75);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.auth-popup-features li:hover {
  border-color: rgba(200, 16, 46, 0.15);
  background: rgba(200, 16, 46, 0.03);
}

.auth-popup-features li svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.auth-popup-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.auth-popup-footer {
  margin: 12px 0 0;
  padding: 0;
}

/* ─── Age Gate ─────────────────────────────────────────── */
.global-age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: radial-gradient(ellipse at center, #1a0508 0%, #0a0a0a 100%);
  color: #f5f0ee;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  text-align: center;
  animation: ageFadeIn 0.8s ease-out;
}

.global-age-gate.hidden {
  display: none;
}

.global-age-inner {
  width: min(520px, 100%);
}

.global-age-icon {
  margin: 0 auto 28px;
  animation: iconPulse 3s ease-in-out infinite;
}

.global-age-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin: 0 0 16px;
  background: linear-gradient(135deg, #f5f0ee 0%, #C8102E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.global-age-desc {
  color: rgba(245, 240, 238, 0.55);
  line-height: 1.7;
  font-weight: 300;
  font-size: 0.95rem;
}

.global-age-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.age-btn-yes,
.age-btn-no {
  border: none;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.age-btn-yes {
  background: linear-gradient(135deg, #C8102E 0%, #a00d25 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.3);
}

.age-btn-yes:hover {
  box-shadow: 0 6px 30px rgba(200, 16, 46, 0.5);
  transform: translateY(-2px);
}

.age-btn-no {
  background: transparent;
  color: rgba(245, 240, 238, 0.5);
  border: 1px solid rgba(245, 240, 238, 0.15);
  text-decoration: none;
  padding: 14px 32px;
}

.age-btn-no:hover {
  color: rgba(245, 240, 238, 0.8);
  border-color: rgba(245, 240, 238, 0.3);
}

/* ─── Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
  position: absolute;
  top: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 50% at 50% 40%, rgba(200, 16, 46, 0.35) 0%, transparent 70%),
    linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, rgba(10, 10, 10, 0.6) 40%, rgba(10, 10, 10, 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 6rem;
}

/* ─── Hero Badge ───────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.12);
  border: 1px solid rgba(200, 16, 46, 0.35);
  color: #ff6b6b;
  padding: 8px 16px;
  border-radius: 2px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #C8102E;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* ─── Hero Title ───────────────────────────────────────── */
.hero-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(4.5rem, 12vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
  color: var(--white);
  margin: 20px 0 0;
}

.hero-title .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 240, 238, 0.2);
}

.hero-title .accent {
  color: var(--red-vivid, #C8102E);
  -webkit-text-stroke: 0;
  text-shadow: 0 0 40px rgba(200, 16, 46, 0.3);
}

/* ─── Hero CTA ─────────────────────────────────────────── */
.hero-cta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 36px;
}

.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 238, 0.6);
  line-height: 1.7;
  max-width: 44ch;
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ─── Buttons ──────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #C8102E 0%, #a00d25 100%);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 16, 46, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 13px 24px;
  border: 1px solid rgba(245, 240, 238, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 3px;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: #C8102E;
  color: #ff6b6b;
  box-shadow: 0 4px 20px rgba(200, 16, 46, 0.15);
}

/* ─── Stats Bar ────────────────────────────────────────── */
.stats-bar {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(245, 240, 238, 0.08);
  margin-top: 60px;
  padding-top: 0;
}

/* ─── Live Feature ─────────────────────────────────────── */
.live-feature {
  width: min(1400px, calc(100% - 80px));
  margin: 92px auto 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 42px;
  align-items: center;
}

.live-feature-media {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 6px;
  background: #111;
}

.live-feature-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(12%) contrast(1.04);
}

.live-feature-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.28) 58%, rgba(10, 10, 10, 0.08) 100%),
    radial-gradient(ellipse 70% 50% at 30% 80%, rgba(200, 16, 46, 0.28), transparent 68%);
}

.live-feature-caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(10, 10, 10, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 10px 13px;
  border-radius: 4px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 238, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff3d3d;
  box-shadow: 0 0 18px rgba(255, 61, 61, 0.85);
}

.live-feature-copy {
  margin: 22px 0 0;
  color: rgba(245, 240, 238, 0.64);
  line-height: 1.75;
  font-weight: 300;
  max-width: 54ch;
}

.live-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  background: rgba(245, 240, 238, 0.08);
  border: 1px solid rgba(245, 240, 238, 0.08);
}

.live-feature-grid div {
  background: rgba(10, 10, 10, 0.72);
  padding: 18px 14px;
}

.live-feature-grid strong {
  display: block;
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--white);
}

.live-feature-grid span {
  display: block;
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(245, 240, 238, 0.42);
}

.live-feature-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.live-feature-rules span {
  border: 1px solid rgba(255, 107, 0, 0.24);
  background: rgba(255, 107, 0, 0.08);
  color: rgba(245, 240, 238, 0.62);
  border-radius: 4px;
  padding: 8px 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-item {
  padding: 24px 0 24px 32px;
  border-right: 1px solid rgba(245, 240, 238, 0.06);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-number {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 238, 0.35);
  margin-top: 4px;
}

/* ─── Ticker ───────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  background: linear-gradient(135deg, #1a0508 0%, #0a0a0a 100%);
  border-top: 1px solid rgba(200, 16, 46, 0.15);
  border-bottom: 1px solid rgba(200, 16, 46, 0.15);
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  gap: 0;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  font-family: 'Bebas Neue', cursive;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: rgba(245, 240, 238, 0.5);
}

.ticker-sep {
  color: rgba(200, 16, 46, 0.4);
  font-size: 0.7rem;
}

/* ─── Main ─────────────────────────────────────────────── */
main {
  padding: 80px 40px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── Section Header ───────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 64px;
}

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 240, 238, 0.4);
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--white);
}

.text-red {
  color: #C8102E;
}

/* ─── Red Accent Line ──────────────────────────────────── */
.red-accent-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: #C8102E;
  border-radius: 1px;
  margin-right: 12px;
  vertical-align: middle;
}

/* ─── Filter Tabs ──────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}

.filter-tab:hover {
  border-color: rgba(200, 16, 46, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.filter-tab.active {
  background: rgba(200, 16, 46, 0.15);
  border-color: rgba(200, 16, 46, 0.5);
  color: #ff6b6b;
}

/* ─── Project Label ────────────────────────────────────── */
.project-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.project-label-accent {
  width: 3px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 1px;
}

.project-label-text {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.project-label-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(245, 240, 238, 0.3);
  background: rgba(255, 255, 255, 0.03);
  padding: 3px 8px;
  border-radius: 2px;
}

.project-label-line {
  flex: 1;
  min-width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(200, 16, 46, 0.3), transparent);
}

.project-label-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(245, 240, 238, 0.35);
  font-weight: 300;
}

/* ─── Video Grid ───────────────────────────────────────── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* ─── Video Card ───────────────────────────────────────── */
.video-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 4px;
}

.video-card:hover {
  border-color: rgba(200, 16, 46, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(200, 16, 46, 0.12);
}

.video-card-featured {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .live-feature {
    width: min(100% - 40px, 1400px);
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 64px;
  }

  .live-feature-media {
    min-height: 420px;
  }

  .live-feature-grid {
    grid-template-columns: 1fr;
  }

  .video-card-featured {
    grid-column: span 1;
  }
}

/* ─── Video Thumb ──────────────────────────────────────── */
.video-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #1a0a0c;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.video-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a0508 0%, #2d0a10 100%);
}

/* ─── Video Overlay ────────────────────────────────────── */
.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.5) 0%, rgba(26, 5, 8, 0.7) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}

.play-btn {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-card:hover .play-btn {
  transform: scale(1);
}

/* ─── Video Meta ───────────────────────────────────────── */
.video-duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 2px;
  letter-spacing: 0.04em;
}

.video-platform-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(0, 0, 0, 0.7);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  padding: 3px 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  color: rgba(255, 255, 255, 0.7);
}

.badge-yt {
  color: #ff4040;
}

.badge-vim {
  color: #1ab7ea;
}

.badge-ig {
  color: #e1306c;
}

/* ─── Video Body ───────────────────────────────────────── */
.video-body {
  padding: 16px;
}

.video-title {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--white);
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: rgba(245, 240, 238, 0.3);
}

.video-meta-dot {
  width: 3px;
  height: 3px;
  background: #C8102E;
  border-radius: 50%;
  flex-shrink: 0;
}

.video-views {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(245, 240, 238, 0.35);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  margin-top: 8px;
}

.video-views svg {
  opacity: 0.5;
}

/* ─── Nav ──────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.9) 0%, transparent 100%);
  -webkit-backdrop-filter: blur(0px);
  backdrop-filter: blur(0px);
  transition: all 0.35s ease;
}

.site-nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 16, 46, 0.15);
  padding: 14px 40px;
}

.nav-logo {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: #C8102E;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 238, 0.5);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #C8102E;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: #ff6b6b;
}

.nav-link.active::after {
  width: 100%;
}

/* ─── Footer ───────────────────────────────────────────── */
.site-footer {
  position: relative;
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.98) 0%, #050505 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px);
  padding: 0;
}

.footer-glow {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(200, 16, 46, 0.9), rgba(255, 157, 61, 0.7), transparent);
  pointer-events: none;
}

.footer-inner {
  width: 100%;
  margin: 0 auto;
  padding: 56px 40px 42px;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
  gap: 48px;
}

.footer-brand-panel {
  min-width: 0;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-family: 'Bebas Neue', cursive;
  font-size: 2rem;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
}

.footer-logo span span {
  color: #C8102E;
}

.footer-logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(200, 16, 46, 0.35);
  border-radius: 12px;
  background: rgba(200, 16, 46, 0.08);
  color: #ff3d3d;
  box-shadow: inset 0 0 24px rgba(200, 16, 46, 0.08);
}

.footer-tagline {
  max-width: 42ch;
  margin: 20px 0 0;
  color: rgba(245, 240, 238, 0.58);
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.footer-badges span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  padding: 7px 10px;
  color: rgba(245, 240, 238, 0.52);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.footer-col {
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  padding-left: 20px;
}

.footer-col h4 {
  margin: 0 0 16px;
  color: rgba(255, 157, 61, 0.88);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-copy {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 238, 0.25);
}

.footer-link {
  display: block;
  width: fit-content;
  margin-top: 11px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.86rem;
  color: rgba(245, 240, 238, 0.55);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.02em;
}

.footer-link:hover {
  color: #f5f0ee;
  transform: translateX(3px);
}

.report-link:hover {
  color: #ff4040 !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 18px 40px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* ─── Animations ───────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes ageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.anim-fade-up {
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.anim-delay-1 {
  animation-delay: 0.1s;
}

.anim-delay-2 {
  animation-delay: 0.22s;
}

.anim-delay-3 {
  animation-delay: 0.36s;
}

.anim-delay-4 {
  animation-delay: 0.5s;
}

.anim-delay-5 {
  animation-delay: 0.65s;
}

/* ─── Scroll Reveal ────────────────────────────────────── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ─── Extracted Inline Styles ─── */

.home-custom-style-1 {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
}

.home-custom-style-2 {
  font-size: 3rem;
}

.home-custom-style-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 40px;
  margin-top: 60px;
}

.home-custom-style-4 {
  width: 64px;
  height: 64px;
  background: rgba(200, 16, 46, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #C8102E;
  border: 1px solid rgba(200, 16, 46, 0.3);
  font-size: 1.5rem;
  font-weight: bold;
}

.home-custom-style-5 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.home-custom-style-6 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.home-custom-style-7 {
  background: radial-gradient(ellipse at 30% 50%, rgba(200, 16, 46, 0.08), transparent 60%), linear-gradient(to bottom, #080808, #0a0a0a);
  padding: 100px 20px;
  border-top: 1px solid rgba(200, 16, 46, 0.15);
}

.home-custom-style-8 {
  justify-content: center;
}

.home-custom-style-9 {
  font-size: 3rem;
  text-align: center;
}

.home-custom-style-10 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: 40px;
  margin-top: 60px;
}

.home-custom-style-11 {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(200, 16, 46, 0.04));
  border: 1px solid rgba(200, 16, 46, 0.25);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.home-custom-style-12 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(200, 16, 46, 0.08);
  border-radius: 50%;
  filter: blur(30px);
}

.home-custom-style-13 {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.home-custom-style-14 {
  font-size: 2.5rem;
}

.home-custom-style-15 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1;
}

.home-custom-style-16 {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 4px 0 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-custom-style-17 {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 16px 0;
}

.home-custom-style-18 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 16, 46, 0.1);
  border: 1px solid rgba(200, 16, 46, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  margin: 8px 0 20px;
}

.home-custom-style-19 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  color: #ff6b6b;
}

.home-custom-style-20 {
  color: rgba(255, 255, 255, 0.3);
}

.home-custom-style-21 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.home-custom-style-22 {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-custom-style-23 {
  display: flex;
  gap: 10px;
  align-items: center;
}

.home-custom-style-24 {
  flex-shrink: 0;
}

.home-custom-style-25 {
  width: 100%;
  justify-content: center;
}

.home-custom-style-26 {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(234, 179, 8, 0.04));
  border: 1px solid rgba(234, 179, 8, 0.3);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.home-custom-style-27 {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(234, 179, 8, 0.08);
  border-radius: 50%;
  filter: blur(30px);
}

.home-custom-style-28 {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1;
  color: #eab308;
}

.home-custom-style-29 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(234, 179, 8, 0.1);
  border: 1px solid rgba(234, 179, 8, 0.2);
  border-radius: 8px;
  padding: 8px 16px;
  margin: 8px 0 20px;
}

.home-custom-style-30 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.3rem;
  color: #eab308;
}

.home-custom-style-31 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.6rem;
  color: #fff;
}

.home-custom-style-32 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.home-custom-style-33 {
  width: 100%;
  justify-content: center;
  border-color: rgba(234, 179, 8, 0.3);
  color: #eab308;
}

.home-custom-style-34 {
  background: rgba(255, 255, 255, 0.02);
  padding: 80px 20px;
}

.home-custom-style-35 {
  max-width: 1000px;
  margin: 0 auto;
}

.home-custom-style-36 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 40px;
  margin-top: 60px;
}

.home-custom-style-37 {
  background: rgba(10, 10, 10, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 40px;
  position: relative;
}

.home-custom-style-38 {
  font-size: 1.8rem;
  font-family: 'Bebas Neue', cursive;
  margin: 0;
}

.home-custom-style-39 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 8px;
}

.home-custom-style-40 {
  font-size: 2.5rem;
  font-family: 'Bebas Neue', cursive;
  margin: 24px 0;
}

.home-custom-style-41 {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-custom-style-42 {
  display: flex;
  gap: 12px;
}

.home-custom-style-43 {
  display: flex;
  gap: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.home-custom-style-44 {
  width: 100%;
  justify-content: center;
}

.home-custom-style-45 {
  background: linear-gradient(135deg, rgba(200, 16, 46, 0.1), rgba(200, 16, 46, 0.02));
  border: 1px solid #C8102E;
  border-radius: 12px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 40px rgba(200, 16, 46, 0.15);
}

.home-custom-style-46 {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #C8102E;
  color: white;
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-custom-style-47 {
  font-size: 1.8rem;
  font-family: 'Bebas Neue', cursive;
  margin: 0;
  color: #ff6b6b;
}

.home-custom-style-48 {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
}

.home-custom-style-49 {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-custom-style-50 {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin-top: 16px;
}

.home-custom-style-51 {
  max-width: 1400px;
  margin: 80px auto;
  padding: 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 80px;
}

.home-custom-style-52 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 40px;
  text-align: center;
}

.home-custom-style-53 {
  flex: 1;
  min-width: 250px;
}

.home-custom-style-54 {
  margin: 0 auto 16px;
}

.home-custom-style-55 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.home-custom-style-56 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.home-custom-style-57 {
  background: url('/images/softhero2.jpg') center/cover no-repeat;
  position: relative;
  margin: 80px 0 0;
}

.home-custom-style-58 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 100%);
}

.home-custom-style-59 {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 20px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.home-custom-style-60 {
  font-size: 3.5rem;
  margin: 0;
}

.home-custom-style-61 {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 16px 0 32px;
  line-height: 1.6;
}

.home-custom-style-62 {
  display: flex;
  gap: 20px;
}

.home-custom-style-63 {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 32px;
  max-width: 380px;
}

.home-custom-style-64 {
  font-family: 'Bebas Neue', cursive;
  font-size: 1.5rem;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.home-custom-style-65 {
  list-style: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-custom-style-66 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.home-custom-style-67 {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
}

.home-custom-style-68 {
  position: relative;
  width: 90vw;
  max-width: 960px;
}

.home-custom-style-69 {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.home-custom-style-70 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #0a0a0a;
  border: 1px solid rgba(200, 16, 46, 0.3);
  border-radius: 4px;
}

.home-custom-style-71 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.home-custom-style-72 {
  padding: 12px 24px;
  font-size: 0.8rem;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(200, 16, 46, 0.3);
}

@media (max-width: 768px) {
  .quick-categories {
    padding: 28px 14px 18px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .cat-card {
    min-height: 104px;
    padding: 16px 10px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 10px !important;
  }

  .cat-card br {
    display: none;
  }

  .cat-card span:first-child {
    font-size: 1.65rem !important;
    line-height: 1;
  }

  .cat-card .font-display {
    font-size: 1.35rem !important;
    line-height: 1;
  }

  #live-grid {
    margin-top: 24px;
    padding-inline: 14px !important;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .video-card {
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.035);
  }

  .video-card:hover {
    transform: none;
  }

  .video-thumb {
    aspect-ratio: 1 / 1 !important;
    border-radius: 10px !important;
  }

  .video-thumb .absolute.top-3,
  .video-thumb .absolute.bottom-3 {
    font-size: 0.58rem !important;
    line-height: 1;
    padding: 4px 6px !important;
    border-radius: 7px !important;
  }

  .video-thumb .absolute.top-3 {
    top: 7px !important;
  }

  .video-thumb .absolute.left-3 {
    left: 7px !important;
  }

  .video-thumb .absolute.right-3 {
    right: 7px !important;
  }

  .video-thumb .absolute.bottom-3 {
    bottom: 7px !important;
  }

  .video-body {
    padding: 8px 4px 4px !important;
  }

  .video-title {
    font-size: 0.92rem !important;
    line-height: 1.15;
    margin-bottom: 0 !important;
  }

  .video-body .text-white\/60 {
    display: none;
  }

  .elite-card {
    min-width: min(76vw, 250px) !important;
    padding: 18px !important;
    border-radius: 10px !important;
  }

  .elite-card img {
    width: 82px !important;
    height: 82px !important;
  }

  .elite-card h3 {
    max-width: 100%;
    font-size: 1.45rem !important;
    line-height: 1;
    text-align: center;
    overflow-wrap: anywhere;
  }

  .home-custom-style-1,
  .home-custom-style-51 {
    margin: 52px auto;
    padding-inline: 14px;
  }

  .home-custom-style-2,
  .home-custom-style-9 {
    font-size: 2.35rem !important;
  }

  .home-custom-style-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin-top: 32px;
  }

  .home-custom-style-3 > div {
    min-width: 0;
    padding: 16px 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.025);
  }

  .home-custom-style-4 {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    font-size: 1.15rem;
  }

  .home-custom-style-5 {
    font-size: 1rem;
    line-height: 1.15;
  }

  .home-custom-style-6 {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .home-custom-style-7,
  .home-custom-style-34 {
    padding: 56px 14px;
  }

  .home-custom-style-10,
  .home-custom-style-36 {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
  }

  .vip-plan-card {
    padding: 22px !important;
    border-radius: 16px !important;
    box-shadow: 0 0 24px rgba(255, 184, 0, 0.12) !important;
  }

  .vip-plan-card > .absolute:first-child {
    width: 110px !important;
    height: 110px !important;
    filter: blur(42px) !important;
  }

  .vip-plan-card > .inline-block {
    margin-bottom: 14px !important;
    padding: 5px 12px !important;
    font-size: 0.52rem !important;
    letter-spacing: 0.14em !important;
  }

  .vip-plan-card h3 {
    font-size: 2.4rem !important;
    line-height: 0.95 !important;
    margin-bottom: 6px !important;
    gap: 8px !important;
  }

  .vip-plan-card h3 svg {
    width: 22px !important;
    height: 22px !important;
  }

  .vip-plan-card p.text-white\/60 {
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 14px !important;
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  .vip-plan-card .text-5xl {
    margin-bottom: 18px !important;
    font-size: 2.35rem !important;
    line-height: 1 !important;
  }

  .vip-plan-card .text-5xl span {
    font-size: 0.95rem !important;
  }

  .vip-plan-card ul {
    gap: 9px !important;
    margin-bottom: 20px !important;
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
  }

  .vip-plan-card li {
    align-items: flex-start !important;
    gap: 8px !important;
  }

  .vip-plan-card a {
    padding-block: 12px !important;
    border-radius: 10px !important;
    font-size: 1.45rem !important;
    line-height: 1 !important;
  }

  .vip-plan-card > p:last-child {
    margin-top: 14px !important;
    font-size: 0.62rem !important;
    line-height: 1.4 !important;
  }

  .show-card,
  .home-custom-style-11,
  .home-custom-style-26,
  .home-custom-style-37,
  .home-custom-style-45 {
    padding: 22px !important;
    border-radius: 12px !important;
  }

  .home-custom-style-13 {
    align-items: flex-start;
    gap: 12px;
  }

  .home-custom-style-14 {
    font-size: 2rem;
    line-height: 1;
  }

  .home-custom-style-15,
  .home-custom-style-28 {
    font-size: 1.85rem;
  }

  .home-custom-style-18,
  .home-custom-style-29 {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 12px;
    text-align: center;
  }

  .home-custom-style-23 {
    align-items: flex-start;
    line-height: 1.45;
  }

  .home-custom-style-59 {
    padding: 64px 14px;
    align-items: stretch;
  }

  .home-custom-style-60 {
    font-size: 2.5rem;
  }

  .home-custom-style-62 {
    flex-direction: column;
    gap: 12px;
  }

  .home-custom-style-63 {
    max-width: none;
    padding: 22px;
  }

  .site-footer {
    margin-top: 52px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 38px 14px 28px;
  }

  .footer-logo {
    font-size: 1.72rem;
  }

  .footer-logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .footer-tagline {
    margin-top: 16px;
    font-size: 0.86rem;
    line-height: 1.6;
  }

  .footer-badges {
    margin-top: 18px;
  }

  .footer-badges span {
    padding: 6px 9px;
    font-size: 0.55rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 18px 0 0;
  }

  .footer-col h4 {
    margin-bottom: 10px;
  }

  .footer-link {
    min-height: 34px;
    margin-top: 3px;
    display: flex;
    align-items: center;
    font-size: 0.9rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 14px 24px;
  }
}

@media (max-width: 420px) {
  .category-grid,
  .home-custom-style-3 {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .cat-card {
    min-height: 88px;
    flex-direction: row;
  }

  .video-thumb {
    aspect-ratio: 1 / 1 !important;
  }

  .video-title {
    font-size: 0.84rem !important;
  }

  .video-thumb .absolute.top-3,
  .video-thumb .absolute.bottom-3 {
    font-size: 0.52rem !important;
    padding: 3px 5px !important;
  }

  .vip-plan-card {
    padding: 18px !important;
  }

  .vip-plan-card h3 {
    font-size: 2.1rem !important;
  }

  .vip-plan-card .text-5xl {
    font-size: 2rem !important;
  }

  .vip-plan-card ul {
    gap: 7px !important;
    font-size: 0.68rem !important;
  }

  .footer-logo {
    font-size: 1.55rem;
  }
}

/* ─── Scroll Reveal Animations ───────────────────────────── */
.reveal-target {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-target.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Subtle VIP Pulse ───────────────────────────────── */
@keyframes vip-subtle-pulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(255, 184, 0, 0.1);
    border-color: rgba(255, 184, 0, 0.2);
  }
  50% {
    box-shadow: 0 0 50px rgba(255, 184, 0, 0.25);
    border-color: rgba(255, 184, 0, 0.4);
  }
}

.vip-plan-card {
  animation: vip-subtle-pulse 4s ease-in-out infinite;
}

/* ─── Video Card Enhancements ────────────────────────────── */
.video-card .video-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(200, 16, 46, 0.5) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.video-card:hover .video-thumb::after {
  opacity: 1;
}

.video-card .video-title {
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.video-card:hover .video-title {
  transform: translateY(-2px);
}
