/* ======================================================
   CSGORoll Promo Code — lihattv.com
   Complete Stylesheet
   ====================================================== */

/* --- CUSTOM PROPERTIES --- */
:root {
  --roll-bg-main: #0d1117;
  --roll-bg-raised: #111827;
  --roll-bg-card: #151f2e;
  --roll-bg-deep: #090d13;
  --roll-border-card: #2f3f56;
  --roll-border-nav: #243044;
  --roll-accent: #ffb800;
  --roll-accent-secondary: #ff8a00;
  --roll-accent-gradient: linear-gradient(135deg, #ffb800, #ff8a00);
  --roll-text-heading: #f8fafc;
  --roll-text-body: #cbd5e1;
  --roll-text-muted: #94a3b8;
  --roll-text-dark: #0d1117;
  --roll-success: #22c55e;
  --roll-radius: 10px;
  --roll-radius-sm: 6px;
  --roll-radius-lg: 12px;
  --roll-space-xs: 4px;
  --roll-space-sm: 8px;
  --roll-space-md: 16px;
  --roll-space-lg: 24px;
  --roll-space-xl: 32px;
  --roll-space-2xl: 48px;
  --roll-space-3xl: 64px;
  --roll-space-4xl: 96px;
  --roll-font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --roll-font-heading: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --roll-font-mono: 'JetBrains Mono', 'SF Mono', 'Cascadia Code', 'Consolas', 'Liberation Mono', monospace;
  --roll-header-height: 64px;
  --roll-max-width: 1120px;
  --roll-glow-cta: 0 8px 28px rgba(255, 184, 0, 0.35);
  --roll-glow-subtle: 0 0 60px rgba(255, 184, 0, 0.06);
  --roll-transition: 0.25s ease;
}

/* --- RESET --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--roll-header-height) + 24px);
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--roll-font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--roll-text-body);
  background-color: var(--roll-bg-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--roll-accent);
  text-decoration: none;
  transition: color var(--roll-transition);
}

a:hover {
  color: var(--roll-accent-secondary);
}

a:focus-visible,
button:focus-visible,
details summary:focus-visible {
  outline: 2px solid var(--roll-accent);
  outline-offset: 3px;
  border-radius: 3px;
}

ul, ol {
  list-style: none;
}

code {
  font-family: var(--roll-font-mono);
  font-size: 0.95em;
  color: var(--roll-accent);
  background: var(--roll-bg-deep);
  padding: 2px 6px;
  border-radius: var(--roll-radius-sm);
}

/* --- UTILITY --- */
.roll-sr-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- HEADER --- */
.roll-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--roll-header-height);
  background: rgba(13, 17, 23, 0.85);
  border-bottom: 1px solid transparent;
  transition: background var(--roll-transition), border-color var(--roll-transition), backdrop-filter var(--roll-transition);
}

.roll-header--scrolled {
  background: rgba(13, 17, 23, 0.96);
  border-bottom-color: var(--roll-border-nav);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.roll-header__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
  padding: 0 var(--roll-space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--roll-space-md);
}

.roll-header__logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.roll-header__logo {
  width: 140px;
  height: auto;
}

.roll-header__nav {
  flex: 1;
  display: none;
}

.roll-header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--roll-space-lg);
}

.roll-header__nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--roll-text-muted);
  transition: color var(--roll-transition);
  white-space: nowrap;
  padding: 4px 0;
}

.roll-header__nav-link:hover {
  color: var(--roll-text-heading);
}

.roll-header__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--roll-text-dark);
  background: var(--roll-accent-gradient);
  border: none;
  border-radius: var(--roll-radius);
  white-space: nowrap;
  transition: box-shadow var(--roll-transition), transform var(--roll-transition);
  min-height: 38px;
}

.roll-header__cta:hover {
  color: var(--roll-text-dark);
  box-shadow: var(--roll-glow-cta);
  transform: translateY(-1px);
}

.roll-header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
}

.roll-header__menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--roll-text-body);
  border-radius: 2px;
  transition: transform var(--roll-transition), opacity var(--roll-transition);
}

.roll-header__menu-toggle[aria-expanded="true"] .roll-header__menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.roll-header__menu-toggle[aria-expanded="true"] .roll-header__menu-bar:nth-child(2) {
  opacity: 0;
}

.roll-header__menu-toggle[aria-expanded="true"] .roll-header__menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav open */
.roll-header__nav--open {
  display: block;
  position: absolute;
  top: var(--roll-header-height);
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.98);
  border-bottom: 1px solid var(--roll-border-nav);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: var(--roll-space-md);
}

.roll-header__nav--open .roll-header__nav-list {
  flex-direction: column;
  gap: 0;
}

.roll-header__nav--open .roll-header__nav-link {
  display: block;
  padding: 12px var(--roll-space-md);
  font-size: 1rem;
  border-bottom: 1px solid var(--roll-border-nav);
  width: 100%;
}

.roll-header__nav--open .roll-header__nav-list li:last-child .roll-header__nav-link {
  border-bottom: none;
}

@media (min-width: 900px) {
  .roll-header__nav {
    display: flex;
    align-items: center;
  }
  .roll-header__menu-toggle {
    display: none;
  }
  .roll-header__logo {
    width: 160px;
  }
}

/* --- BUTTONS --- */
.roll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--roll-font-body);
  font-weight: 650;
  border: none;
  border-radius: var(--roll-radius);
  cursor: pointer;
  text-align: center;
  transition: box-shadow var(--roll-transition), transform var(--roll-transition), background var(--roll-transition);
  min-height: 44px;
  padding: 12px 24px;
  font-size: 0.95rem;
  white-space: nowrap;
}

.roll-btn--primary {
  color: var(--roll-text-dark);
  background: var(--roll-accent-gradient);
}

.roll-btn--primary:hover {
  color: var(--roll-text-dark);
  box-shadow: var(--roll-glow-cta);
  transform: translateY(-2px);
}

.roll-btn--secondary {
  color: var(--roll-text-heading);
  background: transparent;
  border: 1px solid var(--roll-border-card);
}

.roll-btn--secondary:hover {
  color: var(--roll-accent);
  border-color: var(--roll-accent);
  background: rgba(255, 184, 0, 0.06);
}

.roll-btn--large {
  padding: 14px 32px;
  font-size: 1rem;
}

/* --- SECTION HEADING --- */
.roll-section-heading {
  font-family: var(--roll-font-heading);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--roll-text-heading);
  margin-bottom: var(--roll-space-md);
  line-height: 1.3;
}

.roll-section-subtext {
  color: var(--roll-text-muted);
  font-size: 0.95rem;
  max-width: 700px;
  margin-bottom: var(--roll-space-xl);
  line-height: 1.7;
}

/* --- HERO --- */
.roll-hero {
  position: relative;
  padding: calc(var(--roll-header-height) + 40px) var(--roll-space-md) var(--roll-space-3xl);
  overflow: hidden;
}

.roll-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(255, 184, 0, 0.07) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(47, 63, 86, 0.12) 40px, rgba(47, 63, 86, 0.12) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(47, 63, 86, 0.12) 40px, rgba(47, 63, 86, 0.12) 41px);
  pointer-events: none;
}

.roll-hero__inner {
  position: relative;
  max-width: var(--roll-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--roll-space-xl);
  align-items: start;
}

.roll-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--roll-accent);
  margin-bottom: var(--roll-space-md);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.roll-hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--roll-success);
  flex-shrink: 0;
}

.roll-hero__heading {
  font-family: var(--roll-font-heading);
  font-weight: 750;
  font-size: clamp(1.6rem, 4.5vw, 2.6rem);
  color: var(--roll-text-heading);
  line-height: 1.18;
  margin-bottom: var(--roll-space-md);
}

.roll-hero__subheading {
  font-size: 1rem;
  color: var(--roll-text-body);
  max-width: 560px;
  margin-bottom: var(--roll-space-md);
  line-height: 1.7;
}

.roll-hero__age-notice {
  font-size: 0.78rem;
  color: var(--roll-text-muted);
  font-weight: 500;
}

/* Hero Widget */
.roll-hero__widget {
  width: 100%;
  max-width: 440px;
}

.roll-hero__widget-logo {
  width: 180px;
  height: auto;
  margin-bottom: var(--roll-space-lg);
}

.roll-hero__widget-card {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius-lg);
  padding: var(--roll-space-lg);
  box-shadow: var(--roll-glow-subtle);
}

.roll-hero__widget-status {
  display: flex;
  align-items: center;
  gap: var(--roll-space-md);
  margin-bottom: var(--roll-space-md);
  flex-wrap: wrap;
}

.roll-hero__verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--roll-success);
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: var(--roll-radius-sm);
}

.roll-hero__checked-date {
  font-size: 0.78rem;
  color: var(--roll-text-muted);
}

.roll-hero__code-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: var(--roll-space-md);
  border-radius: var(--roll-radius);
  overflow: hidden;
  border: 1px solid var(--roll-border-card);
}

.roll-hero__code-field {
  flex: 1;
  background: var(--roll-bg-deep);
  padding: 10px var(--roll-space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roll-hero__code-label {
  font-size: 0.68rem;
  color: var(--roll-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 4px;
}

.roll-hero__code-value {
  font-family: var(--roll-font-mono);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--roll-accent);
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.roll-hero__copy-btn {
  flex-shrink: 0;
  background: var(--roll-accent-gradient);
  color: var(--roll-text-dark);
  font-family: var(--roll-font-body);
  font-weight: 650;
  font-size: 0.85rem;
  border: none;
  padding: 0 20px;
  cursor: pointer;
  min-width: 100px;
  min-height: 44px;
  transition: box-shadow var(--roll-transition);
}

.roll-hero__copy-btn:hover {
  box-shadow: var(--roll-glow-cta);
}

.roll-hero__offer-line {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--roll-text-heading);
  margin-bottom: var(--roll-space-sm);
}

.roll-hero__eligibility-note {
  font-size: 0.8rem;
  color: var(--roll-text-muted);
  margin-bottom: var(--roll-space-lg);
  line-height: 1.6;
}

.roll-hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--roll-space-sm);
}

@media (min-width: 768px) {
  .roll-hero__cta-group {
    flex-direction: row;
  }
  .roll-hero__cta-group .roll-btn {
    flex: 1;
  }
}

@media (min-width: 900px) {
  .roll-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--roll-space-3xl);
    align-items: center;
  }
  .roll-hero {
    padding-top: calc(var(--roll-header-height) + 80px);
    padding-bottom: var(--roll-space-4xl);
  }
  .roll-hero__widget {
    max-width: 460px;
    justify-self: end;
  }
}

/* --- QUICK FACTS --- */
.roll-facts {
  padding: var(--roll-space-3xl) var(--roll-space-md);
  background: var(--roll-bg-raised);
  border-top: 1px solid var(--roll-border-nav);
  border-bottom: 1px solid var(--roll-border-nav);
}

.roll-facts__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-facts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--roll-space-md);
  margin-bottom: var(--roll-space-xl);
}

@media (min-width: 500px) {
  .roll-facts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .roll-facts__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.roll-facts__card {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius);
  padding: var(--roll-space-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--roll-space-sm);
}

.roll-facts__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 184, 0, 0.08);
  border-radius: var(--roll-radius);
}

.roll-facts__card-label {
  font-size: 0.78rem;
  color: var(--roll-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.roll-facts__card-value {
  font-family: var(--roll-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--roll-text-heading);
}

.roll-facts__intro {
  max-width: 800px;
}

.roll-facts__intro p {
  margin-bottom: var(--roll-space-md);
}

.roll-facts__intro p:last-child {
  margin-bottom: 0;
}

/* --- CODE CARDS --- */
.roll-codes {
  padding: var(--roll-space-3xl) var(--roll-space-md);
}

.roll-codes__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-codes__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--roll-space-lg);
  margin-bottom: var(--roll-space-lg);
}

@media (min-width: 700px) {
  .roll-codes__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.roll-code-card {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius-lg);
  padding: var(--roll-space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--roll-space-md);
  transition: border-color var(--roll-transition), box-shadow var(--roll-transition);
}

.roll-code-card:hover {
  border-color: rgba(255, 184, 0, 0.3);
}

.roll-code-card--primary {
  border-color: rgba(255, 184, 0, 0.35);
  box-shadow: 0 0 30px rgba(255, 184, 0, 0.06);
}

.roll-code-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--roll-space-sm);
  flex-wrap: wrap;
}

.roll-code-card__badge {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: var(--roll-radius-sm);
  background: rgba(148, 163, 184, 0.12);
  color: var(--roll-text-muted);
}

.roll-code-card__badge--gold {
  background: rgba(255, 184, 0, 0.15);
  color: var(--roll-accent);
}

.roll-code-card__status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--roll-success);
}

.roll-code-card__body {
  flex: 1;
}

.roll-code-card__field {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--roll-bg-deep);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius);
  overflow: hidden;
  margin-bottom: var(--roll-space-sm);
}

.roll-code-card__code {
  flex: 1;
  font-family: var(--roll-font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--roll-accent);
  padding: 10px var(--roll-space-md);
  letter-spacing: 0.04em;
  background: none;
}

.roll-code-card__copy {
  flex-shrink: 0;
  background: rgba(255, 184, 0, 0.12);
  color: var(--roll-accent);
  font-family: var(--roll-font-body);
  font-weight: 600;
  font-size: 0.8rem;
  border: none;
  border-left: 1px solid var(--roll-border-card);
  padding: 10px 16px;
  cursor: pointer;
  min-height: 44px;
  transition: background var(--roll-transition);
}

.roll-code-card__copy:hover {
  background: rgba(255, 184, 0, 0.2);
}

.roll-code-card__reward {
  font-size: 0.88rem;
  color: var(--roll-text-body);
  line-height: 1.5;
}

.roll-code-card__cta {
  width: 100%;
}

.roll-codes__note {
  font-size: 0.82rem;
  color: var(--roll-text-muted);
  line-height: 1.6;
}

/* --- HOW TO USE --- */
.roll-howto {
  padding: var(--roll-space-3xl) var(--roll-space-md);
  background: var(--roll-bg-raised);
  border-top: 1px solid var(--roll-border-nav);
  border-bottom: 1px solid var(--roll-border-nav);
}

.roll-howto__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-howto__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--roll-space-xl);
}

.roll-howto__step {
  display: flex;
  gap: var(--roll-space-lg);
  padding: var(--roll-space-lg) 0;
  border-bottom: 1px solid var(--roll-border-nav);
  position: relative;
}

.roll-howto__step:last-child {
  border-bottom: none;
}

.roll-howto__step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--roll-font-heading);
  font-weight: 750;
  font-size: 1rem;
  color: var(--roll-text-dark);
  background: var(--roll-accent-gradient);
  border-radius: var(--roll-radius);
}

.roll-howto__step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: calc(var(--roll-space-lg) + 40px + 4px);
  bottom: -4px;
  width: 2px;
  background: var(--roll-border-nav);
}

.roll-howto__step:last-child::before {
  display: none;
}

.roll-howto__step-content {
  flex: 1;
  min-width: 0;
}

.roll-howto__step-title {
  font-family: var(--roll-font-heading);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--roll-text-heading);
  margin-bottom: var(--roll-space-sm);
}

.roll-howto__step-content p {
  font-size: 0.92rem;
  color: var(--roll-text-body);
  line-height: 1.7;
}

.roll-howto__cta-wrap {
  text-align: center;
}

@media (max-width: 499px) {
  .roll-howto__cta-wrap .roll-btn {
    width: 100%;
  }
}

/* --- BONUS BREAKDOWN --- */
.roll-breakdown {
  padding: var(--roll-space-3xl) var(--roll-space-md);
}

.roll-breakdown__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-breakdown__card {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius-lg);
  padding: var(--roll-space-lg);
  margin-bottom: var(--roll-space-xl);
  box-shadow: var(--roll-glow-subtle);
}

.roll-breakdown__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roll-breakdown__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--roll-border-nav);
}

.roll-breakdown__item:last-child {
  border-bottom: none;
}

@media (min-width: 600px) {
  .roll-breakdown__item {
    flex-direction: row;
    gap: var(--roll-space-lg);
    align-items: baseline;
  }
}

.roll-breakdown__term {
  font-size: 0.82rem;
  color: var(--roll-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  min-width: 180px;
  flex-shrink: 0;
}

.roll-breakdown__value {
  font-size: 0.95rem;
  color: var(--roll-text-heading);
  font-weight: 500;
}

.roll-breakdown__note {
  font-size: 0.92rem;
  color: var(--roll-text-body);
  margin-bottom: var(--roll-space-xl);
  max-width: 800px;
  line-height: 1.7;
}

.roll-breakdown__cta-wrap {
  text-align: center;
}

@media (max-width: 499px) {
  .roll-breakdown__cta-wrap .roll-btn {
    width: 100%;
  }
}

/* --- WHAT CODE PROVIDES --- */
.roll-provides {
  padding: var(--roll-space-3xl) var(--roll-space-md);
  background: var(--roll-bg-raised);
  border-top: 1px solid var(--roll-border-nav);
  border-bottom: 1px solid var(--roll-border-nav);
}

.roll-provides__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-provides__text {
  max-width: 800px;
  margin-bottom: var(--roll-space-xl);
}

.roll-provides__text p {
  margin-bottom: var(--roll-space-md);
}

.roll-provides__text p:last-child {
  margin-bottom: 0;
}

.roll-provides__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--roll-space-lg);
}

@media (min-width: 600px) {
  .roll-provides__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.roll-provides__grid-card {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius);
  padding: var(--roll-space-lg);
}

.roll-provides__grid-title {
  font-family: var(--roll-font-heading);
  font-weight: 650;
  font-size: 1.1rem;
  color: var(--roll-accent);
  margin-bottom: var(--roll-space-md);
}

.roll-provides__grid-list {
  display: flex;
  flex-direction: column;
  gap: var(--roll-space-sm);
}

.roll-provides__grid-list li {
  font-size: 0.9rem;
  color: var(--roll-text-body);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.roll-provides__grid-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--roll-accent);
  border-radius: 50%;
}

/* --- ELIGIBILITY --- */
.roll-eligibility {
  padding: var(--roll-space-3xl) var(--roll-space-md);
}

.roll-eligibility__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-eligibility__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--roll-space-lg);
}

@media (min-width: 600px) {
  .roll-eligibility__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.roll-eligibility__card {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius);
  padding: var(--roll-space-lg);
}

.roll-eligibility__card-title {
  display: flex;
  align-items: center;
  gap: var(--roll-space-sm);
  font-family: var(--roll-font-heading);
  font-weight: 650;
  font-size: 1.05rem;
  color: var(--roll-text-heading);
  margin-bottom: var(--roll-space-md);
}

.roll-eligibility__card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* --- TROUBLESHOOTING --- */
.roll-troubleshoot {
  padding: var(--roll-space-3xl) var(--roll-space-md);
  background: var(--roll-bg-raised);
  border-top: 1px solid var(--roll-border-nav);
  border-bottom: 1px solid var(--roll-border-nav);
}

.roll-troubleshoot__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-troubleshoot__list {
  display: flex;
  flex-direction: column;
  gap: var(--roll-space-sm);
}

.roll-troubleshoot__item {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius);
  overflow: hidden;
  transition: border-color var(--roll-transition);
}

.roll-troubleshoot__item[open] {
  border-color: rgba(255, 184, 0, 0.3);
}

.roll-troubleshoot__question {
  display: flex;
  align-items: center;
  gap: var(--roll-space-md);
  padding: var(--roll-space-md) var(--roll-space-lg);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--roll-text-heading);
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  transition: color var(--roll-transition);
}

.roll-troubleshoot__question::-webkit-details-marker {
  display: none;
}

.roll-troubleshoot__question::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--roll-transition);
}

.roll-troubleshoot__item[open] .roll-troubleshoot__question::after {
  transform: rotate(180deg);
}

.roll-troubleshoot__question:hover {
  color: var(--roll-accent);
}

.roll-troubleshoot__answer {
  padding: 0 var(--roll-space-lg) var(--roll-space-lg);
}

.roll-troubleshoot__answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--roll-text-body);
}

/* --- ABOUT --- */
.roll-about {
  padding: var(--roll-space-3xl) var(--roll-space-md);
}

.roll-about__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-about__content {
  max-width: 800px;
}

.roll-about__content p {
  margin-bottom: var(--roll-space-md);
}

.roll-about__content p:last-child {
  margin-bottom: 0;
}

/* --- VERIFICATION --- */
.roll-verification {
  padding: var(--roll-space-3xl) var(--roll-space-md);
  background: var(--roll-bg-raised);
  border-top: 1px solid var(--roll-border-nav);
  border-bottom: 1px solid var(--roll-border-nav);
}

.roll-verification__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-verification__content {
  max-width: 800px;
}

.roll-verification__content p {
  margin-bottom: var(--roll-space-md);
}

.roll-verification__content p:last-child {
  margin-bottom: 0;
}

/* --- FAQ --- */
.roll-faq {
  padding: var(--roll-space-3xl) var(--roll-space-md);
}

.roll-faq__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
}

.roll-faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--roll-space-sm);
}

.roll-faq__item {
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius);
  overflow: hidden;
  transition: border-color var(--roll-transition);
}

.roll-faq__item[open] {
  border-color: rgba(255, 184, 0, 0.3);
}

.roll-faq__question {
  display: flex;
  align-items: center;
  gap: var(--roll-space-md);
  padding: var(--roll-space-md) var(--roll-space-lg);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--roll-text-heading);
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  transition: color var(--roll-transition);
}

.roll-faq__question::-webkit-details-marker {
  display: none;
}

.roll-faq__question::after {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-left: auto;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%2394a3b8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform var(--roll-transition);
}

.roll-faq__item[open] .roll-faq__question::after {
  transform: rotate(180deg);
}

.roll-faq__question:hover {
  color: var(--roll-accent);
}

.roll-faq__answer {
  padding: 0 var(--roll-space-lg) var(--roll-space-lg);
}

.roll-faq__answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--roll-text-body);
}

/* --- FINAL CTA --- */
.roll-final-cta {
  padding: var(--roll-space-3xl) var(--roll-space-md);
  background: var(--roll-bg-raised);
  border-top: 1px solid var(--roll-border-nav);
}

.roll-final-cta__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.roll-final-cta__card {
  background: var(--roll-bg-card);
  border: 1px solid rgba(255, 184, 0, 0.25);
  border-radius: var(--roll-radius-lg);
  padding: var(--roll-space-2xl) var(--roll-space-lg);
  box-shadow: 0 0 50px rgba(255, 184, 0, 0.06);
  margin-bottom: var(--roll-space-lg);
}

.roll-final-cta__heading {
  font-family: var(--roll-font-heading);
  font-weight: 750;
  font-size: 1.5rem;
  color: var(--roll-text-heading);
  margin-bottom: var(--roll-space-lg);
}

.roll-final-cta__code-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--roll-space-sm);
  margin-bottom: var(--roll-space-md);
}

.roll-final-cta__code {
  font-family: var(--roll-font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--roll-accent);
  letter-spacing: 0.06em;
  background: var(--roll-bg-deep);
  padding: 8px 24px;
  border-radius: var(--roll-radius);
  border: 1px solid var(--roll-border-card);
}

.roll-final-cta__offer {
  font-size: 0.95rem;
  color: var(--roll-text-body);
  font-weight: 500;
}

.roll-final-cta__verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--roll-success);
  margin-bottom: var(--roll-space-lg);
}

.roll-final-cta__card .roll-btn {
  width: 100%;
  max-width: 320px;
}

.roll-final-cta__updated {
  font-size: 0.82rem;
  color: var(--roll-text-muted);
}

/* --- FOOTER --- */
.roll-footer {
  padding: var(--roll-space-2xl) var(--roll-space-md);
  border-top: 1px solid var(--roll-border-nav);
  background: var(--roll-bg-deep);
}

.roll-footer__inner {
  max-width: var(--roll-max-width);
  margin: 0 auto;
  text-align: center;
}

.roll-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--roll-space-md) var(--roll-space-lg);
  margin-bottom: var(--roll-space-lg);
}

.roll-footer__link {
  font-size: 0.85rem;
  color: var(--roll-text-muted);
  transition: color var(--roll-transition);
}

.roll-footer__link:hover {
  color: var(--roll-accent);
}

.roll-footer__responsible {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--roll-accent);
  margin-bottom: var(--roll-space-md);
}

.roll-footer__disclaimer {
  font-size: 0.78rem;
  color: var(--roll-text-muted);
  max-width: 620px;
  margin: 0 auto var(--roll-space-md);
  line-height: 1.6;
}

.roll-footer__copyright {
  font-size: 0.75rem;
  color: var(--roll-text-muted);
  opacity: 0.6;
}

/* --- SCROLL TO TOP --- */
.roll-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--roll-bg-card);
  border: 1px solid var(--roll-border-card);
  border-radius: var(--roll-radius);
  color: var(--roll-text-body);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--roll-transition), visibility var(--roll-transition), transform var(--roll-transition), background var(--roll-transition), color var(--roll-transition);
}

.roll-scroll-top--visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.roll-scroll-top:hover {
  background: var(--roll-accent);
  color: var(--roll-text-dark);
  border-color: var(--roll-accent);
}

/* --- LEGAL PAGES --- */
.roll-legal {
  padding: calc(var(--roll-header-height) + 48px) var(--roll-space-md) var(--roll-space-3xl);
}

.roll-legal__inner {
  max-width: 740px;
  margin: 0 auto;
}

.roll-legal__heading {
  font-family: var(--roll-font-heading);
  font-weight: 750;
  font-size: 2rem;
  color: var(--roll-text-heading);
  margin-bottom: var(--roll-space-sm);
}

.roll-legal__updated {
  font-size: 0.85rem;
  color: var(--roll-text-muted);
  margin-bottom: var(--roll-space-2xl);
}

.roll-legal h2 {
  font-family: var(--roll-font-heading);
  font-weight: 650;
  font-size: 1.2rem;
  color: var(--roll-text-heading);
  margin-top: var(--roll-space-xl);
  margin-bottom: var(--roll-space-md);
}

.roll-legal p {
  margin-bottom: var(--roll-space-md);
  line-height: 1.75;
}

/* --- MOBILE ADJUSTMENTS --- */
@media (max-width: 499px) {
  .roll-hero {
    padding-top: calc(var(--roll-header-height) + 24px);
    padding-bottom: var(--roll-space-2xl);
  }

  .roll-hero__heading {
    font-size: 1.45rem;
  }

  .roll-hero__widget-logo {
    width: 140px;
  }

  .roll-hero__widget-card {
    padding: var(--roll-space-md);
  }

  .roll-hero__code-value {
    font-size: 1.15rem;
  }

  .roll-hero__cta-group .roll-btn {
    width: 100%;
  }

  .roll-section-heading {
    font-size: 1.35rem;
  }

  .roll-codes__grid,
  .roll-eligibility__grid,
  .roll-provides__grid {
    grid-template-columns: 1fr;
  }

  .roll-code-card__cta {
    width: 100%;
  }

  .roll-final-cta__code {
    font-size: 1.3rem;
  }

  .roll-howto__step::before {
    left: 19px;
  }
}