:root {
  --primary: #0E8A7A;
  --orange: #14B8A6;
  --gold: #E8C547;
  --gold-bright: #F5D76E;
  --red-hot: #0D9488;
  --cyan: #22D3EE;
  --bg: #030A0C;
  --surface: #071416;
  --card: #0C1C1F;
  --text: #FFFFFF;
  --text-soft: #C8EDE8;
  --border: rgba(45, 212, 191, 0.45);
  --glow: rgba(20, 184, 166, 0.4);
  --glow-strong: rgba(34, 211, 238, 0.55);
  --max: 960px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 5rem; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(20, 184, 166, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(34, 211, 238, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(14, 138, 122, 0.14) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
  animation: bg-pulse 12s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
  from { opacity: 0.85; }
  to { opacity: 1; }
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--gold-bright); text-decoration-color: var(--orange); }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

/* Header */
.page-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 10, 12, 0.92);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(20, 184, 166, 0.18);
  backdrop-filter: blur(10px);
}

.page-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1.15rem;
  text-shadow: 0 0 20px var(--glow-strong);
}

.brand-link img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px var(--glow-strong));
}

/* Table of contents */
.contents-nav {
  padding: 1.75rem 0;
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.1) 0%, transparent 100%);
  border-bottom: 1px solid rgba(20, 184, 166, 0.22);
}

.contents-nav h2 { margin-bottom: 1rem; }

.contents-nav__table caption {
  caption-side: top;
  text-align: left;
  padding: 0 0 0.75rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.contents-nav__table td:first-child {
  width: 3.5rem;
  text-align: center;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.contents-nav__table td:nth-child(2) {
  font-weight: 600;
  min-width: 12rem;
}

.contents-nav__table td:nth-child(2) a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 176, 32, 0.35);
  transition: color 0.15s, border-color 0.15s;
}

.contents-nav__table td:nth-child(2) a:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold-bright);
}

.contents-nav__table td:last-child {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.contents-nav__sub td:first-child {
  color: var(--orange);
  font-size: 0.85rem;
}

.contents-nav__sub td:nth-child(2) { padding-left: 1.25rem; }

.page-header__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0.6rem 1.35rem;
  border-radius: 2rem 0.45rem 2rem 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, border-radius 0.25s, background 0.25s;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.28) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  pointer-events: none;
}

.button:hover::after {
  transform: translateX(120%);
}

.button:active {
  transform: scale(0.97);
}

.button--ghost {
  color: var(--gold-bright);
  border-color: var(--orange);
  background: rgba(20, 184, 166, 0.12);
  box-shadow: 0 0 16px rgba(20, 184, 166, 0.22);
}

.button--ghost:hover {
  border-color: var(--cyan);
  background: rgba(34, 211, 238, 0.18);
  box-shadow: 0 0 22px var(--glow);
  border-radius: 0.45rem 2rem 0.45rem 2rem;
  transform: translateY(-2px);
}

.button--primary {
  background: linear-gradient(135deg, #0A6B5F 0%, var(--primary) 35%, var(--orange) 70%, var(--cyan) 100%);
  color: #fff;
  border-color: var(--gold);
  box-shadow: 0 4px 20px var(--glow-strong), inset 0 1px 0 rgba(245, 215, 110, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  animation: button-glow 2.8s ease-in-out infinite alternate;
}

@keyframes button-glow {
  from { box-shadow: 0 4px 18px rgba(20, 184, 166, 0.35), inset 0 1px 0 rgba(245, 215, 110, 0.3); }
  to { box-shadow: 0 6px 28px rgba(34, 211, 238, 0.55), inset 0 1px 0 rgba(245, 215, 110, 0.45); }
}

.button--primary:hover {
  transform: translateY(-3px) scale(1.02);
  border-radius: 0.45rem 2rem 0.45rem 2rem;
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.65), inset 0 1px 0 rgba(245, 215, 110, 0.5);
  animation: none;
}

.button--large {
  padding: 1.05rem 1.85rem;
  font-size: 1.05rem;
  width: 100%;
  max-width: 520px;
  letter-spacing: 0.02em;
  border-radius: 2.4rem 0.55rem 2.4rem 0.55rem;
}

/* Hero */
.hero {
  padding: 2rem 0 1.5rem;
}

.hero__layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.hero__content {
  width: 100%;
}

.hero__media {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow:
    0 0 30px var(--glow),
    0 0 60px rgba(255, 100, 10, 0.25),
    inset 0 0 40px rgba(255, 160, 40, 0.08);
}

.hero__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; display: block; }

.hero h1 {
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--text);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--cyan) 40%, var(--gold-bright) 75%, var(--orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 18px rgba(20, 184, 166, 0.35));
}

.hero__actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-start;
}

.hero__lead { margin-bottom: 1rem; color: var(--text-soft); }

.bonus-badge {
  background: linear-gradient(135deg, rgba(232, 74, 10, 0.25) 0%, rgba(209, 120, 35, 0.18) 100%);
  border: 2px solid var(--orange);
  border-left: 5px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 0 24px rgba(255, 120, 20, 0.3);
}

.bonus-badge strong { color: var(--gold-bright); }

/* Sections */
main section {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 120, 20, 0.2);
}

h2 {
  color: var(--text);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  margin-bottom: 1rem;
  text-shadow: 0 0 16px rgba(255, 140, 30, 0.3);
}

h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--red-hot), var(--gold));
  border-radius: 2px;
  box-shadow: 0 0 10px var(--glow);
}

h3 {
  color: var(--gold);
  font-size: 1.1rem;
  margin: 1.5rem 0 0.75rem;
  text-shadow: 0 0 10px rgba(255, 160, 40, 0.25);
}

p { margin-bottom: 1rem; }

strong { color: var(--gold-bright); }

.brand-keyword {
  color: var(--gold-bright);
  font-weight: 800;
}

.hero h1 .brand-keyword {
  -webkit-text-fill-color: var(--gold-bright);
  color: var(--gold-bright);
}

.button .brand-keyword {
  color: #fff;
  font-weight: 800;
}

ul, ol {
  margin: 0 0 1rem 1.25rem;
}

li { margin-bottom: 0.4rem; }

li::marker { color: var(--orange); }

/* Tables */
.table-scroll {
  overflow-x: auto;
  margin: 1rem 0;
  border: 2px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 100, 10, 0.15);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

th, td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 120, 20, 0.15);
  vertical-align: top;
}

th {
  background: linear-gradient(180deg, rgba(255, 120, 20, 0.35) 0%, rgba(209, 120, 35, 0.2) 100%);
  color: var(--gold-bright);
  font-weight: 700;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(255, 160, 40, 0.4);
}

tr:last-child td { border-bottom: none; }

tr:nth-child(even) td { background: rgba(255, 120, 20, 0.06); }

table:not(.welcome-bonus-table):not(.contents-nav__table):not(.loyalty-levels-table) td:first-child,
table:not(.welcome-bonus-table):not(.contents-nav__table):not(.loyalty-levels-table) th[scope="row"] {
  color: var(--text);
  font-weight: 600;
  text-align: left;
}

.welcome-bonus-table tr:nth-child(even) td { background: transparent; }

/* Bonus welcome table */
.welcome-bonus-table .welcome-bonus__deposit {
  text-align: center;
  vertical-align: middle;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--gold-bright);
  background: rgba(20, 184, 166, 0.12);
  border-right: 1px solid rgba(20, 184, 166, 0.25);
  text-shadow: 0 0 12px var(--glow);
}

.welcome-bonus__tier {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  white-space: nowrap;
}

.welcome-bonus__tier--standard {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.welcome-bonus__tier--premium {
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--orange));
  border: 1px solid var(--gold);
  box-shadow: 0 0 10px rgba(255, 120, 20, 0.35);
}

.welcome-bonus-table tbody tr:nth-child(4n+1) td:not(.welcome-bonus__deposit),
.welcome-bonus-table tbody tr:nth-child(4n+2) td {
  background: rgba(255, 120, 20, 0.04);
}

/* Loyalty program */
.loyalty-block {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 140, 30, 0.1) 0%, transparent 55%);
}

.loyalty-level {
  display: inline-block;
  font-weight: 700;
  color: var(--gold-bright);
  white-space: nowrap;
}

.loyalty-level--legend {
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--gold));
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  box-shadow: 0 0 12px var(--glow);
}

.loyalty-level-row--1 td { background: rgba(255, 255, 255, 0.03); }
.loyalty-level-row--2 td { background: rgba(255, 120, 20, 0.04); }
.loyalty-level-row--3 td { background: rgba(255, 140, 30, 0.06); }
.loyalty-level-row--4 td { background: rgba(255, 160, 40, 0.08); }
.loyalty-level-row--5 td { background: rgba(255, 176, 32, 0.1); }
.loyalty-level-row--6 td { background: rgba(232, 74, 10, 0.1); }

.loyalty-levels-table td:last-child {
  font-size: 0.85rem;
  line-height: 1.5;
  min-width: 14rem;
}

/* Cards */
.feature-grid {
  display: grid;
  gap: 1rem;
  margin: 1rem 0;
}

@media (min-width: 600px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}

.card {
  background: linear-gradient(160deg, rgba(255, 120, 20, 0.12) 0%, var(--card) 50%);
  border: 2px solid var(--border);
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 180, 60, 0.1);
}

.card h3 { margin-top: 0; }

/* Games grid */
.slots-grid__heading {
  margin-top: 2rem;
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 600px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
}

@media (min-width: 900px) {
  .slots-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}

@media (min-width: 1100px) {
  .slots-grid { grid-template-columns: repeat(5, 1fr); }
}

.slot-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 2px solid var(--border);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.slot-card:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: var(--cyan);
  box-shadow: 0 10px 28px rgba(20, 184, 166, 0.35);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.25s;
}

.slot-card:hover img {
  transform: scale(1.05);
}

.slot-card__title {
  display: block;
  padding: 0.75rem 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
  background: linear-gradient(180deg, rgba(255, 120, 20, 0.12) 0%, transparent 100%);
}

@media (min-width: 768px) {
  .slot-card__title {
    padding: 0.85rem 0.75rem;
    font-size: 0.9rem;
  }
}

/* FAQ */
.faq-entry {
  border: 2px solid var(--border);
  border-radius: 10px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0 14px rgba(255, 100, 10, 0.12);
}

.faq-entry summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 700;
  background: linear-gradient(90deg, rgba(255, 120, 20, 0.2) 0%, var(--card) 100%);
  list-style: none;
}

.faq-entry summary::-webkit-details-marker { display: none; }

.faq-entry summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
  text-shadow: 0 0 8px var(--glow);
}

.faq-entry[open] summary::after { content: "−"; }

.faq-entry[open] summary {
  border-bottom: 1px solid rgba(255, 120, 20, 0.3);
  color: var(--gold-bright);
}

.faq-entry__answer {
  padding: 0 1.25rem 1rem;
  background: var(--surface);
}

/* Reviews */
.reviews-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: linear-gradient(160deg, rgba(20, 184, 166, 0.12) 0%, var(--card) 60%);
  border: 2px solid var(--border);
  border-radius: 1rem 0.35rem 1rem 0.35rem;
  padding: 1.25rem;
  box-shadow: 0 0 18px rgba(20, 184, 166, 0.15);
  margin: 0;
  transition: transform 0.25s, border-color 0.25s;
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
}

.review-card__author {
  color: var(--gold-bright);
  font-weight: 700;
  margin-bottom: 0.35rem;
  text-shadow: 0 0 10px var(--glow);
}

.review-card__stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  margin-bottom: 0.55rem;
}

.review-card p:last-child {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.reviews__score {
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 14px rgba(255, 176, 32, 0.6);
}

/* Trustpilot */
.trustpilot-section {
  padding: 2.5rem 0;
  background:
    linear-gradient(180deg, rgba(0, 182, 122, 0.06) 0%, transparent 40%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255, 120, 20, 0.1) 0%, transparent 60%);
  border-top: 1px solid rgba(0, 182, 122, 0.25);
}

.tp-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .tp-header {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.tp-logo {
  flex-shrink: 0;
  width: 140px;
  height: auto;
  filter: brightness(1.1);
}

.tp-header-text h2 { margin-bottom: 0.75rem; }

.tp-intro {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.tp-intro-score {
  color: #00B67A;
  font-weight: 600;
}

.tp-score-badge {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.65rem 1.1rem;
  background: rgba(0, 182, 122, 0.12);
  border: 2px solid rgba(0, 182, 122, 0.45);
  border-radius: 999px;
  box-shadow: 0 0 20px rgba(0, 182, 122, 0.15);
}

.tp-stars {
  display: inline-flex;
  gap: 2px;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 1px;
}

.tp-stars .filled { color: #00B67A; text-shadow: 0 0 8px rgba(0, 182, 122, 0.6); }
.tp-stars .half { color: #00B67A; opacity: 0.45; }
.tp-stars .empty { color: #3d3530; }

.tp-score-num {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.tp-score-num span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}

.tp-score-meta {
  font-size: 0.8rem;
  color: #00B67A;
  font-weight: 600;
}

.tp-reviews-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .tp-reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.tp-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(0, 182, 122, 0.08) 0%, var(--card) 45%);
  border: 2px solid rgba(0, 182, 122, 0.3);
  border-radius: 12px;
  padding: 1.35rem;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    0 0 20px rgba(0, 182, 122, 0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.tp-card:hover {
  border-color: rgba(0, 182, 122, 0.55);
  box-shadow:
    0 6px 28px rgba(0, 0, 0, 0.4),
    0 0 28px rgba(0, 182, 122, 0.18);
}

.tp-card-top {
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 182, 122, 0.2);
}

.tp-card-title {
  margin: 0.6rem 0 0;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.35;
}

.tp-quote {
  flex: 1;
  margin: 0 0 1.1rem;
  padding-left: 0.85rem;
  border-left: 3px solid #00B67A;
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-soft);
  line-height: 1.6;
}

.tp-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: auto;
}

.tp-author-name {
  font-weight: 700;
  color: var(--gold-bright);
  font-size: 0.95rem;
}

.tp-verified {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #00B67A;
  background: rgba(0, 182, 122, 0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  width: fit-content;
}

/* CTA block */
.final-cta {
  text-align: center;
  padding: 2.5rem 0;
  background: radial-gradient(ellipse 80% 100% at 50% 100%, rgba(20, 184, 166, 0.18) 0%, transparent 70%);
}

/* Sticky CTA bar */
.sticky-offer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9000;
  padding: 0.65rem 0;
  background: rgba(3, 10, 12, 0.96);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45), 0 -2px 24px rgba(20, 184, 166, 0.2);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.sticky-offer.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

body.has-sticky-offer {
  padding-bottom: 5.5rem;
}

.sticky-offer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
}

.sticky-offer__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.sticky-offer__title {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.sticky-offer__title strong {
  color: var(--gold-bright);
}

.sticky-offer__subtitle {
  color: var(--text-soft);
  font-size: 0.75rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-offer__button {
  flex-shrink: 0;
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
  animation: none;
}

@media (max-width: 520px) {
  .sticky-offer__subtitle { display: none; }
  .sticky-offer__title { font-size: 0.85rem; }
  .sticky-offer__button { padding: 0.5rem 0.9rem; font-size: 0.8rem; }
}

/* Footer */
.page-footer {
  border-top: 2px solid var(--border);
  padding: 2rem 0;
  font-size: 0.85rem;
  text-align: left;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 -8px 30px rgba(255, 100, 10, 0.08);
}

.page-footer p { margin-bottom: 0.75rem; }

.page-footer__warning {
  padding: 0.85rem 1rem;
  background: rgba(232, 74, 10, 0.12);
  border: 1px solid rgba(255, 120, 20, 0.4);
  border-radius: 8px;
  font-size: 0.82rem;
  text-align: left;
}

.page-footer__copy {
  margin-bottom: 0;
  margin-top: 1rem;
  opacity: 0.85;
  text-align: center;
}

/* Promo codes */
.promo-block {
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 140, 30, 0.14) 0%, transparent 55%),
    linear-gradient(180deg, rgba(209, 120, 35, 0.06) 0%, transparent 100%);
}

.promo-block__header {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.promo-block__icon {
  font-size: 2rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(255, 176, 32, 0.6));
  flex-shrink: 0;
}

.promo-block__header h2 { margin-bottom: 0; }

.promo-tile__code {
  display: inline-block;
  font-family: ui-monospace, "Cascadia Code", "Consolas", monospace;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  background: linear-gradient(135deg, rgba(255, 120, 20, 0.25) 0%, rgba(209, 120, 35, 0.15) 100%);
  border: 2px dashed var(--orange);
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  box-shadow: 0 0 16px rgba(255, 120, 20, 0.25), inset 0 1px 0 rgba(255, 220, 120, 0.15);
}

.promo-tile__code--inline {
  font-size: 0.85rem;
  padding: 0.2rem 0.5rem;
}

.promo-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 600px) {
  .promo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .promo-grid { grid-template-columns: repeat(4, 1fr); }
}

.promo-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 120, 20, 0.14) 0%, var(--card) 55%);
  border: 2px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 100, 10, 0.12);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.promo-tile:hover {
  transform: translateY(-3px);
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 0 28px rgba(255, 120, 20, 0.25);
}

.promo-tile--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(255, 176, 32, 0.18) 0%, var(--card) 55%);
}

.promo-tile__badge {
  position: absolute;
  top: -0.55rem;
  right: 0.75rem;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--red-hot), var(--orange));
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(255, 100, 10, 0.5);
}

.promo-tile__type {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
}

.promo-tile__value {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 600;
  line-height: 1.4;
}

.promo-block__scroll {
  margin-bottom: 1.5rem;
}

@media (max-width: 599px) {
  .promo-block__scroll { display: none; }
}

.promo-steps {
  display: grid;
  gap: 1rem;
  margin: 1.25rem 0 1.5rem;
}

@media (min-width: 640px) {
  .promo-steps { grid-template-columns: repeat(2, 1fr); }
}

.promo-step {
  display: flex;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 10px;
}

.promo-step__num {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--gold));
  border-radius: 50%;
  box-shadow: 0 0 14px var(--glow);
}

.promo-step h4 {
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.promo-step p {
  margin: 0;
  font-size: 0.9rem;
}

.promo-tip {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, rgba(255, 176, 32, 0.12) 0%, rgba(209, 120, 35, 0.08) 100%);
  border: 2px solid var(--gold);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 160, 40, 0.15);
  margin-bottom: 1.5rem;
}

.promo-tip__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.promo-tip p { margin: 0; }

.promo-block__cta {
  text-align: center;
}

.promo-block h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Payment logos */
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.payment-methods__item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 1.25rem 1rem;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 120, 20, 0.06) 100%);
  border: 2px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.payment-methods__item:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: var(--orange);
  box-shadow: 0 8px 28px rgba(255, 120, 20, 0.25);
}

.payment-methods__item img {
  width: auto;
  height: 56px;
  max-width: 100%;
  object-fit: contain;
  filter: brightness(1.05);
}

@media (min-width: 768px) {
  .payment-methods {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 1.15rem;
  }

  .payment-methods__item {
    min-height: 120px;
    padding: 1.5rem 1.25rem;
  }

  .payment-methods__item img {
    height: 64px;
  }
}

@media (min-width: 1024px) {
  .payment-methods__item img {
    height: 72px;
  }
}

/* VIP club */
.vip-intro {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.vip-intro__content h2 { margin-bottom: 1rem; }

.vip-intro__content p:last-child { margin-bottom: 0; }

.vip-intro__media {
  width: 100%;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow:
    0 0 30px rgba(255, 176, 32, 0.35),
    0 0 60px rgba(255, 120, 20, 0.15);
}

.vip-intro__media img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.content-banner {
  width: 100%;
  margin: 0 0 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--orange);
  box-shadow:
    0 0 30px var(--glow),
    0 0 60px rgba(255, 100, 10, 0.15);
}

.content-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.vip-badge {
  display: inline-block;
  font-weight: 700;
  white-space: nowrap;
}

.vip-status-row--gold td { background: rgba(255, 176, 32, 0.06); }
.vip-status-row--platinum td { background: rgba(192, 192, 220, 0.06); }
.vip-status-row--diamond td { background: rgba(100, 200, 255, 0.06); }

.vip-cards {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

@media (min-width: 900px) {
  .vip-cards { grid-template-columns: repeat(3, 1fr); }
}

.vip-card {
  padding: 1.35rem;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: var(--card);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.35);
}

.vip-card--gold {
  border-color: rgba(255, 176, 32, 0.55);
  background: linear-gradient(165deg, rgba(255, 176, 32, 0.12) 0%, var(--card) 50%);
}

.vip-card--platinum {
  border-color: rgba(200, 200, 220, 0.45);
  background: linear-gradient(165deg, rgba(180, 180, 200, 0.1) 0%, var(--card) 50%);
}

.vip-card--diamond {
  border-color: rgba(100, 200, 255, 0.45);
  background: linear-gradient(165deg, rgba(80, 180, 255, 0.1) 0%, var(--card) 50%);
}

.vip-card__header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.vip-card__icon { font-size: 1.5rem; line-height: 1; }

.vip-card__header h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.1rem;
}

.vip-card p { font-size: 0.92rem; }

.vip-card ul {
  margin: 0.75rem 0 0 1.1rem;
  font-size: 0.9rem;
}

.vip-card li { margin-bottom: 0.5rem; }

.vip-join-steps {
  margin: 0 0 1.5rem 1.25rem;
}

.vip-join-steps li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.vip-perks {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .vip-perks { grid-template-columns: repeat(3, 1fr); }
}

.vip-perk {
  padding: 1.25rem;
  background: linear-gradient(160deg, rgba(255, 120, 20, 0.1) 0%, var(--card) 55%);
  border: 2px solid var(--border);
  border-radius: 10px;
}

.vip-perk h4 {
  color: var(--gold-bright);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.vip-perk p {
  margin: 0;
  font-size: 0.9rem;
}

/* Cookie Bar */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 12, 8, 0.98);
  border-top: 2px solid var(--border);
  padding: 1rem 0;
  z-index: 9999;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}

.cookie-consent.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-consent__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .cookie-consent__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    gap: 2rem;
  }
}

.cookie-consent__inner p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.button--small {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
}

.page-footer__links {
  margin: 1rem 0;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.page-footer__links a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.15s;
}

.page-footer__links a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* Promo ticker */
.offer-ticker {
  position: relative;
  z-index: 90;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(14, 138, 122, 0.35), rgba(34, 211, 238, 0.2), rgba(232, 197, 71, 0.25));
  border-bottom: 1px solid var(--border);
  padding: 0.55rem 0;
  white-space: nowrap;
}

.offer-ticker__track {
  display: inline-flex;
  gap: 2.5rem;
  animation: ticker-scroll 32s linear infinite;
  width: max-content;
}

.offer-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
}

.offer-ticker__item strong {
  color: var(--gold-bright);
  letter-spacing: 0.03em;
}

.offer-ticker__item::before {
  content: "★";
  color: var(--cyan);
  margin-right: 0.25rem;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .offer-ticker__track,
  .button--primary,
  body::before {
    animation: none;
  }
}

/* Visual flow steps (instead of text arrows) */
.process-steps {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: none;
}

@media (min-width: 720px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }

  .process-steps--levels {
    grid-template-columns: repeat(6, 1fr);
  }
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
  padding: 1rem 0.9rem;
  background: linear-gradient(160deg, rgba(20, 184, 166, 0.14) 0%, var(--card) 55%);
  border: 1px solid var(--border);
  border-radius: 1rem 0.35rem 1rem 0.35rem;
  margin: 0;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.process-step:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  box-shadow: 0 8px 24px rgba(20, 184, 166, 0.25);
}

@media (min-width: 720px) {
  .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -0.45rem;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid var(--cyan);
    border-right: 2px solid var(--cyan);
    transform: translateY(-50%) rotate(45deg);
    z-index: 2;
  }
}

.process-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 0 12px var(--glow);
  margin-bottom: 0.15rem;
}

.process-step__label {
  color: var(--text);
  font-weight: 700;
  font-size: 0.95rem;
}

.process-step__value {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.9rem;
}

.process-step__meta {
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.35;
}

/* Branch diagrams (payments / catalog / betting) */
.tree-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0;
  padding: 1.1rem;
  background: linear-gradient(160deg, rgba(20, 184, 166, 0.1) 0%, var(--card) 60%);
  border: 1px solid var(--border);
  border-radius: 1rem 0.4rem 1rem 0.4rem;
}

@media (min-width: 640px) {
  .tree-list {
    grid-template-columns: minmax(140px, 200px) 1fr;
    align-items: center;
  }
}

.tree-list__root {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  color: #031014;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  border-radius: 0.85rem 0.3rem;
  box-shadow: 0 0 18px var(--glow);
}

.tree-list__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.tree-list__items li {
  position: relative;
  margin: 0;
  padding: 0.65rem 0.85rem 0.65rem 1.75rem;
  background: rgba(3, 10, 12, 0.45);
  border: 1px solid rgba(45, 212, 191, 0.25);
  border-radius: 0.65rem;
  color: var(--text);
  font-weight: 600;
}

.tree-list__items li::before {
  content: "";
  position: absolute;
  left: 0.7rem;
  top: 50%;
  width: 0.45rem;
  height: 0.45rem;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  transform: translateY(-50%) rotate(45deg);
}

.tree-list__items li span {
  display: block;
  margin-top: 0.2rem;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text-soft);
}

.info-callout {
  margin: 1rem 0 0;
  padding: 0.9rem 1.1rem;
  border-left: 4px solid var(--gold);
  background: rgba(20, 184, 166, 0.1);
  border-radius: 0 0.75rem 0.75rem 0;
}

.fade-in-up {
  animation: fade-in-up 0.7s ease both;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-consent {
  background: rgba(7, 20, 22, 0.98);
}

h4 {
  color: var(--cyan);
  font-size: 1rem;
  margin: 1.1rem 0 0.55rem;
}
