/* ==========================================================
   Alterspin Casino – Custom CSS
   Animations, overrides, prose styling
   ========================================================== */

/* ── Custom Properties ────────────────────────────────── */
:root {
  --deep: #0a0e27;
  --deep-light: #111638;
  --card: #151a3a;
  --card-hover: #1c2248;
  --accent: #00e676;
  --accent-glow: #00ff88;
  --accent-dark: #00c853;
  --text-primary: #f0f4ff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --border-subtle: rgba(0, 230, 118, 0.12);
  --glow-sm: 0 0 12px rgba(0, 230, 118, 0.25);
  --glow-md: 0 0 24px rgba(0, 230, 118, 0.35);
  --glow-lg: 0 0 48px rgba(0, 230, 118, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--deep);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Scrollbar ────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--deep);
}
::-webkit-scrollbar-thumb {
  background: var(--card-hover);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-dark);
}

/* ── ANIMATION 1: Particles ──────────────────────────── */
.particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1)  { left:  5%; animation-duration: 14s; animation-delay: 0s;   width: 3px; height: 3px; }
.particle:nth-child(2)  { left: 15%; animation-duration: 18s; animation-delay: 2s;   width: 5px; height: 5px; }
.particle:nth-child(3)  { left: 25%; animation-duration: 12s; animation-delay: 4s;   width: 2px; height: 2px; }
.particle:nth-child(4)  { left: 35%; animation-duration: 20s; animation-delay: 1s;   width: 4px; height: 4px; }
.particle:nth-child(5)  { left: 45%; animation-duration: 16s; animation-delay: 3s;   width: 3px; height: 3px; }
.particle:nth-child(6)  { left: 55%; animation-duration: 22s; animation-delay: 5s;   width: 6px; height: 6px; }
.particle:nth-child(7)  { left: 65%; animation-duration: 13s; animation-delay: 0.5s; width: 3px; height: 3px; }
.particle:nth-child(8)  { left: 75%; animation-duration: 17s; animation-delay: 2.5s; width: 4px; height: 4px; }
.particle:nth-child(9)  { left: 85%; animation-duration: 15s; animation-delay: 4.5s; width: 2px; height: 2px; }
.particle:nth-child(10) { left: 92%; animation-duration: 19s; animation-delay: 1.5s; width: 5px; height: 5px; }

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  50%  { opacity: 0.3; }
  90%  { opacity: 0.1; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ── ANIMATION 2: Marquee ────────────────────────────── */
.marquee-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--deep), transparent);
}

.marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--deep), transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

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

.provider-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  color: var(--text-secondary);
  font-size: 0.875rem;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.provider-pill:hover {
  background: var(--card-hover);
  color: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

/* ── Pulsating Glow ──────────────────────────────────── */
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(0, 230, 118, 0.3); }
  50%      { box-shadow: 0 0 24px rgba(0, 230, 118, 0.6), 0 0 48px rgba(0, 230, 118, 0.15); }
}

.pulse-glow {
  animation: pulseGlow 2.5s ease-in-out infinite;
}

/* ── Float Animation ─────────────────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

.float-anim {
  animation: floatY 4s ease-in-out infinite;
}

/* ── Gradient Shift ──────────────────────────────────── */
@keyframes gradientShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-shift {
  background-size: 200% 200%;
  animation: gradientShift 6s ease infinite;
}

/* ── Shimmer ─────────────────────────────────────────── */
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, transparent 30%, rgba(0,230,118,0.08) 50%, transparent 70%);
  background-size: 200% 100%;
  animation: shimmer 3s linear infinite;
}

/* ── Fade Up (scroll reveal helper) ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease-out both;
}

/* ── Star Twinkle (for rating stars) ─────────────────── */
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.5; }
}

/* ── Hero Section ────────────────────────────────────── */
.hero-section {
  position: relative;
  margin: 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0, 230, 118, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 100, 200, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #0d1230 0%, #0a0e27 40%, #091020 100%);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .hero-section { margin: 1.5rem 2rem; border-radius: 2rem; }
}
@media (min-width: 1024px) {
  .hero-section { margin: 2rem 3rem; border-radius: 2.5rem; }
}

/* ── Slot & Game Cards ───────────────────────────────── */
.game-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.game-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-md);
  border-color: var(--accent);
}

.game-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.game-card .card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

.badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.2rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
}

.badge-rtp      { background: #10b981; color: #fff; }
.badge-jackpot  { background: #f59e0b; color: #1a1a2e; }
.badge-bonus    { background: #8b5cf6; color: #fff; }
.badge-popular  { background: #ef4444; color: #fff; }

/* ── CTA Buttons ─────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--deep);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--accent-glow), var(--accent));
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 9999px;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: rgba(0, 230, 118, 0.1);
  box-shadow: var(--glow-sm);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

/* ── Feature Cards ───────────────────────────────────── */
.feature-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: block;
}

/* ── Tabs ─────────────────────────────────────────────── */
.tab-btn {
  padding: 0.75rem 1.5rem;
  background: var(--card);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: var(--accent);
  color: var(--deep);
  border-color: var(--accent);
}

.tab-btn:hover:not(.active) {
  border-color: var(--accent);
  color: var(--accent);
}

.tab-panel {
  display: none;
}

.tab-panel.active {
  display: block;
  animation: fadeUp 0.3s ease-out;
}

/* ── Payment Table ───────────────────────────────────── */
.pay-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.875rem;
}

.pay-table thead th {
  background: var(--card);
  color: var(--accent);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid var(--border-subtle);
}

.pay-table thead th:first-child { border-radius: 0.75rem 0 0 0; }
.pay-table thead th:last-child  { border-radius: 0 0.75rem 0 0; }

.pay-table tbody td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
}

.pay-table tbody tr:hover td {
  background: rgba(0, 230, 118, 0.03);
}

.pay-table tbody tr:last-child td { border-bottom: none; }
.pay-table tbody tr:last-child td:first-child { border-radius: 0 0 0 0.75rem; }
.pay-table tbody tr:last-child td:last-child  { border-radius: 0 0 0.75rem 0; }

/* ── Review Card ─────────────────────────────────────── */
.review-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

.star-filled { color: #facc15; }
.star-empty  { color: var(--text-muted); }

/* ── Section Spacing ─────────────────────────────────── */
.section-spacing {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .section-spacing { padding: 4rem 2rem; }
}

@media (min-width: 1024px) {
  .section-spacing { padding: 5rem 3rem; }
}

/* ── Prose Styling (Review Content) ──────────────────── */
.prose-content {
  line-height: 1.75;
  color: var(--text-secondary);
  font-size: 1rem;
}

.prose-content h2 {
  color: var(--text-primary);
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.prose-content h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  line-height: 1.4;
}

.prose-content p {
  margin-bottom: 1.25rem;
}

.prose-content ul,
.prose-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.prose-content li::marker {
  color: var(--accent);
}

.prose-content strong {
  color: var(--text-primary);
  font-weight: 600;
}

.prose-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.prose-content a:hover {
  color: var(--accent-glow);
}

.prose-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(0, 230, 118, 0.04);
  border-radius: 0 0.75rem 0.75rem 0;
  color: var(--text-primary);
  font-style: italic;
}

/* ── CTA Banner ──────────────────────────────────────── */
.cta-banner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(0, 230, 118, 0.15) 0%, transparent 50%),
    linear-gradient(135deg, #0d1230, var(--deep));
  border: 1px solid var(--border-subtle);
}

/* ── Spotlight Card ──────────────────────────────────── */
.spotlight-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.spotlight-card:hover {
  box-shadow: var(--glow-lg);
}

.soft-glow {
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.08);
}

/* ── Mobile Menu ─────────────────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 39, 0.97);
  backdrop-filter: blur(16px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu a {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

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

/* ── Sticky Header ───────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

/* ── Author Card ─────────────────────────────────────── */
.author-card {
  background: linear-gradient(135deg, var(--card), var(--deep-light));
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: 2rem;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--deep);
  flex-shrink: 0;
}

/* ── Live Overlay ────────────────────────────────────── */
.live-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.9) 0%, rgba(10, 14, 39, 0.3) 40%, transparent 70%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.live-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  background: #ef4444;
  border-radius: 9999px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulseGlow 1.5s ease-in-out infinite;
}

/* ── Promo Cards ─────────────────────────────────────── */
.promo-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.promo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}

.promo-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--glow-sm);
}

/* ── Container ───────────────────────────────────────── */
.container-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container-wide { padding: 0 2rem; }
}

/* ── Misc ────────────────────────────────────────────── */
.text-gradient {
  background: linear-gradient(135deg, var(--accent), var(--accent-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.75rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title { font-size: 2rem; }
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-subtle), transparent);
  margin: 0 auto;
  max-width: 600px;
}

/* ── Filter Buttons (Lobby) ──────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  background: var(--card);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  color: var(--deep);
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

/* ── Expandable Section ──────────────────────────────── */
.expandable-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.5rem;
  background: var(--card);
  color: var(--accent);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.expandable-toggle:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
}

.expandable-toggle svg {
  transition: transform 0.3s ease;
}

.expandable-toggle.open svg {
  transform: rotate(180deg);
}

.expandable-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  opacity: 0;
}

.expandable-content.open {
  max-height: 3000px;
  opacity: 1;
}

/* ── FAQ Accordion ───────────────────────────────────── */
.faq-item {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 230, 118, 0.25);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-question svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--accent);
}

.faq-question.open svg {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Info Grid Cards (inner pages) ───────────────────── */
.info-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.info-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

/* ── Provider Card (provider page) ───────────────────── */
.provider-card {
  background: var(--card);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.provider-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.provider-card:hover {
  border-color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-4px);
}

.provider-card:hover::before {
  opacity: 1;
}

/* ── Stat Pill ───────────────────────────────────────── */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: 9999px;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

/* ── Inner Page Hero Variants ────────────────────────── */
.inner-hero {
  position: relative;
  margin: 1rem;
  border-radius: 1.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 60%, rgba(0, 230, 118, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 30%, rgba(0, 100, 200, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #0d1230 0%, #0a0e27 100%);
  border: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .inner-hero { margin: 1.5rem 2rem; border-radius: 2rem; }
}
@media (min-width: 1024px) {
  .inner-hero { margin: 2rem 3rem; border-radius: 2.5rem; }
}

/* ── Live Game of the Week ───────────────────────────── */
.lotw-hero {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.lotw-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lotw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 14, 39, 0.95) 10%, rgba(10, 14, 39, 0.4) 50%, transparent 80%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .lotw-overlay { padding: 2.5rem; }
}
