:root {
  --bg: #090909;
  --card: #141414;
  --card-alt: #1b1b1b;
  --text: #f5f5f5;
  --muted: #bbbbbb;
  --accent: #e50914;
  --accent-2: #ffd166;
  --radius: 16px;
  --shadow: 0 16px 38px rgba(0, 0, 0, 0.35);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: radial-gradient(circle at 20% 10%, #171717, var(--bg) 45%);
  color: var(--text);
  line-height: 1.6;
}
.search-container {
  position: relative;
  margin: 10px auto 0;
  z-index: 40;
}
.search-wrapper {
  position: relative;
  max-width: 400px;
  margin: 0 0 0 auto;
}
#site-search {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  font-size: 0.95rem;
}
.search-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 0 0 8px 8px;
  margin-top: -2px;
  display: none;
  max-height: 200px;
  overflow-y: auto;
}
.search-suggestions.active {
  display: block;
}
.suggestion-item {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #2a2a2a;
}
.suggestion-item:last-child {
  border-bottom: none;
}
.suggestion-item:hover {
  background: #2a2a2a;
  color: var(--accent);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}
a { color: #fff; text-decoration: none; }
img { width: 100%; display: block; border-radius: 12px; }
.container { width: min(1180px, 92%); margin: 0 auto; }
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #222;
}
.navbar { display: flex; justify-content: space-between; align-items: center; min-height: 74px; }
.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .8px;
  color: var(--accent);
}
.brand::first-letter {
  font-size: 1.18em;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.nav-menu { display: flex; gap: 1rem; align-items: center; }
.nav-menu a { padding: 10px 12px; border-radius: 10px; color: #ececec; }
.nav-menu a:hover, .nav-menu a.active { background: #242424; color: #fff; }
.burger {
  display: none; width: 44px; height: 44px; border: 1px solid #3a3a3a; border-radius: 10px;
  background: transparent; align-items: center; justify-content: center; cursor: pointer;
}
.burger span, .burger span::before, .burger span::after {
  content: ''; display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: .25s;
}
.burger span::before { position: absolute; top: -6px; }
.burger span::after { position: absolute; top: 6px; }
.burger.open span { background: transparent; }
.burger.open span::before { transform: rotate(45deg); top: 0; }
.burger.open span::after { transform: rotate(-45deg); top: 0; }

.hero {
  position: relative;
  margin-top: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: clamp(360px, 52vw, 520px);
}
.slide { display: none; height: 100%; position: relative; }
.slide.active { display: block; }
.slide img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.8), rgba(0,0,0,.4)); }
.slide-content {
  position: absolute; inset: auto auto 34px 34px; z-index: 2; max-width: 560px;
}
.slide-content h1 { margin: 0 0 10px; font-size: clamp(1.6rem, 4vw, 2.8rem); }
.slider-ui {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
}
.slide-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}
.slide-btn:hover { background: rgba(229, 9, 20, 0.8); border-color: rgba(229, 9, 20, 1); }
.slide-dots { display: flex; gap: 8px; }
.slide-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.slide-dot.active { background: var(--accent); box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.25); }
.lead { color: #ddd; max-width: 900px; }
.section { padding: 52px 0; }
.grid { display: grid; gap: 1.2rem; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: linear-gradient(180deg, var(--card-alt), var(--card));
  border: 1px solid #282828;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
}
.card.hover:hover { transform: scale(1.02); border-color: #454545; box-shadow: 0 20px 38px rgba(229, 9, 20, 0.18); }
.card h3 { margin: 0 0 10px; }
.btn {
  display: inline-block; margin-top: 14px; padding: 11px 16px; border-radius: 12px;
  background: var(--accent); color: #fff; font-weight: 700; border: 0;
}
.btn.secondary { background: #2c2c2c; color: #fff; }
.card .btn { margin-top: auto; }
.badge { display: inline-block; margin-right: 8px; padding: 4px 8px; border-radius: 999px; font-size: .8rem; background: #2a2a2a; }
.gallery img { height: 180px; object-fit: cover; }
.poster { height: 320px; object-fit: cover; margin-bottom: 14px; }
.accordion-item { border: 1px solid #2d2d2d; border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.accordion-trigger {
  width: 100%; text-align: left; background: #181818; color: #fff; border: 0; padding: 14px 16px; cursor: pointer;
  font-weight: 700;
}
.accordion-content { display: none; padding: 14px 16px; background: #101010; }
.accordion-item.open .accordion-content { display: block; }
.video-external {
  margin: 0 0 1rem;
}
.video-external__link {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #111;
  box-shadow: var(--shadow);
}
.video-external__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
.video-external__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-align: center;
  padding: 12px;
  transition: background 0.2s ease;
}
.video-external__link:hover .video-external__overlay,
.video-external__link:focus-visible .video-external__overlay {
  background: rgba(229, 9, 20, 0.72);
}
.video-external__link:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
.video-external__play {
  font-size: 2rem;
  line-height: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.video-external__label {
  max-width: 18ch;
}
.video-external__note {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: #9a9a9a;
}
.input, select {
  width: 100%; margin-top: 8px; margin-bottom: 12px; padding: 11px 12px; border-radius: 10px;
  background: #111; border: 1px solid #2d2d2d; color: #fff;
}
.site-footer {
  border-top: 1px solid #222;
  padding: 28px 0 40px;
  color: var(--muted);
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.6), var(--bg));
}
.footer-inner { padding-top: 8px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(220px, 340px);
  gap: 1.5rem;
  align-items: start;
}
.footer-tagline { margin: 0; font-size: 0.95rem; line-height: 1.55; max-width: 36ch; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}
.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1e1e1e;
  border: 1px solid #333;
  color: #b0b0b0;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.footer-social__link:hover {
  color: #fff;
  background: #2a2a2a;
  border-color: #555;
}
.footer-social__icon {
  width: 20px;
  height: 20px;
  display: block;
}
.footer-heading {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.footer-address { margin: 0 0 14px; line-height: 1.55; font-style: normal; }
.footer-label { display: block; font-size: 0.8rem; font-weight: 600; color: #aaa; margin-bottom: 6px; }
.footer-phone { margin: 0; }
.footer-phone a {
  color: var(--text);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-phone a:hover { color: var(--accent-2); }
.footer-map {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2d2d2d;
  background: #111;
  min-height: 180px;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 200px;
  border: 0;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid #2a2a2a;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
}
.footer-legal a {
  color: #9a9a9a;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal a:hover {
  color: #fff;
}

.legal-page h1 { margin-bottom: 0.5rem; }
.legal-page .legal-updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.legal-page h2 {
  margin: 1.75rem 0 0.75rem;
  font-size: 1.15rem;
  color: #fff;
}
.legal-page p, .legal-page li { color: #d0d0d0; }
.legal-page ul { padding-left: 1.25rem; }
.legal-page li { margin-bottom: 0.5rem; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-map iframe { height: 220px; }
}

@media (max-width: 1100px) { .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 991px) {
  .burger { display: inline-flex; }
  .nav-menu {
    display: none; position: absolute; left: 4%; right: 4%; top: 74px;
    flex-direction: column; background: #0f0f0f; border: 1px solid #2a2a2a; border-radius: 14px; padding: 12px;
  }
  .nav-menu.open { display: flex; }
}
@media (max-width: 760px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero { height: 360px; }
}


.topic-image { height: 220px; object-fit: cover; margin-bottom: 12px; }
.pick-posters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 12px;
}
.pick-poster {
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
}
.info-list { margin: 0; padding-left: 18px; color: #d9d9d9; }
.info-list li { margin-bottom: 8px; }
.split { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.1rem; }
.note { background: #111; border-left: 3px solid var(--accent); padding: 10px 12px; border-radius: 8px; }
.service-logo { height: 170px; object-fit: cover; margin-bottom: 10px; }
.service-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.service-icon {
  width: 100%;
  height: 56px;
  object-fit: contain;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}
.social-logo { width: 84px; height: 84px; object-fit: contain; margin-bottom: 12px; border-radius: 16px; }
.form-message {
  margin-top: 10px;
  color: #7df4a7;
  font-weight: 600;
  min-height: 24px;
  opacity: 0;
  transition: opacity .2s ease;
}
.form-message.visible { opacity: 1; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
@media (max-width: 900px) { .pick-posters { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.chat-widget {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 10000;
  font-family: inherit;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.chat-widget__fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e50914 0%, #b8070f 100%);
  box-shadow: 0 10px 28px rgba(229, 9, 20, 0.45), 0 2px 8px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.chat-widget__fab:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 32px rgba(229, 9, 20, 0.55), 0 4px 12px rgba(0, 0, 0, 0.45);
}
.chat-widget__fab:focus-visible {
  outline: 2px solid var(--accent-2);
  outline-offset: 3px;
}
.chat-widget__fab-icon {
  width: 26px;
  height: 26px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z'/%3E%3Cpath d='M7 9h10v2H7zm0-3h10v2H7zm0 6h7v2H7z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H5.17L4 17.17V4h16v12z'/%3E%3Cpath d='M7 9h10v2H7zm0-3h10v2H7zm0 6h7v2H7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.chat-widget__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(380px, calc(100vw - 32px));
  max-height: min(520px, calc(100vh - 120px));
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #1a1a1a, #121212);
  border: 1px solid #333;
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transform-origin: bottom right;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
}
.chat-widget--open .chat-widget__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.chat-widget__panel[hidden] {
  display: none !important;
}

.chat-widget__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid #2a2a2a;
  background: rgba(0, 0, 0, 0.25);
}
.chat-widget__head-text {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
}
.chat-widget__badge {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #2d6a4f, #1b4332);
  color: #d8f3dc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-widget__badge-svg {
  width: 22px;
  height: 22px;
  display: block;
  opacity: 0.95;
}
.chat-widget__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
.chat-widget__subtitle {
  margin: 2px 0 0;
  font-size: 0.78rem;
  color: #9a9a9a;
}
.chat-widget__close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 10px;
  background: #2a2a2a;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-widget__close:hover {
  background: #3a3a3a;
}

.chat-widget__messages {
  flex: 1;
  min-height: 200px;
  max-height: 280px;
  overflow-y: auto;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-widget__msg {
  max-width: 92%;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
}
.chat-widget__msg--user {
  align-self: flex-end;
  background: #2c2c2c;
  color: #f0f0f0;
  border-bottom-right-radius: 4px;
}
.chat-widget__msg--agent {
  align-self: flex-start;
  background: #1e1e1e;
  border: 1px solid #2d2d2d;
  color: #e4e4e4;
  border-bottom-left-radius: 4px;
}
.chat-widget__msg--agent a.chat-widget__link {
  color: var(--accent-2);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.chat-widget__msg--agent a.chat-widget__link:hover {
  color: #ffe08a;
}
.chat-widget__typing {
  font-style: italic;
  color: #888;
}

.chat-widget__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 10px;
}
.chat-widget__chip {
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #3d3d3d;
  background: #181818;
  color: #ddd;
  cursor: pointer;
}
.chat-widget__chip:hover {
  border-color: var(--accent);
  color: #fff;
}

.chat-widget__form {
  display: flex;
  gap: 8px;
  padding: 12px 14px 14px;
  border-top: 1px solid #2a2a2a;
  background: rgba(0, 0, 0, 0.35);
}
.chat-widget__input {
  flex: 1;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  background: #111;
  color: #fff;
  font: inherit;
}
.chat-widget__input::placeholder {
  color: #666;
}
.chat-widget__input:focus {
  outline: none;
  border-color: var(--accent);
}
.chat-widget__send {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: 10px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.chat-widget__send:hover {
  filter: brightness(1.08);
}

@media (prefers-reduced-motion: reduce) {
  .chat-widget__panel {
    transition: none;
  }
  .chat-widget__fab {
    transition: none;
  }
}

.promo-card {
  position: relative;
  background: linear-gradient(135deg, #4a0000 0%, #1a0000 100%) !important;
  border: 1px solid var(--accent) !important;
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.4) !important;
  overflow: hidden;
}
.promo-card::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(229,9,20,0.15) 0%, transparent 60%);
  animation: pulse-glow 4s infinite alternate;
  pointer-events: none;
}
@keyframes pulse-glow {
  0% { transform: scale(0.9); opacity: 0.7; }
  100% { transform: scale(1.1); opacity: 1; }
}
.promo-card h3, .promo-card p, .promo-card a {
  position: relative;
  z-index: 2;
}

.carousel-track {
  animation: scroll-left 30s linear infinite;
  width: max-content;
}
.carousel-track:hover {
  animation-play-state: paused;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 8px)); }
}

/* Article Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal-container {
  position: relative;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  transform: translateY(20px);
  transition: transform 0.3s;
}
.modal-overlay.open .modal-container {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #2a2a2a;
  border: 0;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}
.modal-close:hover {
  background: var(--accent);
}


/* Clean Picks Page Styles */
.picks-header {
  margin-bottom: 2rem;
  text-align: center;
}
.picks-section-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #fff;
}
.section-subtitle {
  color: #aaa;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Horizontal Filter Bar */
.filter-bar {
  background: var(--card);
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter-group-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.filter-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: #1e1e1e;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid #333;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s;
}
.filter-label:hover {
  background: #2a2a2a;
  border-color: #555;
}
.filter-check {
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.filter-apply-btn {
  padding: 10px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  height: 40px;
}
.filter-apply-btn:hover {
  opacity: 0.9;
}

/* Enhanced Movie Cards (12 movies) */
#movies-grid .card {
  padding: 0;
  overflow: hidden;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}
#movies-grid .poster-container {
  height: 260px;
  overflow: hidden;
}
#movies-grid .poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  margin: 0;
  border-radius: 0;
}
#movies-grid .card:hover .poster {
  transform: scale(1.05);
}
#movies-grid .card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
#movies-grid .card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
#movies-grid .card-content p {
  font-size: 0.9rem;
  color: #aaa;
  margin-bottom: 20px;
}
#movies-grid .card-content .btn {
  margin-top: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Partners — catalog spotlight & free social casino & games */
.partner-catalog-spotlight h2 {
  margin-top: 0;
}
.partner-catalog-spotlight__intro {
  color: var(--muted);
  max-width: 820px;
  margin-bottom: 1.5rem;
}
.partner-catalog-grid {
  margin-top: 0;
}
.partner-film-card {
  padding: 0;
  overflow: hidden;
}
.partner-film-card__poster {
  height: 280px;
  margin-bottom: 0;
  border-radius: 0;
}
.partner-film-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.partner-film-card__title {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.3;
}
.partner-film-card__meta,
.partner-film-card__tags {
  margin: 0 0 10px;
  font-size: 0.85rem;
}
.partner-film-card__blurb {
  margin: 0 0 16px;
  font-size: 0.9rem;
  color: #c8c8c8;
  line-height: 1.5;
  flex: 1;
}
.partner-film-card__link {
  margin-top: auto;
  text-align: center;
}
.social-casino-intro h2 {
  margin-top: 0;
}
.social-casino-intro p + p {
  margin-top: 1rem;
}
.free-games-section .free-games-tagline {
  margin-top: 0;
  margin-bottom: 1.25rem;
  color: var(--muted);
}
.free-games-grid .game-card {
  padding: 0;
  overflow: hidden;
}
.game-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0d0d0d;
}
.game-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}
.game-card__title {
  padding: 0 18px;
  margin: 16px 0 0;
  font-size: 1.05rem;
}
.game-card__badge {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-2);
  margin-top: 4px;
}
.game-card__cta {
  margin: 14px 18px 18px;
  text-align: center;
}
.about-games-lead {
  color: var(--muted);
  max-width: 900px;
  margin-bottom: 1.25rem;
}
.about-games-articles {
  display: grid;
  gap: 1.2rem;
}
@media (min-width: 900px) {
  .about-games-articles {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.about-game h3 {
  margin-top: 0;
  color: var(--accent);
}
.responsible-gaming {
  border-color: #3a3a3a;
  background: linear-gradient(180deg, #181818, #121212);
}
.responsible-gaming__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #2d2d2d;
}
.responsible-gaming__age {
  color: var(--text);
}
.responsible-gaming__age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 0 10px;
  border-radius: 10px;
  border: 2px solid currentColor;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}
.responsible-gaming__orgs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.responsible-gaming__org {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid #3a3a3a;
  background: #1a1a1a;
  color: var(--text);
  transition: border-color 0.2s, background 0.2s;
}
.responsible-gaming__org:hover {
  border-color: var(--accent);
  background: #222;
}
.responsible-gaming__org-icon {
  display: flex;
  color: var(--accent-2);
}
.responsible-gaming__org-label {
  font-weight: 700;
  font-size: 0.95rem;
}
.responsible-gaming__text {
  margin: 0;
  color: #d5d5d5;
  font-size: 0.95rem;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .free-games-grid {
    grid-template-columns: 1fr;
  }
}
