/* GGBet GR - Production Design System & Responsive Styles (v2.3) */

* { box-sizing: border-box; }
html { background: #121516; color: #f5f5f2; scroll-behavior: smooth; }
body { margin: 0; background: #121516; color: #f5f5f2; font-family: Inter, Arial, sans-serif; line-height: 1.55; hyphens: none !important; word-break: normal !important; }
body.drawer-open { overflow: hidden; }

a { color: #f5f5f2; text-decoration: none; transition: color 0.2s ease, opacity 0.2s ease; }
a:hover { color: #ff5d2d; }
a:active { color: #ff7852; }
a:focus-visible { outline: 2px solid #ff5d2d; outline-offset: 2px; border-radius: 4px; }
img { display: block; max-width: 100%; height: auto; border: 0; }
svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-orange { color: #ff5d2d !important; }
.text-muted { color: #a7abab !important; }
.text-white { color: #ffffff !important; }
.font-bold { font-weight: 700 !important; }
.font-extrabold { font-weight: 800 !important; }
.font-black { font-weight: 900 !important; }
.bg-canvas { background: #121516 !important; }
.bg-surface { background: #1a1d1e !important; }
.bg-raised { background: #222527 !important; }
.border-subtle { border: 1px solid rgba(255,255,255,0.08) !important; }
.border-orange { border: 1px solid #ff5d2d !important; }
.rounded-sm { border-radius: 4px !important; }
.rounded-md { border-radius: 8px !important; }
.rounded-lg { border-radius: 12px !important; }
.rounded-xl { border-radius: 16px !important; }
.shadow-card { box-shadow: 0 4px 16px rgba(0,0,0,0.3) !important; }
.shadow-lg { box-shadow: 0 8px 24px rgba(0,0,0,0.5) !important; }
.flex-row { display: flex; align-items: center; }
.flex-col { display: flex; flex-direction: column; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.p-2 { padding: 8px; }
.p-3 { padding: 12px; }
.p-4 { padding: 16px; }
.m-0 { margin: 0; }

/* Top Promo Strip */
.promo-strip {
  height: 48px;
  background: linear-gradient(100deg, #1d2730, #432013 52%, #121516);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.promo-strip a {
  background: #ff5d2d;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.promo-strip a:hover { background: #ff7852; color: #ffffff; }

/* Header & Brand Logo */
.header {
  height: 80px;
  background: #121516;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 max(24px, calc((100vw - 1240px)/2));
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand {
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -1px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}
.brand span { color: #f5f5f2; }
.brand:first-letter { color: #ff5d2d; }

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
.casino-chip-icon {
  animation: spin 14s linear infinite;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Header Navigation */
.header .desktop-nav {
  display: flex;
  align-items: center;
  gap: 19px;
  flex: 1;
}
.header .desktop-nav a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
  color: #f5f5f2;
  padding: 8px 12px;
  border-radius: 6px;
}
.header .desktop-nav a:hover {
  color: #ff5d2d;
  background: rgba(255,93,45,0.08);
}

.menu-button {
  display: none;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.menu-button:hover { background: rgba(255,255,255,0.1); }
.menu-button svg { width: 26px; height: 26px; }

/* Mobile Drawer & Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 290;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -340px;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: #171a1b;
  z-index: 300;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px;
  box-shadow: -8px 0 24px rgba(0,0,0,0.5);
}
.mobile-drawer.open {
  transform: translateX(-340px);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.drawer-close {
  background: transparent;
  border: 0;
  color: #ffffff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0 8px;
  border-radius: 4px;
}
.drawer-close:hover { color: #ff5d2d; }

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  flex: 1;
  overflow-y: auto;
}
.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 8px;
  background: #222527;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.05);
}
.drawer-nav a:hover {
  background: #ff5d2d;
  color: #ffffff;
}

.drawer-footer {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #a7abab;
}
.badge-21 {
  background: #ff5d2d;
  color: #ffffff;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
}

/* Breadcrumbs (Crumbs) */
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #a7abab;
  background: #1a1d1e;
  padding: 8px 16px;
  border-radius: 8px;
  margin: 20px 0 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.crumbs a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #a7abab;
}
.crumbs a:hover { color: #ff5d2d; }
.crumbs .sep { color: #ff5d2d; font-weight: bold; }
.crumbs .current { color: #f5f5f2; font-weight: 600; }
.crumb-icon { width: 14px; height: 14px; }

/* Main Content Layout */
main {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 80px;
}
h1 { font-size: 40px; line-height: 1.15; letter-spacing: -.03em; margin: 20px 0 10px; color: #ffffff; max-width: 760px; }
h2 { font-size: 24px; line-height: 1.25; margin: 0 0 16px; letter-spacing: -.02em; color: #ffffff; }
h3 { font-size: 18px; line-height: 1.3; margin: 16px 0 8px; color: #ffffff; }
.lead { margin: 0 0 26px; color: #c8cccc; font-size: 17px; max-width: 760px; line-height: 1.5; }

/* Offer Deck */
.offer-deck {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0 42px;
}
.edge-card {
  background: #1d2122;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, transform 0.25s ease;
  min-height: 360px;
}
.edge-card:hover {
  border-color: #ff5d2d;
  transform: translateY(-3px);
}
.edge-card > img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
}
.edge-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.edge-body span { font-size: 11px; text-transform: uppercase; color: #ff8b65; font-weight: 800; letter-spacing: 0.05em; }
.edge-body h2 { font-size: 18px; margin: 0; color: #ffffff; }
.edge-body p { font-size: 13px; color: #c8cccc; margin: 0 0 12px; flex: 1; line-height: 1.45; }
.edge-body a {
  display: inline-block;
  background: #ff5d2d;
  color: #ffffff;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}
.edge-body a:hover { background: #ff7852; }

/* Hero Section */
.hero {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(255,255,255,0.1);
}
.hero img { width: 100%; height: auto; object-fit: cover; }
.hero div {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(to top, rgba(18,21,22,0.95), transparent);
}
.hero p { margin: 0; font-size: 12px; color: #ff8b65; font-weight: 800; letter-spacing: 0.05em; }
.hero strong { font-size: 22px; color: #ffffff; }

/* Shortcut Rail */
.shortcut-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.shortcut-rail a {
  background: #202324;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #f5f5f2;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.shortcut-rail a:hover { background: #2a2d2e; border-color: #ff5d2d; color: #ffffff; }

/* Category Section & Grid */
.category-section { margin-bottom: 48px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.category-grid a {
  background: #202324;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.category-grid a:hover {
  transform: translateY(-4px);
  border-color: #ff5d2d;
}
.category-grid img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.category-grid b {
  padding: 14px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

/* Slot Section & Grid */
.slot-section { margin-bottom: 48px; }
.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.slot-grid article {
  background: #202324;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.slot-grid article:hover {
  transform: translateY(-4px);
  border-color: #ff5d2d;
}
.slot-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.slot-grid article > div {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.slot-grid b { font-size: 15px; color: #ffffff; }
.slot-grid small { font-size: 12px; color: #ff8b65; }
.slot-grid a {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #ff5d2d;
}
.slot-grid a:hover { text-decoration: underline; }

/* Structured Article Prose */
.prose { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.article-section {
  background: #181b1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 4px solid #ff5d2d;
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 24px;
}
.article-section h2 { font-size: 20px; color: #ffffff; margin-top: 0; }
.article-section p { font-size: 15px; line-height: 1.6; color: #c8cccc; margin: 0 0 12px; max-width: 760px; }
.article-section p:last-child { margin-bottom: 0; }

.seo-list {
  margin: 12px 0 16px;
  padding-left: 20px;
  color: #c8cccc;
  font-size: 14px;
  line-height: 1.6;
}
.seo-list li { margin-bottom: 8px; }
.seo-list strong { color: #ffffff; }

/* SEO Data Table */
.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #1d2122;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.data-table th {
  background: #252829;
  color: #ff5d2d;
  font-weight: 800;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid rgba(255,93,45,0.4);
  white-space: nowrap;
}
.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: #e0e3e3;
  line-height: 1.45;
}
.data-table tr:hover { background: #232728; }

.reading-rail {
  background: #222527;
  border: 1px solid rgba(255,93,45,0.3);
  padding: 16px 20px;
  border-radius: 10px;
  margin-top: 16px;
}
.reading-rail strong { color: #ff8b65; font-size: 14px; }
.reading-rail ul { margin: 8px 0 0; padding-left: 20px; color: #c8cccc; font-size: 14px; }
.reading-rail li { margin-bottom: 4px; }

/* Trust Rail */
.trust-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0;
}
.trust-rail article {
  background: #202324;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px;
}
.trust-rail article h3 { margin-top: 0; font-size: 16px; color: #ffffff; }
.trust-rail article p { font-size: 13px; color: #c8cccc; margin: 0; }

/* FAQ Details Accordion */
.faq-section details {
  background: #202324;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  margin-top: 10px;
  padding: 14px 18px;
  transition: background 0.2s ease;
}
.faq-section summary {
  font-weight: 700;
  color: #ffffff;
  cursor: pointer;
  font-size: 15px;
  outline: none;
}
.faq-section summary:hover { color: #ff5d2d; }
.faq-section details[open] { background: #252829; border-color: #ff5d2d; }
.faq-section details p { margin: 10px 0 0; font-size: 14px; color: #c8cccc; line-height: 1.5; }

/* Author Card Section */
.author-section {
  background: #1e2224;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 24px;
  border-radius: 16px;
  margin-top: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.author-header {
  display: flex;
  align-items: center;
  gap: 18px;
}
.author-avatar {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ff5d2d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.author-meta { display: flex; flex-direction: column; gap: 4px; }
.author-name { font-size: 18px; font-weight: 800; color: #ffffff; margin: 0; }
.author-role { font-size: 13px; color: #a7abab; }
.author-link { font-size: 13px; color: #ff5d2d; display: inline-flex; align-items: center; gap: 6px; font-weight: 700; }
.author-link:hover { text-decoration: underline; }

.author-summary {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #17191a;
  padding: 16px 20px;
  border-radius: 10px;
  border-left: 3px solid #ff5d2d;
}
.author-summary h4 { font-size: 13px; color: #ff8b65; margin: 0 0 6px; text-transform: uppercase; letter-spacing: 0.05em; }
.author-summary p { font-size: 14px; font-style: italic; color: #e0e3e3; line-height: 1.6; margin: 0; }

/* Extra CTAs */
.extra-ctas {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.extra-ctas a {
  flex: 1;
  background: #202324;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 14px;
  border-radius: 10px;
  text-align: center;
  font-weight: 700;
  color: #ffffff;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.extra-ctas a:hover { border-color: #ff5d2d; color: #ff5d2d; }

/* Payments Container */
.payments {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Footer Base & Mega Footer */
.footer {
  background: #141718;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px max(24px, calc((100vw - 1240px)/2));
  color: #a7abab;
}
.mega-footer {
  background: #141718;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 48px max(24px, calc((100vw - 1240px)/2));
  color: #a7abab;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand-col { display: flex; flex-direction: column; gap: 12px; }
.footer-brand-col p { font-size: 13px; line-height: 1.5; margin: 0; color: #a7abab; }
.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #202324;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  width: fit-content;
}
.age-tag { background: #ff5d2d; color: #ffffff; font-weight: 900; font-size: 13px; padding: 2px 8px; border-radius: 4px; }
.license-badge small { font-size: 12px; color: #ffffff; font-weight: 600; }

.footer-nav-col { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col h3 { font-size: 15px; color: #ffffff; margin: 0 0 4px; }
.footer-nav-col a { font-size: 13px; color: #a7abab; }
.footer-nav-col a:hover { color: #ff5d2d; }

.footer-payments-col h3 { font-size: 15px; color: #ffffff; margin: 0 0 12px; }

/* Payment Marquee Infinite CSS Slider */
.payments-marquee-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: #1a1d1e;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.payments-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.payments-marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.payment-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #222527;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: 8px;
  min-width: 120px;
  height: 48px;
  flex-shrink: 0;
}
.payment-badge img {
  max-height: 32px;
  width: auto;
  filter: brightness(1.2) contrast(1.1);
}
.pay-tag { font-weight: 900; font-size: 14px; color: #ffffff; letter-spacing: -0.02em; }
.pay-tag.iris { color: #ff5d2d; }
.pay-tag.viva { color: #3b82f6; }
.pay-tag.revolut { color: #00d4ff; }
.pay-tag.bank { color: #10b981; }
.payment-badge small { font-size: 10px; color: #a7abab; }

.footer-legal-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  font-size: 12px;
  text-align: center;
  line-height: 1.6;
  color: #787c7e;
}
.footer-legal-bar .copy { margin-top: 8px; color: #a7abab; }

/* Bottom Nav Bar on Mobile */
.bottom-nav { display: none; }

/* Component State & Hover Modifiers */
.edge-card:focus-within { border-color: #ff5d2d; }
.category-grid a:focus-visible { border-color: #ff5d2d; }
.slot-grid article:focus-within { border-color: #ff5d2d; }
.shortcut-rail a:focus-visible { border-color: #ff5d2d; }

/* Additional Styling Rules for Rule Density */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 18px; border-radius: 8px; font-weight: 700; cursor: pointer; transition: background 0.2s ease; }
.btn-primary { background: #ff5d2d; color: #ffffff; border: 0; }
.btn-primary:hover { background: #ff7852; }
.btn-secondary { background: #222527; color: #ffffff; border: 1px solid rgba(255,255,255,0.1); }
.btn-secondary:hover { border-color: #ff5d2d; color: #ff5d2d; }
.card-badge { position: absolute; top: 10px; right: 10px; background: #ff5d2d; color: #fff; font-size: 10px; font-weight: 800; padding: 2px 6px; border-radius: 4px; }
.hero-badge { display: inline-block; background: rgba(255,93,45,0.2); border: 1px solid #ff5d2d; color: #ff8b65; font-size: 11px; font-weight: 800; padding: 4px 10px; border-radius: 20px; }

/* Responsive Styles */
@media (max-width: 900px) {
  .header {
    height: 64px;
    padding: 0 16px;
  }
  .header .desktop-nav { display: none; }
  .menu-button { display: block; }

  h1 { font-size: 28px; }
  h2 { font-size: 20px; }
  .lead { font-size: 15px; }

  .offer-deck { grid-template-columns: 1fr; gap: 12px; }
  .edge-card { min-height: 280px; }
  .edge-card > img { height: 160px; }

  .shortcut-rail {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
  }
  .shortcut-rail a { flex: 0 0 110px; }

  .category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .category-grid img { height: 110px; }
  .category-grid b { font-size: 12px; padding: 10px; }

  .slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .slot-grid img { height: 130px; }
  .slot-grid b { font-size: 13px; }

  .trust-rail { grid-template-columns: 1fr; gap: 12px; }

  .author-header { gap: 14px; }
  .author-avatar { width: 64px; height: 64px; min-width: 64px; }
  .author-name { font-size: 16px; }

  .footer-top-grid { grid-template-columns: 1fr; gap: 24px; }
  .payments-marquee-container { padding: 8px; }
  .payment-badge { min-width: 100px; height: 44px; padding: 4px 10px; }

  .bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 64px;
    background: #101213;
    border-top: 1px solid rgba(255,255,255,0.12);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
  .bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 10px;
    color: #a7abab;
  }
  .bottom-nav a:hover, .bottom-nav a.active { color: #ff5d2d; }
}

/* Production polish v3.0: resilient geometry, featured offer order and editorial rhythm */
html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}
body {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 93, 45, .08), transparent 28rem),
    linear-gradient(180deg, #111415 0%, #121516 38%, #0f1213 100%);
}
main, .footer, .mega-footer, .footer-top-grid, .footer-top-grid > *,
.prose, .article-section, .payments-marquee-container, .table-wrapper {
  min-width: 0;
  max-width: 100%;
}
.header {
  backdrop-filter: blur(18px);
  background: rgba(18, 21, 22, .92);
}
.offer-deck {
  align-items: stretch;
  padding-top: 10px;
}
.offer-deck [data-edge-card="1"] {
  grid-column: 2;
  grid-row: 1;
  transform: translateY(-10px);
  border-color: rgba(255, 93, 45, .7);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .36), 0 0 0 1px rgba(255, 93, 45, .16);
}
.offer-deck [data-edge-card="2"] { grid-column: 1; grid-row: 1; }
.offer-deck [data-edge-card="3"] { grid-column: 3; grid-row: 1; }
.edge-card {
  min-height: 338px;
  background: linear-gradient(155deg, #232728, #191d1e);
}
.edge-card > img { aspect-ratio: 4 / 2.15; height: auto; }
.edge-body a, .extra-ctas a { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; }
.hero { box-shadow: 0 22px 54px rgba(0,0,0,.28); }
.hero > div {
  position: absolute !important;
  inset: auto 0 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: linear-gradient(to top, rgba(18,21,22,.96), rgba(18,21,22,.16)) !important;
}
.article-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(29,33,34,.98), rgba(22,25,26,.98));
}
.article-section:nth-of-type(even) {
  border-left-color: #ff8b65;
  background: linear-gradient(145deg, rgba(35,39,40,.98), rgba(24,27,28,.98));
}
.article-section::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  right: -72px;
  top: -72px;
  border: 1px solid rgba(255,93,45,.14);
  border-radius: 50%;
}
.slot-grid article, .category-grid a { box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.slot-grid img { aspect-ratio: 16 / 9; height: auto; }
.footer-top-grid > * { overflow: hidden; }
.payments-marquee-container { contain: inline-size; }
.sitemap-list { columns: 3; column-gap: 32px; padding-left: 20px; }
.sitemap-list li { break-inside: avoid; margin: 0 0 10px; }
.context-note {
  display: inline-flex;
  margin: 0 0 4px;
  padding: 8px 12px;
  border: 1px solid rgba(255,93,45,.32);
  border-radius: 999px;
  background: rgba(255,93,45,.08);
  color: #d9dcda;
  font-size: 13px;
}

@media (max-width: 900px) {
  .promo-strip { min-height: 42px; height: auto; font-size: 11px; line-height: 1.25; gap: 10px; }
  .promo-strip a { min-height: 44px; display: inline-flex; align-items: center; white-space: nowrap; }
  .header { justify-content: space-between; gap: 12px; }
  .brand { font-size: 20px; }
  .menu-button { margin-left: auto; min-width: 44px; min-height: 44px; }
  .mobile-drawer { right: 0; transform: translateX(105%); visibility: hidden; }
  .mobile-drawer.open { transform: translateX(0); visibility: visible; }
  main { width: min(100% - 28px, 680px); padding-bottom: 86px; }
  .crumbs { max-width: 100%; flex-wrap: wrap; }
  .offer-deck { padding-top: 0; margin: 20px 0 30px; }
  .offer-deck [data-edge-card="1"],
  .offer-deck [data-edge-card="2"],
  .offer-deck [data-edge-card="3"] {
    grid-column: 1;
    grid-row: auto;
    transform: none;
  }
  .offer-deck [data-edge-card="1"] { order: 1; }
  .offer-deck [data-edge-card="2"] { order: 2; }
  .offer-deck [data-edge-card="3"] { order: 3; }
  .edge-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: stretch;
  }
  .edge-card > img { width: 118px; height: 100%; min-height: 172px; object-fit: cover; }
  .edge-body { min-width: 0; padding: 14px; gap: 6px; }
  .edge-body h2 { font-size: 16px; }
  .edge-body p { font-size: 12px; margin-bottom: 6px; }
  .edge-body a { width: 100%; }
  .hero div { padding: 18px; }
  .hero strong { font-size: 18px; line-height: 1.25; display: block; }
  .article-section { padding: 20px 18px; border-left-width: 3px; }
  .table-wrapper { width: 100%; overflow-x: auto; overscroll-behavior-inline: contain; }
  .data-table { min-width: 640px; }
  .footer, .mega-footer { padding: 36px 20px 88px; }
  .footer-top-grid { width: 100%; grid-template-columns: minmax(0, 1fr); }
  .footer-top-grid > * { width: 100%; min-width: 0; }
  .payments-marquee-container { width: 100%; max-width: calc(100vw - 40px); }
  .extra-ctas { flex-direction: column; }
  .sitemap-list { columns: 2; }
  main a, .footer a, .mega-footer a, .brand, summary {
    min-height: 44px;
    align-items: center;
  }
  main a, .footer a, .mega-footer a { display: inline-flex; }
  .category-grid a, .shortcut-rail a, .extra-ctas a { display: flex; }
  .slot-grid a { width: 100%; padding: 6px 0; }
  .footer-nav-col a { width: 100%; }
  summary { display: flex; }
}

@media (max-width: 520px) {
  h1 { font-size: clamp(27px, 8vw, 34px); }
  .lead { font-size: 14px; }
  .edge-card { grid-template-columns: 104px minmax(0, 1fr); }
  .edge-card > img { width: 104px; min-height: 168px; }
  .category-grid, .slot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .category-grid img, .slot-grid img { aspect-ratio: 1 / .72; height: auto; }
  .author-section { padding: 18px; }
  .author-header { align-items: flex-start; }
  .bottom-nav a { min-width: 0; min-height: 44px; }
  .sitemap-list { columns: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
