:root {
  --bg: #061412;
  --bg-deep: #020807;
  --panel: rgba(12, 31, 29, 0.8);
  --panel-strong: rgba(19, 43, 38, 0.94);
  --line: rgba(76, 216, 184, 0.24);
  --line-strong: rgba(76, 216, 184, 0.52);
  --text: #eef6ff;
  --muted: #9bb8b1;
  --blue: #19bda7;
  --blue-soft: #7ee8d5;
  --gold: #f5c84b;
  --orange: #ff7043;
  --green: #41e083;
  --danger: #ff5d71;
  --radius: 8px;
  --radius-small: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --glow: 0 0 28px rgba(25, 189, 167, 0.26);
  --max: 1100px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 46%, #05090d 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.45rem;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(76, 216, 184, 0.18);
  background: rgba(3, 12, 11, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  display: block;
  width: 184px;
  height: auto;
}

.brand-text {
  display: none;
  font-weight: 900;
  letter-spacing: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.main-nav a {
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 9px 12px;
  color: #d9eaff;
  font-size: 0.92rem;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  border-color: rgba(76, 216, 184, 0.36);
  background: rgba(25, 189, 167, 0.12);
  color: #ffffff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(76, 216, 184, 0.4);
  border-radius: 8px;
  background: rgba(12, 31, 29, 0.86);
  color: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  padding: 0.82rem 1.25rem;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #0f8f81);
  box-shadow: 0 14px 34px rgba(25, 189, 167, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  box-shadow: 0 14px 34px rgba(255, 122, 47, 0.28);
  color: #111826;
}

.btn-play,
.hero .btn-play {
  position: relative;
  min-width: 210px;
  min-height: 60px;
  border: 2px solid rgba(255, 239, 168, 0.88);
  padding: 1.05rem 1.7rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(135deg, #fff06a 0%, #f5c84b 38%, #ff7043 72%, #e93e5b 100%);
  box-shadow:
    0 22px 54px rgba(255, 72, 31, 0.58),
    0 0 42px rgba(255, 184, 62, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
  color: #07111f;
  font-size: 1.08rem;
  font-weight: 950;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-play::after {
  position: absolute;
  inset: -40% auto -40% -38%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  content: "";
  transform: skewX(-18deg);
  animation: button-shine 2.8s ease-in-out infinite;
}

.btn-play:hover,
.btn-play:focus-visible,
.hero .btn-play:hover,
.hero .btn-play:focus-visible {
  box-shadow:
    0 26px 64px rgba(255, 72, 31, 0.66),
    0 0 52px rgba(255, 184, 62, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.btn-ghost {
  border: 1px solid rgba(76, 216, 184, 0.42);
  background: rgba(12, 31, 29, 0.74);
  box-shadow: inset 0 0 20px rgba(25, 189, 167, 0.08);
}

.hero {
  padding: 58px 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 34px;
}

.hero-grid > *,
.split > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 184, 62, 0.35);
  border-radius: 8px;
  padding: 8px 12px;
  background: rgba(255, 184, 62, 0.08);
  color: #ffd893;
  font-size: 0.86rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  font-size: 3.65rem;
  font-weight: 950;
}

h2 {
  font-size: 2.25rem;
  font-weight: 900;
}

h3 {
  font-size: 1.12rem;
  font-weight: 850;
}

.accent {
  color: var(--blue-soft);
  text-shadow: 0 0 24px rgba(100, 181, 255, 0.34);
}

.hero-copy {
  max-width: 700px;
  margin-top: 18px;
  color: #c9daef;
  font-size: 1.12rem;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span,
.tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(76, 216, 184, 0.28);
  border-radius: 8px;
  padding: 7px 10px;
  background: rgba(4, 18, 16, 0.62);
  color: #bad0eb;
  font-size: 0.86rem;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(76, 216, 184, 0.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(19, 43, 38, 0.82), rgba(5, 15, 14, 0.94));
  box-shadow: var(--shadow), var(--glow);
}

.visual-card::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), transparent 35%, transparent 70%, rgba(25, 189, 167, 0.12));
}

.visual-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
}

.section {
  padding: 42px 0;
}

.section-header {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-header p {
  margin-top: 12px;
  color: var(--muted);
}

.panel,
.card,
.mini-card,
.info-box,
.review-card,
.faq-item,
.table-wrap {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(15, 38, 35, 0.84), rgba(7, 20, 18, 0.88));
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.panel {
  border-radius: 12px;
  padding: clamp(20px, 3vw, 30px);
}

.card {
  border-radius: var(--radius);
  padding: 22px;
}

.mini-card {
  border-radius: var(--radius-small);
  padding: 18px;
}

.card:hover,
.mini-card:hover,
.review-card:hover {
  border-color: var(--line-strong);
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.quick-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.section-tight {
  padding-top: 24px;
}

.lb18-hero {
  border-bottom: 1px solid rgba(76, 216, 184, 0.12);
}

.hero-visual img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.entry-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.entry-card {
  display: grid;
  min-height: 148px;
  gap: 12px;
  border: 1px solid rgba(76, 216, 184, 0.24);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(16, 43, 39, 0.72), rgba(5, 18, 16, 0.84));
  color: #ecfff9;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
}

.entry-card:hover,
.entry-card:focus-visible {
  border-color: var(--line-strong);
}

.entry-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.mirror-check,
.bonus-start,
.faq-preview {
  background: rgba(255, 255, 255, 0.02);
}

.status-list {
  display: grid;
  gap: 12px;
}

.status-item {
  position: relative;
  border: 1px solid rgba(76, 216, 184, 0.22);
  border-radius: 8px;
  padding: 14px 14px 14px 44px;
  background: rgba(5, 18, 16, 0.56);
}

.status-item p {
  margin: 6px 0 0;
  color: var(--muted);
}

.status-dot {
  position: absolute;
  top: 18px;
  left: 16px;
  width: 12px;
  height: 12px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(65, 224, 131, 0.12);
}

.bonus-start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bonus-tile {
  min-height: 190px;
  border: 1px solid rgba(245, 200, 75, 0.28);
  border-radius: 8px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(52, 38, 13, 0.42), rgba(8, 18, 16, 0.86));
}

.bonus-tile span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #ffe39a;
  font-weight: 950;
}

.bonus-tile p {
  color: var(--muted);
}

.games-row .icon {
  color: #07201b;
  font-weight: 950;
}

.payment-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.payment-pills span {
  border: 1px solid rgba(245, 200, 75, 0.3);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(245, 200, 75, 0.08);
  color: #ffe39a;
  font-weight: 800;
}

.quick-card {
  display: flex;
  flex-direction: column;
  min-height: 132px;
  gap: 12px;
  color: #ecf6ff;
}

.quick-card .icon,
.game-card .icon,
.support-card .icon,
.contact-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(76, 216, 184, 0.34);
  border-radius: 8px;
  background: rgba(25, 189, 167, 0.12);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: inset 0 0 18px rgba(25, 189, 167, 0.14);
}

.quick-card strong,
.game-card strong {
  display: block;
  line-height: 1.22;
}

.quick-card span {
  color: var(--muted);
  font-size: 0.91rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: 24px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  margin: 0;
  border: 1px solid rgba(76, 216, 184, 0.18);
  border-radius: 8px;
  padding: 12px 12px 12px 38px;
  background: rgba(6, 16, 29, 0.42);
  color: #cde0f7;
}

.feature-list li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  width: 11px;
  height: 11px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 0 14px rgba(25, 189, 167, 0.55);
  content: "";
}

.game-card {
  display: grid;
  min-height: 178px;
  gap: 12px;
}

.game-card p,
.mini-card p,
.card p,
.review-card p,
.info-box p {
  color: var(--muted);
}

.payment-card {
  min-height: 100%;
}

.payment-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.payment-list li {
  margin: 0;
  border-bottom: 1px solid rgba(76, 216, 184, 0.16);
  padding-bottom: 10px;
  color: #cddff6;
}

.table-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

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

.bonus-table th,
.bonus-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(76, 216, 184, 0.16);
  text-align: left;
}

.bonus-table th {
  color: #ddebff;
  font-size: 0.88rem;
  text-transform: uppercase;
}

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

.bonus-table td:last-child {
  color: #fff;
  font-weight: 850;
}

.promo-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  margin: 12px 0;
  border: 1px dashed rgba(255, 184, 62, 0.68);
  border-radius: 8px;
  padding: 16px 24px;
  background: rgba(255, 184, 62, 0.08);
  color: #ffe0a3;
  font-size: 1.8rem;
  font-weight: 950;
  letter-spacing: 0;
  box-shadow: inset 0 0 24px rgba(255, 184, 62, 0.08);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  position: relative;
  margin: 0;
  border: 1px solid rgba(76, 216, 184, 0.18);
  border-radius: 8px;
  padding: 14px 14px 14px 54px;
  background: rgba(6, 16, 29, 0.42);
  color: #cfddf2;
}

.steps li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #0f8f81);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  content: counter(step);
}

.split-reverse {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
}

.support-card,
.contact-card {
  display: grid;
  gap: 12px;
}

.review-card {
  border-radius: var(--radius);
  padding: 20px;
}

.review-card .name {
  margin-bottom: 8px;
  color: #fff;
  font-weight: 850;
}

.rating {
  color: #ffd06b;
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: var(--radius-small);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  color: #edf6ff;
  font-weight: 850;
  cursor: pointer;
}

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

.faq-item summary::after {
  flex: 0 0 auto;
  color: var(--blue-soft);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.seo-text {
  display: grid;
  gap: 16px;
  color: #c7d8ee;
}

.seo-text p {
  margin: 0;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag-heading {
  margin-top: 24px;
}

.tag {
  border-color: rgba(76, 216, 184, 0.18);
  background: rgba(4, 18, 16, 0.44);
  color: #7da59c;
  font-size: 0.78rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 0;
  color: #8fa7c6;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: #cce1ff;
}

.page-hero {
  padding: 44px 0 30px;
}

.page-hero p {
  max-width: 760px;
  margin-top: 16px;
  color: #c8d9ef;
  font-size: 1.06rem;
}

.meta-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.meta-strip span {
  border: 1px solid rgba(76, 216, 184, 0.22);
  border-radius: 8px;
  padding: 12px;
  background: rgba(12, 31, 29, 0.62);
  color: #d4e8ff;
  font-weight: 750;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.related-links a {
  border: 1px solid rgba(76, 216, 184, 0.26);
  border-radius: 8px;
  padding: 9px 12px;
  color: #c8defa;
}

.notice {
  border: 1px solid rgba(255, 184, 62, 0.32);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 184, 62, 0.08);
  color: #ffe0a3;
}

.go-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  text-align: center;
}

.go-box {
  width: min(460px, 100%);
}

.loader {
  width: 54px;
  height: 54px;
  margin: 0 auto 20px;
  border: 4px solid rgba(76, 216, 184, 0.24);
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes button-shine {
  0% {
    left: -38%;
  }

  42%,
  100% {
    left: 118%;
  }
}

.site-footer {
  margin-top: 42px;
  border-top: 1px solid rgba(76, 216, 184, 0.16);
  background: rgba(2, 8, 7, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 0.7fr));
  gap: 24px;
  padding: 34px 0;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 14px;
}

.footer-title {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 850;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-text {
  color: var(--muted);
  font-size: 0.94rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(76, 216, 184, 0.12);
  padding: 18px 0 26px;
  color: #8197b4;
  font-size: 0.88rem;
}

@media (max-width: 1040px) {
  .brand img {
    width: 156px;
  }

  .main-nav a {
    padding: 8px 9px;
    font-size: 0.86rem;
  }

  .quick-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .entry-grid,
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .bonus-start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 74px 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    border: 1px solid rgba(76, 216, 184, 0.28);
    border-radius: 8px;
    padding: 12px;
    background: rgba(5, 12, 24, 0.96);
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    min-height: 48px;
    border-radius: 8px;
    padding: 13px 14px;
    font-size: 1rem;
  }

  .site-header .header-actions .btn {
    display: inline-flex;
    width: auto;
    min-width: 92px;
    min-height: 44px;
    padding: 0.72rem 1rem;
    font-size: 0.92rem;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 36px;
  }

  .visual-card {
    max-width: 560px;
    margin: 0 auto;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .grid-5,
  .entry-grid,
  .bonus-start-grid {
    grid-template-columns: 1fr;
  }

  .meta-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .header-inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand img {
    width: 134px;
  }

  .header-actions {
    gap: 8px;
  }

  .site-header .header-actions .btn {
    width: auto;
    min-width: 78px;
    min-height: 42px;
    padding: 0.62rem 0.82rem;
    font-size: 0.86rem;
  }

  .main-nav {
    top: 68px;
  }

  .hero-actions,
  .section-actions,
  .related-links {
    flex-direction: column;
    align-items: stretch;
  }

  .eyebrow {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  h1 {
    max-width: 100%;
    font-size: 2rem;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-copy,
  .section-header p,
  .card p,
  .mini-card p,
  .review-card p,
  .footer-text {
    overflow-wrap: anywhere;
  }

  .btn {
    width: 100%;
    min-height: 54px;
    padding: 0.92rem 1rem;
  }

  .site-header .header-actions .btn {
    width: auto;
  }

  .hero .btn-play {
    min-height: 64px;
    border-width: 2px;
    background:
      radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.78), transparent 24%),
      linear-gradient(135deg, #fff36d 0%, #ffb000 36%, #ff5a1f 70%, #ff1f48 100%);
    box-shadow:
      0 22px 58px rgba(255, 72, 31, 0.64),
      0 0 48px rgba(255, 184, 62, 0.58),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
    color: #06101d;
    font-size: 1.12rem;
  }

  .quick-grid {
    grid-template-columns: 1fr;
  }

  .quick-card {
    min-height: auto;
  }

  .section {
    padding: 34px 0;
  }

  .panel,
  .card,
  .review-card {
    padding: 18px;
  }

  .bonus-table,
  .bonus-table tbody,
  .bonus-table tr,
  .bonus-table td {
    display: block;
    width: 100%;
  }

  .bonus-table thead {
    display: none;
  }

  .bonus-table tr {
    border-bottom: 1px solid rgba(76, 216, 184, 0.16);
    padding: 12px 0;
  }

  .bonus-table tr:last-child {
    border-bottom: 0;
  }

  .bonus-table td {
    border: 0;
    padding: 5px 14px;
  }

  .bonus-table td::before {
    display: block;
    color: #7f97b4;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    content: attr(data-label);
  }

  .meta-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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