/* =========================================================
   ORANGE SIGNAL – Editorial Bonus Lab Design System
   Domain: orangemorange-bonus.com
   ========================================================= */

:root {
  --paper: #F5F0E7;
  --paper-light: #FFFDF8;
  --ink: #171518;
  --ink-soft: #565158;
  --orange: #FF5A1F;
  --orange-dark: #D93D0B;
  --cobalt: #4055E8;
  --acid: #D9FF63;
  --line: #D8D0C4;
  --warning: #8B2F20;
  --container-max: 1180px;
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --header-height: 68px;
}

/* Base Reset & Box Sizing */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--paper);
  background-image: 
    linear-gradient(to right, rgba(216, 208, 196, 0.25) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(216, 208, 196, 0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  overflow-x: hidden;
  position: relative;
}

img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--cobalt);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover, a:focus-visible {
  color: var(--orange);
}

/* Accessibility Skip Link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ink);
  color: var(--paper-light);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(1.85rem, 3.8vw, 3rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  margin-bottom: 1.25rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--ink);
  position: relative;
  padding-left: 1rem;
  display: block;
}
h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  bottom: 0.35em;
  width: 6px;
  background-color: var(--orange);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

p {
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  color: var(--ink);
  line-height: 1.65;
}

strong {
  font-weight: 700;
  color: var(--ink);
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/* Sticky Header */
.site-header {
  position: sticky;
  top: 0;
  height: var(--header-height);
  background-color: rgba(245, 240, 231, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.brand-mark {
  background: var(--ink);
  color: var(--paper-light);
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1;
  padding: 0.4rem 0.6rem;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 4px solid var(--orange);
}

.brand-mark span:first-child {
  color: var(--orange);
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--acid);
  color: var(--ink);
  padding: 0.2rem 0.45rem;
  border: 1px solid var(--ink);
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 0.4rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink);
  padding: 0.35rem 0.55rem;
  border-radius: 3px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.nav-link:hover, .nav-link:focus-visible {
  color: var(--orange);
  background: rgba(255, 90, 31, 0.08);
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.age-badge {
  background: var(--ink);
  color: var(--acid);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  border: 1px solid var(--ink);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: var(--ink);
  color: var(--acid);
  border: 1px solid var(--ink);
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  cursor: pointer;
  border-radius: 3px;
  align-items: center;
  gap: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--paper-light);
    border-bottom: 3px solid var(--orange);
    padding: 1rem 1.25rem 1.5rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    z-index: 9999;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    list-style: none;
    gap: 0.45rem;
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    text-decoration: none;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--orange);
    border-radius: 4px;
    transition: all 0.15s ease;
  }

  .nav-link:hover, .nav-link:focus-visible, .nav-link:active {
    background: var(--ink);
    color: var(--acid);
    border-left-color: var(--acid);
    text-decoration: none;
  }

  .nav-link::after {
    content: "❯";
    font-size: 0.85rem;
    opacity: 0.7;
  }
}

/* Main Container & Sections */
main {
  flex: 1;
  padding-bottom: 4rem;
}

section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--line);
  position: relative;
}

section:nth-child(even) {
  background-color: var(--paper-light);
}

/* Hero / Intro Layout */
#intro {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: var(--paper-light);
}
#intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 12, 17, 0.9) 0%, rgba(23, 21, 24, 0.75) 100%);
  z-index: 0;
}
#intro > .container {
  position: relative;
  z-index: 1;
}
#intro h1 {
  color: #FFFFFF;
}
#intro p {
  color: rgba(255,255,255,0.88);
}
#intro .lab-marker {
  background: var(--orange);
  color: #FFFFFF;
}
#intro .status-badge {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
}
#intro .status-badge time {
  color: var(--acid);
}
#intro .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.5);
  box-shadow: 3px 3px 0px rgba(255,255,255,0.15);
}
#intro .btn-secondary:hover, #intro .btn-secondary:focus-visible {
  background-color: rgba(255,255,255,0.1);
  color: var(--acid);
  border-color: var(--acid);
  box-shadow: 5px 5px 0px rgba(255,255,255,0.2);
}

.hero-content-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
}

.hero-text-col {
  flex: 1;
  max-width: 680px;
}

.hero-portrait-col {
  flex-shrink: 0;
}

.hero-portrait-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid var(--orange);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 6px 6px 0px var(--orange);
  padding: 1.25rem;
  border-radius: 12px;
}

.hero-portrait-card img {
  width: 210px;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  border: 2px solid var(--ink);
  margin-bottom: 0.85rem;
}

.portrait-info {
  font-size: 0.9rem;
  line-height: 1.3;
  color: rgba(255,255,255,0.9);
}
.portrait-info strong {
  display: block;
  font-size: 1.15rem;
  color: #FFFFFF;
}
.portrait-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--acid);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.2rem;
}

@media (max-width: 900px) {
  .hero-content-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.75rem;
  }
  .hero-portrait-col {
    align-self: center;
  }
  .hero-text-col {
    max-width: 100%;
  }
}

/* 18+ Bottom Bar */
.hero-warning-bar {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: rgba(139, 47, 32, 0.2);
  border-left: 4px solid var(--warning);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-right: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  font-size: 0.9rem;
}
.hero-warning-bar p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.hero-warning-bar strong {
  color: #FFFFFF;
}

/* Tables & Scroll Wrappers */
.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--line);
  background-color: var(--paper-light);
  -webkit-overflow-scrolling: touch;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

caption {
  caption-side: top;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  text-align: left;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--acid);
}

th, td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
th:last-child, td:last-child {
  border-right: none;
}

th {
  background-color: var(--paper);
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

tr:nth-child(even) td {
  background-color: rgba(245, 240, 231, 0.4);
}

/* Section specific tags */
.tag-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.lab-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--cobalt);
  color: #FFFFFF;
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}

/* Bonuspakete Case Files */
.case-file {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 1.75rem;
  margin-top: 2rem;
  position: relative;
  box-shadow: 5px 5px 0px var(--line);
}
.case-file-num {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--line);
  font-family: monospace;
}
.side-note {
  background: var(--paper);
  border-left: 4px solid var(--orange);
  padding: 1rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
}

/* Bonus-Check Prüflabor Grid */
.prueflabor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.pruef-card {
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-top: 4px solid var(--cobalt);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pruef-icon-shape {
  width: 28px;
  height: 28px;
  border: 2px solid var(--cobalt);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  color: var(--cobalt);
}

/* Bonus-Aktivieren Timeline */
.timeline {
  list-style: none;
  margin-top: 2rem;
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--orange);
}

.timeline li {
  position: relative;
  margin-bottom: 2.25rem;
}
.timeline li:last-child {
  margin-bottom: 0;
}

.timeline-step {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--ink);
  color: var(--acid);
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid var(--paper-light);
  box-shadow: 0 0 0 2px var(--ink);
}

/* Bonus-Auswaehlen Subsections 2x2 Grid */
.matrix-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.matrix-card {
  background: var(--paper-light);
  border: 1px solid var(--line);
  padding: 1.5rem;
  border-left: 4px solid var(--ink);
}

/* Streams Storyboard */
.storyboard-layout {
  display: grid;
  grid-template-columns: 320px 1fr 440px;
  gap: 1.75rem;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.storyboard-frame {
  border: 2px solid var(--ink);
  background: var(--ink);
  position: relative;
  box-shadow: 4px 4px 0px var(--line);
}
.storyboard-caption {
  font-size: 0.8rem;
  background: var(--ink);
  color: var(--paper-light);
  padding: 0.4rem 0.75rem;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* Bonusarten List */
.bonusarten-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.75rem;
}

.bonusart-item {
  background: var(--paper-light);
  border: 1px solid var(--line);
  padding: 1.5rem;
  position: relative;
  border-left: 6px solid var(--orange);
}

/* Bedingungen-Pruefen Inspection List */
.inspection-dl {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem 1.5rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.inspection-dl dt {
  font-weight: 800;
  background: var(--paper);
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-left: 4px solid var(--cobalt);
  display: flex;
  align-items: center;
}

.inspection-dl dd {
  padding: 0.75rem 1rem;
  background: var(--paper-light);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
}

/* Methodology 3-Step Diagram */
.method-diagram {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.method-step {
  background: var(--ink);
  color: var(--paper-light);
  padding: 1.25rem;
  text-align: center;
  position: relative;
  border: 1px solid var(--ink);
}
.method-step-num {
  color: var(--acid);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.4rem;
}
.method-step-title {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

/* Native FAQ Details / Summary */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

details {
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-left: 4px solid var(--ink);
  transition: border-color 0.2s ease;
}

details[open] {
  border-left-color: var(--orange);
}

summary {
  font-weight: 800;
  font-size: 1.1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

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

summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange);
  transition: transform 0.2s ease;
}

details[open] summary::after {
  content: "−";
  color: var(--ink);
}

summary:focus-visible {
  outline: 2px solid var(--cobalt);
  outline-offset: -2px;
}

details p {
  padding: 0 1.5rem 1.25rem 1.5rem;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background-color: var(--ink);
  color: var(--paper);
  padding-top: 3.5rem;
  padding-bottom: 2.5rem;
  border-top: 4px solid var(--orange);
  font-size: 0.9rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--line);
  font-size: 0.9rem;
}

.footer-responsible {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--orange);
  padding: 1.25rem;
  border-radius: 6px;
  position: relative;
}

.footer-responsible h4 {
  color: #FFFFFF;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-responsible p {
  color: var(--line);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}

.footer-age-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--warning);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 900;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  border: 1px solid var(--ink);
}

.helpline-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(217, 255, 99, 0.4);
  padding: 0.75rem 1rem;
  border-radius: 4px;
  font-size: 0.88rem;
  color: var(--paper-light);
}

.footer-links h4 {
  color: var(--acid);
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
  margin: 0;
}

.footer-nav-list a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover, .footer-nav-list a:focus-visible {
  color: var(--acid);
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #332f36;
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--line);
}

/* Muster Alert Box for Legal Pages */
.muster-alert {
  background-color: #FFF3CD;
  border: 2px solid #856404;
  color: #856404;
  padding: 1.25rem;
  margin-bottom: 2rem;
  border-radius: 4px;
}
.muster-alert strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: #856404;
}

/* Contact Form Layout */
.contact-form-dummy {
  background: var(--paper-light);
  border: 1px solid var(--line);
  padding: 2rem;
  margin-top: 1.5rem;
  max-width: 600px;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
}
.form-status-notice {
  font-size: 0.85rem;
  color: var(--warning);
  font-weight: 700;
  margin-top: 0.5rem;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .storyboard-layout {
    grid-template-columns: 1fr;
  }
  .inspection-dl {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .matrix-grid {
    grid-template-columns: 1fr;
  }
  .method-diagram {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
  }
}

/* Accessibility Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   OFFERS GRID DESIGN SYSTEM (Integrated Editorial Style)
   ========================================================= */

.offers-grid-section {
  background-color: var(--paper-light);
  padding: 4rem 0;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--ink);
  color: var(--ink);
}

.offers-grid-header {
  text-align: center;
  margin-bottom: 3rem;
}

.offers-grid-header h2 {
  color: var(--ink);
  border-bottom: none;
  justify-content: center;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.offers-grid-header h2::before {
  background-color: var(--orange);
}

.offers-grid-header p {
  color: var(--ink-soft);
  max-width: 720px;
  margin: 0.75rem auto 0 auto;
  font-size: 1.1rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offer-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  border-top: 4px solid var(--orange);
  padding: 1.5rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 5px 5px 0px var(--line);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.offer-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 6px 6px 0px var(--orange);
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--ink);
  color: var(--acid);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  background: var(--ink);
}

.card-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  background: var(--ink);
  border: 1px solid var(--line);
}

.card-logo-wrap img, .card-logo-wrap svg {
  max-height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.card-gift-label {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.card-bonus-title {
  color: var(--orange);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.card-bonus-pill {
  display: inline-block;
  padding: 0.35rem 0.95rem;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-weight: 800;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: transparent;
}

.card-meta-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.82rem;
  margin-bottom: 1.25rem;
  width: 100%;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--line);
}

.card-rating {
  color: var(--ink);
  font-weight: 800;
}

.card-speed {
  color: var(--ink);
  font-weight: 700;
}

.card-cta-btn {
  width: 100%;
  background-color: var(--orange);
  color: #FFFFFF !important;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 0.85rem 1.5rem;
  text-decoration: none !important;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  cursor: pointer;
  min-height: 44px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.card-cta-btn:hover, .card-cta-btn:focus-visible {
  background-color: var(--orange-dark);
  color: #FFFFFF !important;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--ink);
}

.card-details-toggle {
  width: 100%;
  margin-top: 1rem;
  background: transparent;
  border: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.4rem 0;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.card-details-toggle:hover {
  color: var(--orange);
}

.card-details-content {
  display: none;
  width: 100%;
  text-align: left;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.section-subheading {
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.deposit-steps-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink);
}

.deposit-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  line-height: 1.4;
}

.deposit-steps-list li strong {
  color: var(--orange);
}

.deposit-steps-list li span.star {
  color: var(--orange);
  font-size: 0.85rem;
}

.terms-table {
  width: 100%;
  background: var(--paper);
  padding: 0.75rem 0.9rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink);
}

.terms-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.terms-row:last-child {
  border-bottom: none;
}

.terms-row span:last-child {
  color: var(--ink);
  font-weight: 800;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
}

.payment-badge {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 0.3rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--ink);
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-size: 0.85rem;
}

.why-list li span.check {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.95rem;
}

/* Responsive Offers Grid */
@media (max-width: 900px) {
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   COMPONENTS FOR 2026 ENHANCEMENTS & SUBPAGES
   ========================================================= */

/* Quick Anchor Navigation */
.quick-anchor-nav {
  background: var(--paper-light);
  border-top: 1px solid var(--line);
  border-bottom: 2px solid var(--ink);
  padding: 0.75rem 0;
  position: relative;
}

.quick-nav-scroll {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.quick-nav-link {
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.7rem;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--line);
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.15s ease;
  display: inline-flex;
  align-items: center;
}

.quick-nav-link:hover, .quick-nav-link:focus-visible {
  background: var(--ink);
  color: var(--acid);
  border-color: var(--ink);
  text-decoration: none;
}

/* Breadcrumbs - Fully Adaptive */
.breadcrumbs {
  padding: 0.85rem 0;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--ink-soft);
  width: 100%;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  line-height: 1.4;
}

.breadcrumbs li:not(:last-child)::after {
  content: "›";
  color: var(--orange);
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.breadcrumbs a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s ease;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.03);
}

.breadcrumbs a:hover, .breadcrumbs a:focus-visible {
  color: var(--orange);
  background: rgba(255, 90, 31, 0.1);
  text-decoration: none;
}

.breadcrumbs li[aria-current="page"] {
  color: var(--orange-dark);
  font-weight: 700;
  padding: 0.2rem 0.4rem;
}

@media (max-width: 640px) {
  .breadcrumbs {
    padding: 0.6rem 0;
    margin-bottom: 1rem;
  }

  .breadcrumbs ol {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .breadcrumbs ol::-webkit-scrollbar {
    display: none;
  }

  .breadcrumbs li {
    flex-shrink: 0;
  }

  .breadcrumbs li[aria-current="page"] {
    max-width: 220px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

/* Status Badges & Pill Tags */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: 2px;
}

.status-pill.status-confirmed {
  background: #E6F4EA;
  color: #137333;
  border: 1px solid #CEEAD6;
}

.status-pill.status-editorial {
  background: #E8F0FE;
  color: #1967D2;
  border: 1px solid #D2E3FC;
}

.status-pill.status-unconfirmed {
  background: #FEF7E0;
  color: #B06000;
  border: 1px solid #FEEFC3;
}

.status-pill.status-active {
  background: var(--ink);
  color: var(--acid);
}

.status-pill.status-warning {
  background: #FCE8E6;
  color: #C5221F;
  border: 1px solid #FAD2CF;
}

.card-streamer-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: rgba(23, 21, 24, 0.05);
  border: 1px solid var(--line);
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.6rem;
  width: 100%;
}

.card-de-status {
  font-size: 0.72rem;
  font-weight: 700;
  color: #137333;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

/* Wager Interactive Calculator */
.wager-calculator {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  padding: 2rem;
  box-shadow: 6px 6px 0px var(--line);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: flex-start;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.calc-field label {
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink);
}

.calc-field input, .calc-field select {
  padding: 0.75rem 1rem;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--ink);
}

.calc-field input:focus, .calc-field select:focus {
  outline: none;
  border-color: var(--orange);
  background: #FFF;
}

.calc-results {
  background: var(--ink);
  color: var(--paper-light);
  padding: 1.5rem;
  border-radius: 4px;
  border-left: 6px solid var(--orange);
}

.calc-results h3 {
  color: var(--acid);
  font-size: 1.15rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.95rem;
}

.calc-result-row:last-child {
  border-bottom: none;
}

.calc-result-row strong {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.calc-result-row .highlight-num {
  color: var(--acid);
  font-size: 1.35rem;
  font-weight: 900;
}

.calc-note {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Fact Tables & Profile Info */
.fact-table-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0px var(--line);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  overflow: hidden;
}

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

.fact-table th {
  width: 32%;
  background: var(--paper);
  font-weight: 800;
  color: var(--ink);
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 0.9rem;
}

.fact-table td {
  padding: 0.85rem 1.25rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.fact-table tr:last-child th, .fact-table tr:last-child td {
  border-bottom: none;
}

/* Changelog List */
.changelog-box {
  background: var(--paper-light);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cobalt);
  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.changelog-box h3 {
  margin-top: 0;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.changelog-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.changelog-item {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.changelog-date {
  font-weight: 800;
  color: var(--cobalt);
  font-family: monospace;
  white-space: nowrap;
}

/* Slot & Game Grid */
.slots-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.slot-card {
  background: var(--paper-light);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0px var(--line);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.slot-header {
  border-bottom: 2px solid var(--orange);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}

.slot-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--ink);
}

.slot-provider {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--orange-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.slot-stats {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.slot-stat-row {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px dashed var(--line);
}

.slot-stat-row span:first-child {
  color: var(--ink-soft);
}

.slot-stat-row span:last-child {
  font-weight: 700;
  color: var(--ink);
}

.slot-proof-box {
  background: var(--paper);
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem;
  border: 1px solid var(--line);
  margin-top: auto;
}

.slot-proof-box strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--cobalt);
}

/* Rating Methodology Score Meter */
.rating-method-table {
  width: 100%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.rating-weight-bar {
  display: block;
  height: 8px;
  background: var(--line);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 0.3rem;
}

.rating-weight-fill {
  height: 100%;
  background: var(--orange);
}

