/* ===========================
   FONTS
=========================== */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Regular.ttf') format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Medium.ttf') format('truetype');
  font-weight: 500;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Bold.woff2') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-ExtraBold.woff2') format('woff2');
  font-weight: 800;
}
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Black.ttf') format('truetype');
  font-weight: 900;
}

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

:root {
  --gold: #D69416;
  --gold-dark: #A96508;
  --gold-light: #FFE7A8;
  --cream: #FFF8EA;
  --paper: #FFFFFF;
  --amber: #C98505;
  --amber-dark: #7A4A00;
  --ink: #24170E;
  --text-white: #FFFFFF;
  --text-muted: rgba(36, 23, 14, 0.64);
  --card-bg: rgba(255, 255, 255, 0.82);
  --card-border: rgba(214, 148, 22, 0.28);
  --radius-lg: 8px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-gold: 0 18px 45px rgba(214, 148, 22, 0.22);
  --shadow-soft: 0 24px 70px rgba(103, 64, 16, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #FFF8EA;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   HEADER
=========================== */
.header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 10px 22px rgba(80, 42, 10, 0.16));
}
.header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  background: #FFB700;
  color: #232A31;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  padding: 0 16px;
  border-radius: 8px;
  text-transform: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
}
.header__cta:hover {
  transform: translateY(-2px);
  background: #FFC633;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 248, 234, 0.28) 42%, rgba(255, 248, 234, 0.02) 72%, transparent 100%),
    url('../img/u7273694131_Minimalistic_bright_casino_banner_white_gift_box_cb885491 (1).png');
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.16) 38%, transparent 68%);
  z-index: -1;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, transparent, rgba(214, 148, 22, 0.1));
  pointer-events: none;
}

.hero__info {
  position: absolute;
  top: 50%;
  left: clamp(24px, 7vw, 120px);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: min(560px, calc(100% - 48px));
  z-index: 10;
  padding: 28px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(214, 148, 22, 0.22);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 148, 22, 0.12);
  border: 1px solid rgba(214, 148, 22, 0.28);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: uppercase;
  width: fit-content;
}
.hero__badge span {
  width: 8px; height: 8px;
  background: var(--amber);
  border-radius: 2px;
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%,100%{opacity:1;} 50%{opacity:0.3;}
}

.hero__title {
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  line-height: 1.02;
  color: var(--ink);
  letter-spacing: 0;
}

.hero__lead {
  color: rgba(36, 23, 14, 0.7);
  font-size: 16px;
  line-height: 1.65;
  max-width: 500px;
}

.hero__bonus-card {
  background: linear-gradient(135deg, #fff 0%, #FFF3D7 100%);
  border: 1px solid rgba(214, 148, 22, 0.24);
  border-radius: var(--radius-lg);
  padding: 20px 22px;
  box-shadow: 0 18px 42px rgba(149, 96, 16, 0.14);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.hero__bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 5px;
  height: auto;
  background: linear-gradient(180deg, #FFE071, var(--amber));
}

.bonus-amount {
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.bonus-amount__number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--amber-dark);
  letter-spacing: 0;
  text-shadow: none;
}
.bonus-amount__number .ron-label {
  color: var(--amber-dark);
  font-size: 32px;
  font-weight: 700;
  vertical-align: middle;
  letter-spacing: 0;
  margin-left: 8px;
  text-transform: uppercase;
  opacity: 0.85;
}

.bonus-plus {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  text-align: center;
  margin: 2px 0;
  text-shadow: none;
}

.bonus-spins {
  text-align: center;
}
.bonus-spins__number {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}
.bonus-spins__label {
  font-size: 16px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0;
  text-transform: uppercase;
  line-height: 1.3;
  margin-top: 4px;
  opacity: 0.85;
}

.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  background: #FFB700;
  color: #232A31;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  padding: 0 24px;
  border-radius: 8px;
  text-transform: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.hero__cta-btn:hover {
  transform: translateY(-2px);
  background: #FFC633;
}
.hero__cta-btn:active { transform: translateY(-1px); }

/* ===========================
   SCROLL INDICATOR
=========================== */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
  opacity: 0.6;
  animation: fade-in-up 1s ease 1s both;
}
.scroll-hint__text {
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: rgba(36, 23, 14, 0.56);
}
.scroll-hint__mouse {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(214, 148, 22, 0.4);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-hint__dot {
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 1px;
  animation: scroll-dot 2s ease-in-out infinite;
}
@keyframes scroll-dot {
  0%,100%{transform:translateY(0);opacity:1;}
  50%{transform:translateY(8px);opacity:0.3;}
}
@keyframes fade-in-up {
  from{opacity:0;transform:translateX(-50%) translateY(10px);}
  to{opacity:0.6;transform:translateX(-50%) translateY(0);}
}

/* ===========================
   HOW IT WORKS SECTION
=========================== */
.section-how {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFF8EA 0%, #FFFDF7 100%);
  position: relative;
}
.section-how::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 148, 22, 0.24), transparent);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}
.section-title__label {
  display: inline-block;
  background: rgba(214, 148, 22, 0.12);
  border: 1px solid rgba(214, 148, 22, 0.22);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.section-title h2,
.section-title h1 {
  font-size: 38px;
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
}
.section-title h2 span,
.section-title h1 span { color: var(--amber-dark); }
.section-title p {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 15px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Steps overview */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid rgba(214, 148, 22, 0.16);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 16px 40px rgba(103, 64, 16, 0.08);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover {
  border-color: rgba(185, 117, 4, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(103, 64, 16, 0.12);
}
.step-card__num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, #FFE071, var(--amber));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #2C1800;
  margin: 0 auto 16px;
  box-shadow: 0 12px 24px rgba(185, 117, 4, 0.22);
}
.step-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.step-card__text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Connector arrows */
.steps-grid .step-card + .step-card::before {
  content: '→';
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 22px;
  font-weight: 900;
  opacity: 0.5;
}

/* ===========================
   BONUS TABLE SECTION
=========================== */
.section-table {
  padding: 0 0 80px;
  background: #FFFDF7;
}

.bonus-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(214, 148, 22, 0.18);
  background: #fff;
  box-shadow: 0 24px 60px rgba(103, 64, 16, 0.1);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  table-layout: fixed;
}

.bonus-table thead tr {
  background: linear-gradient(135deg, #FFF4D8 0%, #FFFFFF 100%);
}
.bonus-table thead th {
  padding: 14px 8px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0;
  border-bottom: 1px solid rgba(214, 148, 22, 0.16);
  white-space: normal;
  word-break: break-word;
  line-height: 1.3;
}
.bonus-table thead th:first-child { text-align: left; padding-left: 12px; }

/* Column widths */
.bonus-table col.col-deposit  { width: 15%; }
.bonus-table col.col-pct      { width: 7%; }
.bonus-table col.col-range    { width: 12%; }
.bonus-table col.col-max      { width: 10%; }
.bonus-table col.col-coef     { width: 6%; }
.bonus-table col.col-wager    { width: 8%; }
.bonus-table col.col-spins    { width: 7%; }
.bonus-table col.col-game     { width: 14%; }
.bonus-table col.col-bet      { width: 10%; }
.bonus-table col.col-wager2   { width: 8%; }

.bonus-table tbody tr {
  border-bottom: 1px solid rgba(103, 64, 16, 0.08);
  transition: background 0.2s ease;
}
.bonus-table tbody tr:last-child { border-bottom: none; }
.bonus-table tbody tr:hover {
  background: #FFF9ED;
}

.bonus-table tbody td {
  padding: 16px 8px;
  text-align: center;
  vertical-align: middle;
  color: rgba(36, 23, 14, 0.78);
  font-size: 12px;
  word-break: break-word;
}
.bonus-table tbody td:first-child {
  text-align: left;
  padding-left: 12px;
}

.deposit-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.deposit-label__badge {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.d1 .deposit-label__badge { background: #D99A0C; color: #2C1800; border: 1px solid #B87504; }
.d2 .deposit-label__badge { background: #FFF3D7; color: #9B5D06; border: 1px solid rgba(214,148,22,0.3); }
.d3 .deposit-label__badge { background: #FFF8E7; color: #8D6106; border: 1px solid rgba(214,148,22,0.24); }
.d4 .deposit-label__badge { background: #FFF0B8; color: #735000; border: 1px solid rgba(185,117,4,0.26); }
.d5 .deposit-label__badge { background: #F5D681; color: #4E3100; border: 1px solid rgba(122,74,0,0.22); }

.deposit-label__name {
  font-weight: 700;
  color: var(--ink);
  font-size: 11px;
  line-height: 1.3;
}

.tag-bonus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  background: rgba(217, 154, 12, 0.14);
  color: var(--amber-dark);
  font-weight: 800;
  font-size: 12px;
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid rgba(185, 117, 4, 0.22);
  white-space: nowrap;
  word-break: normal;
}
.tag-range {
  color: var(--text-muted);
  font-size: 11px;
}
.tag-max {
  font-weight: 700;
  color: var(--ink);
  font-size: 11.5px;
}
.tag-wager {
  display: inline-block;
  background: rgba(103,64,16,0.05);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  color: rgba(36,23,14,0.68);
  font-size: 11px;
  border: 1px solid rgba(103,64,16,0.09);
}
.tag-spins {
  font-weight: 800;
  font-size: 13px;
  color: var(--gold-dark);
}
.tag-game {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  word-break: break-word;
}
.tag-bet {
  display: inline-block;
  background: rgba(214,148,22,0.12);
  color: var(--gold-dark);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  border: 1px solid rgba(214,148,22,0.2);
}

/* Section divider */
.table-section-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: linear-gradient(90deg, rgba(214,148,22,0.06) 0%, rgba(255,255,255,0.8) 50%, rgba(214,148,22,0.06) 100%);
  border-top: 1px solid rgba(103,64,16,0.06);
  border-bottom: 1px solid rgba(103,64,16,0.06);
}
.table-section-divider span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
  color: rgba(36,23,14,0.45);
  white-space: nowrap;
}
.table-section-divider::before,
.table-section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(103,64,16,0.08);
}

/* ===========================
   TOTALS BANNER
=========================== */
.totals-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
.totals-card {
  background: var(--card-bg);
  border: 1px solid rgba(214, 148, 22, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 18px 44px rgba(103, 64, 16, 0.08);
}
.totals-card__icon {
  font-size: 36px;
  flex-shrink: 0;
}
.totals-card__label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 4px;
}
.totals-card__value {
  font-size: 30px;
  font-weight: 900;
  color: var(--amber-dark);
  line-height: 1;
}
.totals-card__value small {
  font-size: 16px;
  font-weight: 700;
  color: rgba(36,23,14,0.64);
  margin-left: 4px;
}

/* ===========================
   CTA SECTION
=========================== */
.section-cta {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #FFFDF7 0%, #FFF1D1 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: none;
}
.section-cta h2 {
  font-size: 36px;
  font-weight: 900;
  margin-bottom: 10px;
  color: var(--ink);
}
.section-cta h2 span { color: var(--amber-dark); }
.section-cta p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 30px;
}
.cta-big-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  background: #FFB700;
  color: #232A31;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0;
  padding: 0 24px;
  border-radius: 8px;
  text-transform: none;
  box-shadow: none;
  transition: background 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}
.cta-big-btn:hover {
  transform: translateY(-2px);
  background: #FFC633;
}
.cta-big-btn svg {
  width: 22px; height: 22px;
}

/* ===========================
   SEO TEXT SECTION
=========================== */
.section-seo {
  padding: 60px 0 70px;
  background: #FFFDF7;
  position: relative;
}
.section-seo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214,148,22,0.18), transparent);
}

.seo-content {
  max-width: 860px;
  margin: 0 auto;
}

.seo-content__title {
  font-size: 26px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 32px;
  text-align: center;
}
.seo-content__title span {
  color: var(--amber-dark);
}

.seo-content__body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.seo-content__body p {
  font-size: 14.5px;
  line-height: 1.8;
  color: rgba(36,23,14,0.68);
  font-weight: 400;
}
.seo-content__body p strong {
  color: var(--ink);
  font-weight: 600;
}
.seo-content__body p em {
  color: var(--gold);
  font-style: normal;
  font-weight: 500;
}

@media (max-width: 768px) {
  .seo-content__title { font-size: 20px; }
  .seo-content__body p { font-size: 13.5px; }
  .section-seo { padding: 40px 0 50px; }
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background: #21150E;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer__partner {
  opacity: 0.55;
  transition: opacity 0.2s ease;
  filter: grayscale(1);
}
.footer__partner:hover {
  opacity: 1;
  filter: grayscale(0);
}
.footer__partner img { height: 32px; width: auto; }

.footer-providers {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-providers img { height: 28px; width: auto; opacity: 0.6; }
.footer-providers a:hover img { opacity: 1; }

.footer-menu {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}
.footer-menu__link {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s ease;
}
.footer-menu__link:hover { color: var(--gold); }

.footer-bottom {
  padding: 24px 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}
.footer-bottom-row:last-child { margin-bottom: 0; }
.footer-bottom-col_text p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-col_flex {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-age img,
.footer-license img {
  height: 36px;
  width: auto;
  opacity: 0.7;
}
.footer-age img:hover,
.footer-license img:hover { opacity: 1; }
.footer-bottom-license {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
  text-align: center;
}
.footer-bottom-license a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
}
.footer-bottom-license a:hover { color: var(--gold); }

.f-bg { /* utility: full-width within footer container */ }

/* ===========================
   ANIMATIONS & UTILITIES
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===========================
   RESPONSIVE — TABLET 1024px
=========================== */
@media (max-width: 1024px) {
  .hero__info { width: min(500px, calc(100% - 48px)); }
  .bonus-amount__number { font-size: 54px; }
  .bonus-spins__number { font-size: 54px; }
  .bonus-spins__label { font-size: 14px; }
  .hero__bonus-card { padding: 24px 20px; }
}

/* ===========================
   RESPONSIVE — MOBILE 768px
=========================== */
@media (max-width: 768px) {

  /* Hero: column flow, girl starts from very top */
  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100svh;
    overflow: hidden;
    padding: 112px 14px 24px;
    background-size: auto 88%;
    background-position: 78% 4px;
  }

  .hero__info {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    transform: none;
    width: 100%;
    max-width: 430px;
    margin: auto auto 0;
    gap: 12px;
    z-index: 10;
    padding: 18px;
    background: rgba(255, 255, 255, 0.54);
    backdrop-filter: blur(7px);
  }

  /* Compact bonus numbers — strictly equal */
  .hero__title {
    font-size: clamp(30px, 9vw, 34px);
    line-height: 1.04;
  }
  .hero__lead {
    font-size: 14px;
    line-height: 1.55;
  }
  .bonus-amount__number { font-size: 42px; letter-spacing: 0; }
  .bonus-amount__number .ron-label { font-size: 22px; letter-spacing: 0; margin-left: 4px; vertical-align: middle; }
  .bonus-plus { font-size: 18px; margin: 0; }
  .bonus-spins__number { font-size: 42px; letter-spacing: 0; }
  .bonus-spins__label { font-size: 11px; letter-spacing: 0; margin-top: 2px; }
  .hero__bonus-card {
    gap: 10px;
    padding: 14px 16px;
  }
  .bonus-amount { padding-bottom: 0; margin-bottom: 0; }

  /* Badge & header button — hide on mobile */
  .hero__badge { display: none; }
  .header__cta { display: none; }

  /* CTA button */
  .hero__cta-btn { font-size: 15px; padding: 0 20px; }

  /* Scroll hint */
  .scroll-hint { display: none; }

  /* HOW IT WORKS */
  .steps-grid { grid-template-columns: 1fr; gap: 14px; }
  .steps-grid .step-card + .step-card::before { display: none; }
  .section-title h2 { font-size: 24px; }
  .section-title p { font-size: 13px; }

  /* Table: allow horizontal scroll on very small screens */
  .bonus-table-wrapper { overflow-x: auto; }
  .bonus-table { table-layout: auto; font-size: 11px; min-width: 720px; }
  .bonus-table thead th { padding: 10px 5px; font-size: 9.5px; }
  .bonus-table tbody td { padding: 12px 5px; font-size: 11px; }
  .deposit-label { gap: 6px; }
  .deposit-label__badge { width: 24px; height: 24px; font-size: 9px; }
  .deposit-label__name { font-size: 10px; }

  /* Totals */
  .totals-banner { grid-template-columns: 1fr; gap: 12px; }
  .totals-card { padding: 18px 20px; }
  .totals-card__value { font-size: 24px; }

  /* Bottom CTA */
  .cta-big-btn { font-size: 15px; padding: 16px 30px; }
  .section-cta h2 { font-size: 26px; }

  /* Footer */
  .footer-bottom-row { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-col_flex { flex-wrap: wrap; }
}

/* ===========================
   RESPONSIVE — SMALL 420px
=========================== */
@media (max-width: 420px) {
  .bonus-amount__number { font-size: 36px; }
  .bonus-spins__number { font-size: 36px; }
  .hero__bonus-card { padding: 12px; }
  .bonus-amount { padding-bottom: 8px; }
  .hero__cta-btn { font-size: 14px; padding: 0 18px; }
  .header__cta { display: none; }
  .header__logo img { height: 42px; }
}
