/* Monro Casino AT — style.css */
:root {
  --color-primary: #0d6b5c;
  --color-primary-hover: #0a5549;
  --color-secondary: #e8a838;
  --color-secondary-hover: #d4942a;
  --color-bg-dark: #0f1419;
  --color-bg-card: #1a2228;
  --color-bg-elevated: #232d36;
  --color-text: #e8e6e3;
  --color-text-muted: #9ca3af;
  --color-text-light: #f5f4f2;
  --color-border: #2d3748;
  --color-border-light: #3d4a5c;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, monospace;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --radius: 8px;
  --radius-lg: 12px;
  --container: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg-dark);
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Header */
.site-header {
  background: var(--color-bg-card);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  gap: var(--space-lg);
}
.site-logo img {
  max-height: 48px;
  width: auto;
  display: block;
}
.site-logo a { text-decoration: none; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-menu { display: none; }
  .nav-menu.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-bg-card); padding: var(--space-md); gap: var(--space-sm); }
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
}
.nav-menu a:hover { color: var(--color-secondary); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) var(--space-xl);
  background: var(--color-secondary);
  color: #0f1419;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-cta:hover { background: var(--color-secondary-hover); }

/* Hero */
.hero{
  position: relative;
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, var(--color-bg-elevated) 0%, var(--color-bg-dark) 100%);
}
.hero-wrap{
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.hero-media{
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
}
.hero-image{
  width: 100%;
  height: auto;
  display: block;
}
.hero-content{
  text-align: left;
}
.hero-content h1{
  font-size: clamp(1.75rem, 3.4vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 var(--space-md);
  color: var(--color-text-light);
}
.hero-lead{
  margin: 0 0 var(--space-lg);
  max-width: 62ch;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}
.btn--hero{
  padding: 14px 20px;
  font-size: 1rem;
}

/* Desktop layout */
@media (min-width: 900px){
  .hero-wrap{
    grid-template-columns: 1.15fr .85fr;
    gap: var(--space-2xl);
  }
  .hero-content{
    padding-right: var(--space-xl);
  }
}

/* Sections */
.section {
  padding: var(--space-2xl) 0;
}
.section-title {
  font-size: 1.75rem;
  margin: 0 0 var(--space-lg);
  color: var(--color-text-light);
}
.section-subtitle {
  font-size: 1.25rem;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--space-lg);
}
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color 0.2s;
}
.card:hover { border-color: var(--color-border-light); }
.card h3 { margin: 0 0 var(--space-sm); font-size: 1.125rem; }
.card p { margin: 0; color: var(--color-text-muted); font-size: 0.9375rem; }

/* Slot cards */
.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: var(--space-md);
}
.slot-card {
  background: var(--color-bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--color-border);
  transition: border-color 0.2s, transform 0.2s;
}
.slot-card:hover { border-color: var(--color-primary); transform: translateY(-2px); }
.slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.slot-card .slot-info {
  padding: var(--space-sm) var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
}
.slot-card .slot-play {
  display: block;
  padding: var(--space-xs);
  background: var(--color-primary);
  color: white;
  text-align: center;
  font-size: 0.75rem;
}

/* Tables */
.table-wrap { overflow-x: auto; }
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
th, td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}
th { color: var(--color-text-muted); font-weight: 500; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* Accordion / FAQ */
.accordion-item {
  border-bottom: 1px solid var(--color-border);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}
.accordion-trigger:hover { color: var(--color-secondary); }
.accordion-trigger::after {
  content: "+";
  font-size: 1.25rem;
  transition: transform 0.2s;
}
.accordion-trigger[aria-expanded="true"]::after { transform: rotate(45deg); }
.accordion-panel {
  padding-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}
.accordion-panel[hidden] { display: none; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}
.breadcrumbs a { color: var(--color-text-muted); text-decoration: none; }
.breadcrumbs a:hover { color: var(--color-secondary); }
.breadcrumbs span { color: var(--color-text); }

/* Timeline */
.timeline {
  position: relative;
  padding-left: var(--space-xl);
  border-left: 2px solid var(--color-border);
}
.timeline-item {
  position: relative;
  margin-bottom: var(--space-lg);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-xl) - 5px);
  top: 0.4em;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
}
.timeline-item h4 { margin: 0 0 var(--space-xs); font-size: 1rem; }
.timeline-item p { margin: 0; font-size: 0.9375rem; color: var(--color-text-muted); }

/* Footer */
.site-footer {
  background: var(--color-bg-card);
  border-top: 1px solid var(--color-border);
  padding: var(--space-xl) 0 var(--space-lg);
  margin-top: var(--space-2xl);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.9375rem;
}
.footer-nav a:hover { color: var(--color-secondary); }
.footer-copy { color: var(--color-text-muted); font-size: 0.875rem; }

/* Provider logos */
.provider-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: center;
  padding: var(--space-lg) 0;
}
.provider-strip img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1);
}

/* Cookie notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-elevated);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-lg);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cookie-notice.hidden { display: none; }
.cookie-notice p { margin: 0; font-size: 0.875rem; color: var(--color-text-muted); }
.cookie-notice a { color: var(--color-secondary); }
.cookie-notice .btn-accept {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.875rem;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 80px;
  right: var(--space-lg);
  z-index: 90;
}
@media (max-width: 768px) {
  .sticky-cta { bottom: 70px; right: var(--space-md); }
}

/* 404 */
.page-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-2xl);
}
.page-404 h1 { font-size: 4rem; margin: 0; color: var(--color-text-muted); }
.page-404 p { margin: var(--space-md) 0; }

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-xl { margin-top: var(--space-xl); }


/* ===== One-page minimal header + hero (mobile-first fixes) ===== */
.site-header--minimal {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(15, 20, 25, 0.65);
  border-bottom: 1px solid var(--color-border);
}
.header-inner--minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md) 0;
}
.nav-toggle, .nav-menu { display: none !important; }

/* Hero */
.hero--minimal {
  padding: var(--space-2xl) var(--space-md);
  min-height: 520px;
}
.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.hero-card {
  background: rgba(26, 34, 40, 0.78);
  border: 1px solid rgba(61, 74, 90, 0.7);
  border-radius: 22px;
  padding: clamp(16px, 3vw, 28px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.45);
  text-align: left;
}
.hero-top {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.hero-actions {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}
.hero-cta { margin: 0; color: var(--color-text); }
.hero-cta .muted { display: inline-block; margin-left: .35rem; }
.hero-lead { max-width: 72ch; margin: 0 0 var(--space-md); }
.hero-jumps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: var(--space-md);
}
.hero-jumps a {
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(61, 74, 90, 0.7);
  background: rgba(35, 45, 54, 0.6);
  color: var(--color-text);
  text-decoration: none;
}
.hero-jumps a:hover { background: rgba(35, 45, 54, 0.9); }

/* Buttons (unified) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(61, 74, 90, 0.7);
  text-decoration: none;
  font-weight: 700;
  color: var(--color-text-light);
  background: rgba(35, 45, 54, 0.7);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.btn:hover { transform: translateY(-1px); background: rgba(35, 45, 54, 0.95); }
.btn:active { transform: translateY(0px); }

.btn--primary {
  background: var(--color-primary);
  border-color: rgba(255,255,255,0.08);
}
.btn--primary:hover { background: var(--color-primary-hover); }

.btn--cta {
  background: var(--color-secondary);
  color: #151515;
  border-color: rgba(0,0,0,0.1);
}
.btn--cta:hover { background: var(--color-secondary-hover); }

.btn--ghost {
  background: rgba(0,0,0,0.15);
}

.btn--small {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.95rem;
}

/* Typography helpers */
.section-intro { color: var(--color-text-muted); max-width: 80ch; }
.muted { color: var(--color-text-muted); }

/* Layout helpers */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}
.section--alt { background: rgba(255,255,255,0.02); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }

.list { margin: 0; padding-left: 18px; color: var(--color-text); }
.list li { margin: 8px 0; color: var(--color-text-muted); }
.list li strong { color: var(--color-text); }

.note, .example, .callout {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: 16px;
  border: 1px solid rgba(61, 74, 90, 0.7);
  background: rgba(35, 45, 54, 0.55);
}
.callout h3 { margin-top: 0; }

/* Games grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.game-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(61, 74, 90, 0.7);
  background: rgba(26, 34, 40, 0.9);
}
.game-card img { width: 100%; height: auto; display: block; }
.game-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 12px 14px;
}
.game-meta h4 { margin: 0; font-size: 1rem; color: var(--color-text-light); }

/* Table */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 18px; border: 1px solid rgba(61, 74, 90, 0.7); }
.table { width: 100%; border-collapse: collapse; background: rgba(26, 34, 40, 0.9); }
.table th, .table td { padding: 14px; text-align: left; border-bottom: 1px solid rgba(61, 74, 90, 0.45); }
.table th { color: var(--color-text-light); background: rgba(35, 45, 54, 0.7); }
.table td { color: var(--color-text-muted); }

/* FAQ */
.faq details {
  border: 1px solid rgba(61, 74, 90, 0.7);
  border-radius: 16px;
  background: rgba(26, 34, 40, 0.8);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 800;
  color: var(--color-text-light);
  list-style: none;
}
.faq summary::-webkit-details-marker { display:none; }
.faq-body { padding: 0 16px 16px; color: var(--color-text-muted); }
.fineprint { margin-top: var(--space-lg); color: var(--color-text-muted); font-size: 0.95rem; }

/* Footer */
.site-footer { padding: var(--space-2xl) 0 var(--space-lg); border-top: 1px solid var(--color-border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
.footer-links { list-style: none; padding-left: 0; margin: 0; }
.footer-links li { margin: 10px 0; }
.footer-links a { color: var(--color-text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--color-text-light); }
.footer-bottom { margin-top: var(--space-xl); border-top: 1px solid var(--color-border); padding-top: var(--space-md); color: var(--color-text-muted); }

/* Mobile fixes */
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .hero--minimal { min-height: 560px; }
  .hero-card { border-radius: 18px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .btn { width: 100%; }
  .hero-jumps a { flex: 1 1 auto; text-align: center; }
  .game-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
}

/* Wider screens */
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1.2fr 1fr 1fr; }
  .game-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
/* ===== Sticky Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0e0e12;
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
}

/* Header layout */
.header-inner--minimal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.site-logo {
  padding-left: 12px;
}

.btn--header-cta {
  background: linear-gradient(135deg, #ff8a00, #ff5c00);
  color: #fff;
  padding: 6px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,138,0,0.35);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  margin-left: 12px;
}

.btn--header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255,138,0,0.45);
  filter: brightness(1.05);
}

@media (max-width: 640px) {
  .site-logo {
    padding-right: 10px;
  }

  .btn--header-cta {
    width: 33vw;
    max-width: 33vw;
    padding: 6px 0;
    font-size: 0.75rem;
    text-align: center;
    margin-left: 8px;
    margin-right: 8px;
  }
}

.game-card .btn--small {
  background: #e5e7eb;
  border-color: #d1d5db;
  color: #111827;
  box-shadow: none;
  width: 110px;
  height: 36px;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease, color .2s ease;
}

.game-card .btn--small:hover {
  background: #e5e7eb;
  border-color: #d1d5db;
  color: #111827;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

.site-footer .btn--small {
  background: linear-gradient(135deg, #ff8a00, #ff5c00);
  border-color: #ff8a00;
  color: #ffffff;
  box-shadow: 0 6px 18px rgba(255,138,0,0.45);
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease, color .2s ease;
}

.site-footer .btn--small:hover {
  background: linear-gradient(135deg, #ff8a00, #ff5c00);
  border-color: #ff8a00;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(255,138,0,0.55);
  transform: translateY(-1px);
}
.faq details {
  border: 1px solid rgba(61, 74, 90, 0.7);
  border-radius: 16px;
  background: rgba(26, 34, 40, 0.8);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq summary {
  cursor: pointer;
  padding: 16px 16px;
  font-weight: 800;
  color: var(--color-text-light);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(35, 45, 54, 0.7);
  border: 1px solid rgba(61, 74, 90, 0.7);
  color: var(--color-text-light);
  font-size: 1.15rem;
  line-height: 1;
  flex: 0 0 34px;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.faq details[open] summary::after {
  content: "×";
  transform: rotate(0deg);
  background: rgba(232, 168, 56, 0.12);
  border-color: rgba(232, 168, 56, 0.55);
}

.faq details[open] summary {
  color: var(--color-secondary);
}

.faq-body {
  padding: 0 16px 16px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.faq-body p {
  margin: 0;
}
.monro-facts-short {
  margin-top: 14px;
}

.monro-facts-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: var(--color-text-light);
}

.monro-facts-table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(61, 74, 90, 0.6);
  background: rgba(45, 56, 66, 0.65);
}

.monro-facts-table {
  width: 100%;
  border-collapse: collapse;
}

.monro-facts-table td {
  padding: 12px 14px;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(61, 74, 90, 0.4);
}

.monro-facts-table tr:last-child td {
  border-bottom: 0;
}

.monro-facts-table td:first-child {
  width: 38%;
  font-weight: 700;
  color: var(--color-text-light);
}

.monro-facts-table td:last-child {
  color: var(--color-text);
}

@media (max-width: 640px) {
  .monro-facts-table,
  .monro-facts-table tbody,
  .monro-facts-table tr,
  .monro-facts-table td {
    display: block;
    width: 100%;
  }

  .monro-facts-table tr {
    padding: 10px 14px;
    border-bottom: 1px solid rgba(61, 74, 90, 0.4);
  }

  .monro-facts-table td {
    padding: 6px 0;
    border: 0;
  }

  .monro-facts-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-text-muted);
    margin-bottom: 2px;
  }
}
.post-facts-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.post-facts-cta img {
  max-width: 100%;
  width: 260px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.btn--big-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 420px;
  height: 56px;
  background: #ff7a00;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn--big-cta:hover {
  background: #ff8f1f;
  transform: translateY(-1px);
}

@media (min-width: 768px) {
  .post-facts-cta {
    margin-top: 3rem;
  }

  .post-facts-cta img {
    width: 300px;
  }

  .btn--big-cta {
    height: 60px;
    font-size: 1.1rem;
  }
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 18px;
}

.bonus-card {
  background: rgba(26, 34, 40, 0.85);
  border: 1px solid rgba(61, 74, 90, 0.7);
  border-radius: 18px;
  padding: 18px;
}

.bonus-text {
  margin-top: 6px;
  color: var(--color-text);
}

.bonus-list {
  margin-top: 12px;
  padding-left: 1.25rem;
}

.bonus-list li {
  margin: 0.55rem 0;
}

.bonus-practice-card {
  margin-top: 22px;
  padding: 18px 18px;
  background: rgba(45, 56, 66, 0.55);
  border: 1px solid rgba(61, 74, 90, 0.6);
  border-radius: 18px;
}

.bonus-practice-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--color-text-light);
}

.bonus-practice-card p {
  margin: 0 0 10px;
  line-height: 1.65;
  color: var(--color-text);
}

.bonus-practice-card p:last-child {
  margin-bottom: 0;
}

@media (min-width: 900px) {
  .bonus-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .bonus-card {
    padding: 20px;
  }

  .bonus-practice-card {
    padding: 22px 24px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
  }
}
.spiele-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spiele-visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(61, 74, 90, 0.6);
  background: rgba(45, 56, 66, 0.35);
}

.spiele-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.wide-cta {
  margin-top: 26px;
  border-radius: 20px;
  background: rgba(26, 34, 40, 0.9);
  border: 1px solid rgba(61, 74, 90, 0.7);
  overflow: hidden;
}

.wide-cta__inner {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

.wide-cta__title {
  margin: 0 0 6px;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--color-text-light);
}

.wide-cta__desc {
  margin: 0;
  color: var(--color-text);
  line-height: 1.6;
}

.wide-cta__btn {
  height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  background: #ff7a00;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wide-cta__btn:hover {
  background: #ff8f1f;
}

@media (min-width: 900px) {
  .spiele-side {
    gap: 16px;
  }

  .wide-cta__inner {
    padding: 22px 24px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
  }

  .wide-cta__btn {
    min-width: 220px;
    height: 56px;
  }
}
.spiele-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 18px;
}

.spiele-card {
  background: rgba(26, 34, 40, 0.85);
  border: 1px solid rgba(61, 74, 90, 0.7);
  border-radius: 18px;
  padding: 18px;
}

@media (min-width: 900px) {
  .spiele-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .spiele-card {
    padding: 22px 24px;
  }
}

/* CTA */
.wide-cta {
  margin-top: 28px;
  border-radius: 22px;
  background: rgba(20, 28, 34, 0.95);
  border: 1px solid rgba(61, 74, 90, 0.8);
}

.wide-cta__inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 900px) {
  .wide-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
  }
}

.wide-cta__btn {
  background: #ff7a00;
  color: #fff;
  font-weight: 800;
  border-radius: 16px;
  height: 56px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.wide-cta__btn:hover {
  background: #ff8f1f;
}
.register-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 22px;
}

.register-card {
  background: rgba(26, 34, 40, 0.92);
  border: 1px solid rgba(61, 74, 90, 0.7);
  border-radius: 20px;
  padding: 18px;
  text-align: center;
}

.register-card img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 14px;
  border-radius: 14px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.35);
}

.register-step {
  margin: 10px 0 6px;
  font-size: 1.1rem;
  font-weight: 800;
}

.register-cta {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.btn--large {
  height: 60px;
  padding: 0 36px;
  font-size: 1.05rem;
  border-radius: 18px;
}

@media (min-width: 900px) {
  .register-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .register-card {
    padding: 22px 26px;
  }
}
.sicherheit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 22px;
}

.sicherheit-image {
  display: flex;
  justify-content: center;
}

.sicherheit-image img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (min-width: 900px) {
  .sicherheit-grid {
    grid-template-columns: 340px 1fr;
    align-items: start;
  }

  .sicherheit-image {
    justify-content: flex-start;
  }
}
.support-box {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.support-box img {
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}
.card-grid--numbered {
  counter-reset: cardnum;
}

.card--numbered {
  position: relative;
  padding-top: 44px;
}

.card--numbered .card-num {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 800;
  line-height: 1;
}

.card--media .card-media {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 6px 0 14px;
  display: block;
}

@media (min-width: 980px) {
  .card--numbered {
    padding-top: 52px;
  }

  .card--numbered .card-num {
    top: 16px;
    left: 16px;
    width: 36px;
    height: 36px;
  }
}
.footer-lang {
  margin-top: 24px;
  text-align: center;
}
.lang-switch {
  font-size: 14px;
}
.lang-label {
  margin-right: 6px;
  opacity: 0.7;
}
.footer-lang {
  margin-top: 24px;
  text-align: center;
}

.site-footer,
.site-footer a,
.site-footer a:visited,
.site-footer a:active,
.site-footer a:focus,
.footer-lang,
.footer-lang a,
.footer-lang a:visited,
.footer-lang a:active,
.footer-lang a:focus,
.lang-switch span {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover,
.footer-lang a:hover {
  color: #eaeaea;
  text-decoration: underline;
}

a,
a:visited {
  color: inherit;
  text-decoration: none;
}

.site-footer,
.site-footer a,
.site-footer a:visited,
.site-footer a:active,
.site-footer a:focus,
.footer-lang,
.footer-lang a,
.footer-lang a:visited,
.footer-lang a:active,
.footer-lang a:focus,
.lang-switch span {
  color: #ffffff;
}

.site-footer a:hover,
.footer-lang a:hover {
  color: #eaeaea;
  text-decoration: underline;
}
