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

:root {
  --gold:       #D4A843;
  --gold-light: #F0C96A;
  --gold-dark:  #B8862A;
  --dark:       #0D0D14;
  --dark-2:     #14141F;
  --dark-3:     #1C1C2E;
  --dark-4:     #252538;
  --dark-5:     #2E2E48;
  --text:       #E8E8F0;
  --text-muted: #8888AA;
  --accent:     #9B59B6;
  --accent-2:   #6C3483;
  --green:      #27AE60;
  --orange:     #E67E22;
  --red:        #C0392B;
  --border:     rgba(212,168,67,0.15);
  --radius:     12px;
  --radius-lg:  20px;
  --shadow:     0 4px 24px rgba(0,0,0,0.4);
  --shadow-card:0 2px 16px rgba(0,0,0,0.35);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark);
  color: var(--text);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }

code {
  background: var(--dark-4);
  color: var(--gold-light);
  padding: 2px 7px;
  border-radius: 5px;
  font-size: 13px;
  font-family: 'Courier New', monospace;
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,20,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--text);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.3px;
}
.logo:hover { color: var(--gold-light); }
.logo-icon {
  font-size: 22px;
  color: var(--gold);
  display: flex;
  align-items: center;
}
.logo-text { color: inherit; }

.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
}
.main-nav a {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  padding: 6px 13px;
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
.main-nav a:hover {
  color: var(--text);
  background: var(--dark-4);
}
.main-nav a[aria-current="page"] {
  color: var(--gold);
  background: rgba(212,168,67,0.1);
  font-weight: 600;
}

.header-dgoj {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  background: rgb(209, 0, 0);
  border: 1px solid rgba(212,168,67,0.2);
  border-radius: 8px;
  padding: 5px 12px;
  margin-left: auto;
}
.header-dgoj a{
  color: #fff;
}
.dgoj-flag {
  font-size: 16px;
  line-height: 1;
}
.dgoj-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  text-transform: uppercase;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .2s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  padding: 20px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 70% 50%, rgba(155,89,182,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 15% 40%, rgba(212,168,67,0.08) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 80px, rgba(212,168,67,0.03) 80px, rgba(212,168,67,0.03) 81px),
    repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(212,168,67,0.03) 80px, rgba(212,168,67,0.03) 81px);
}

.hero .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-title .accent {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-desc {
  /* max-width: 620px; */
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  padding: 0 32px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin-right: 32px;
}

/* =============================================
   TOC
   ============================================= */
.toc {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 32px 0 0;
}
.toc-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.toc ul {
  list-style: none;
  /* display: flex; */
  /* flex-wrap: wrap; */
  gap: 6px 4px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

@media (max-width: 900px) {
  .toc ul { grid-template-columns: repeat(1, 1fr); }
}
.toc ul li a {
  display: inline-block;
  background: var(--dark-4);
  color: #fff;
  padding: 5px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all .2s;
}
.toc ul li a:hover {
  color: var(--gold);
  border-color: var(--border);
  background: var(--dark-5);
}

.main-content {
  padding-top: 56px;
  padding-bottom: 80px;
}

.content-section {
  margin-bottom: 72px;
}

.section-header {
  margin-bottom: 24px;
}
.section-tag {
  display: inline-block;
  background: rgba(212,168,67,0.12);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1.2;
}
.section-header h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-top: 10px;
}

.section-intro {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 720px;
}

.article-body {
  /* max-width: 780px; */
}

.article-body section {
  /* margin-bottom: 56px; */
}

.article-body h2 {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.25;
}
.article-body h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  border-radius: 2px;
  margin-top: 8px;
}

.article-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin: 28px 0 10px;
}

.article-body p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.article-body p strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- Lists ---- */
.article-body ul,
.article-body ol {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.article-body ul li,
.article-body ol li {
  position: relative;
  padding: 12px 16px 12px 48px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  transition: border-color .2s;
}
.article-body ul li:hover,
.article-body ol li:hover {
  border-color: rgba(212,168,67,0.3);
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 6px rgba(212,168,67,0.45);
}

.article-body ol {
  counter-reset: article-counter;
}
.article-body ol li {
  counter-increment: article-counter;
}
.article-body ol li::before {
  content: counter(article-counter);
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(212,168,67,0.12);
  border: 1px solid rgba(212,168,67,0.25);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-body ul li strong,
.article-body ol li strong {
  color: var(--text);
  font-weight: 600;
}

/* ---- Table ---- */
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 14px;
}
.article-body thead tr {
  background: rgba(212,168,67,0.1);
  border-bottom: 2px solid rgba(212,168,67,0.25);
}
.article-body thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--gold);
  white-space: nowrap;
}
.article-body tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.article-body tbody tr:last-child {
  border-bottom: none;
}
.article-body tbody tr:hover {
  background: rgba(212,168,67,0.04);
}
.article-body tbody td {
  padding: 12px 16px;
  color: var(--text-muted);
  vertical-align: top;
  line-height: 1.55;
}
.article-body tbody td strong {
  color: var(--text);
  font-weight: 600;
}
/* Responsive table — card layout on mobile */
@media (max-width: 700px) {
  .article-body table.responsive-table,
  .article-body table.responsive-table thead,
  .article-body table.responsive-table tbody,
  .article-body table.responsive-table tr,
  .article-body table.responsive-table td {
    display: block;
    width: 100%;
  }
  .article-body table.responsive-table thead {
    display: none;
  }
  .article-body table.responsive-table tbody tr {
    background: var(--dark-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    padding: 4px 0;
  }
  .article-body table.responsive-table tbody tr:hover {
    border-color: rgba(212,168,67,0.3);
  }
  .article-body table.responsive-table tbody td {
    display: flex;
    gap: 10px;
    padding: 9px 16px;
    border-bottom: 1px solid rgba(212,168,67,0.08);
    font-size: 14px;
  }
  .article-body table.responsive-table tbody td:last-child {
    border-bottom: none;
  }
  .article-body table.responsive-table tbody td::before {
    content: attr(data-label);
    flex-shrink: 0;
    min-width: 110px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    padding-top: 2px;
  }
}

.article-img-placeholder {
  margin: 24px 0;
}
.img-placeholder-inner {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}
figcaption {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 0 0;
  font-style: italic;
}

.main_cards {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.main-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.main-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  transition: border-color .2s, transform .2s;
}
.main-card:hover {
  border-color: rgba(212,168,67,0.35);
  transform: translateY(-2px);
}

.main-card-logo {
  /* background: var(--dark-5); */
  /* border: 1px solid var(--border); */
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.3px;
}
.main-card-logo img{
    border-radius: 10px;
}

.main-card-bonus {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.main-card-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #0D0D14;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 8px;
  width: 100%;
  text-align: center;
  transition: all .2s;
}
.main-card-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #0D0D14;
  box-shadow: 0 4px 14px rgba(212,168,67,0.3);
}

@media (max-width: 900px) {
  .main-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .main-cards-grid { grid-template-columns: 1fr; }
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

/* Top — warning text */
.footer-top {
  padding: 28px 0 0;
}
.footer-top .container {
  border-bottom: 1px solid var(--border);
  padding-bottom: 20px;
}
.footer-warning-marks {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.footer-warning {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Middle — affiliate + copyright + badges */
.footer-middle {
  padding: 24px 0;
}
.footer-middle .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  text-align: center;
}
.footer-affiliate {
  font-size: 13px;
  color: rgb(255, 255, 255);
  line-height: 1.7;
  max-width: 680px;
}
.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-badges img {
  height: 40px;
  width: auto;
  border-radius: 4px;
}

/* Bottom — nav links */
.footer-bottom {
  padding: 18px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  justify-content: center;
}
.footer-nav a {
  font-size: 13px;
  color: #fff;
  padding: 0 14px;
  border-right: 1px solid var(--border);
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-nav a:last-child {
  border-right: none;
}
.footer-nav a:hover {
  color: var(--gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .main-nav { display: none; }
  .header-dgoj { display: none; }
  .burger { display: flex; }

  .hero { padding: 20px 0; }
  .hero-stats { gap: 16px; }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .casino-cards { grid-template-columns: 1fr; }
  .bizum-grid { grid-template-columns: 1fr 1fr; }
  .deposit-table { font-size: 12px; }
  .deposit-table th, .deposit-table td { padding: 10px 12px; }

  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .conclusion-tips { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .bizum-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr 1fr; }
}
.hero__image {
  width: 100%;
  height: 100%;
  margin: 20px 0;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  /* opacity: 0.7; */
}



/* ---------------swiper-------------------- */
.swiper {
  width: 100%;
  height: 100%;

  & img {
    object-fit: contain;
  }
}

.casino-cards {
  margin: 10px auto;
  max-width: 1000px;
}

.bonus-swiper {
  padding: 10px 14px 40px;
  position: relative;
  overflow: visible;
}

.bonus-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}

.bonus-card {
  width: 95%;
  max-width: 980px;
  display: grid;
  grid-template-columns: minmax(220px, 1.1fr) 1.2fr minmax(220px, 0.9fr);
  gap: 5px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(120deg, #0b1223, #0a1430 60%, #0b1427);
  position: relative;
  overflow: hidden;
}

.bonus-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
}
.bonus-card-offer {
  width: 95%;
  max-width: 980px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  /* background: linear-gradient(120deg, #0b1223, #0a1430 60%, #0b1427); */
  position: relative;
  overflow: hidden;
}

.bonus-card-offer::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  pointer-events: none;
}
@media (max-width: 900px) {
 .bonus-card-offer{
  flex-direction: column;
 }
}

@media (min-width: 901px) {
  .bonus-card-offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .bonus-card-media-offer,
  .bonus-card-main {
    width: 100%;
    min-width: 0;
  }
}

.bonus-card--ice {
  background: linear-gradient(120deg, #0a1d3a, #0c2752 55%, #091a35);
}

.bonus-card--violet {
  background: linear-gradient(120deg, #1a1133, #2b1448 55%, #1a0f2e);
}

.card-logo {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 6;
  padding: 6px 10px;
  background: rgba(8, 12, 24, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.card-logo img {
  display: block;
  max-width: 120px;
  height: auto;
}

@media (min-width: 901px) {
  .bonus-card .card-logo,
  .promo-card .card-logo {
    left: auto;
    right: 16px;
  }
}

.bonus-card-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  /* background: radial-gradient(
      circle at 20% 30%,
      rgba(63, 216, 193, 0.35),
      transparent 55%
    ), */
    /* radial-gradient(circle at 75% 70%, rgba(245, 165, 36, 0.4), transparent 55%), */
    /* #061124; */
  /* border: 1px solid rgba(255, 255, 255, 0.16); */
}
.bonus-card-media::after {
  display: block;
  content: "";
  height: 40%;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 5;
  background: linear-gradient(
    to top,
    rgba(var(--bg-rgb), 0.95) 0%,
    rgba(var(--bg-rgb), 0.85) 35%,
    rgba(var(--bg-rgb), 0) 100%
  );
}

.bonus-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bonus-card-media-offer {
  position: relative;
  border-radius: 18px;
  /* overflow: hidden; */
  /* min-height: 220px; */
  /* background: radial-gradient(
      circle at 20% 30%,
      rgba(63, 216, 193, 0.35),
      transparent 55%
    ), */
    /* radial-gradient(circle at 75% 70%, rgba(245, 165, 36, 0.4), transparent 55%), */
    /* #061124; */
  /* border: 1px solid rgba(255, 255, 255, 0.16); */
}
.bonus-card-media-offer::after {
  display: block;
  content: "";
  height: 40%;
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 5;
}

.bonus-card-media-offer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bonus-card-main {
  text-align: center;
}

.bonus-card-eyebrow {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  color: #f2f5ff;
}

.bonus-card-title {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  color: #f5c542;
  text-transform: none;
}

.bonus-card-side {
  grid-column: 3;
  background: rgba(7, 12, 25, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 10px;
  display: grid;
  gap: 10px;
  justify-items: stretch;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.bonus-card-actions {
  grid-column: 3;
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.bonus-card-stats {
  display: grid;
  gap: 5px;
}

.bonus-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #d6ddf5;
  gap: 10px;
}

.bonus-card-row strong {
  font-size: 10px;
  color: #ffffff;
}

.bonus-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35); */
  transition: 0.2s ease;
  width: 100%;
  min-height: 54px;
}

.bonus-card-cta:hover {
  transform: translateY(-2px);
}

.bonus-card-cta--image {
  background: linear-gradient(180deg, #ff0000, #7b0f0f);
  border: none;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  text-align: center;
}

.bonus-card-cta--register {
  display: none;
  background: linear-gradient(135deg, #ffbe1f, #ffe36b);
  color: #0c101c;
  border: 1px solid rgba(255, 190, 31, 0.7);
  /* box-shadow: 0 12px 22px rgba(255, 190, 31, 0.35); */
}

.bonus-card-cta--register:hover {
  background: linear-gradient(135deg, #ffe36b, #ffbe1f);
}

@media (max-width: 628px) {
  .swiper.desk {
    display: none;
  }

  .slots-mobile {
    margin: 30px 0;
    padding: 0 15px;
  }

  .slots-swiper {
    padding: 0 15px 40px 15px;
  }

  .slot-card {
    max-width: 260px;
  }

  .slot-card-image {
    height: 140px;
  }

  .slot-card-content {
    padding: 22px;
    gap: 6px;
  }

  .slot-card-title {
    font-size: 14px;
  }

  .slot-card-provider {
    font-size: 11px;
  }

  .slot-card-rtp {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .slot-card-content a {
    padding: 6px 10px;
    font-size: 11px;
  }

  .slot-card-badge {
    font-size: 9px;
    padding: 3px 6px;
    top: 6px;
    right: 6px;
  }

  /* Legacy mobile styles */
  .slot-card img {
    height: 140px;
  }

  .slots-mobile h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media (min-width: 629px) {
  .swiper.mob {
    display: none;
  }
}

@media (max-width: 480px) {
  .slots-mobile {
    margin: 20px 0;
    padding: 0 10px;
  }

  .slots-swiper {
    padding: 0 10px 30px 10px;
  }

  .slot-card {
    max-width: 240px;
  }

  .slot-card-image {
    height: 120px;
  }

  .slot-card-content {
    padding: 20px;
  }

  .slot-card-title {
    font-size: 13px;
  }

  .slots-mobile h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  color: #ffbe1f;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active.swiper-pagination-bullet-active-main {
  background: var(--bg-list);
}

.bonuse-img-box {
  display: flex;
}

@media (max-width: 900px) {
  .bonus-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bonus-card-side {
    grid-column: auto;
    justify-items: center;
  }

  .bonus-card-actions {
    grid-column: auto;
    justify-items: center;
  }

  .bonus-card-row {
    justify-content: center;
    align-items: center;
  }

  .bonus-card-cta--register {
    display: inline-flex;
    width: 100%;
    max-width: 260px;
  }
}

@media (max-width: 600px) {
  .bonus-card {
    padding: 10px;
  }

  .bonus-card-title {
    font-size: 24px;
  }

  .bonus-card-eyebrow {
    font-size: 16px;
  }

  .bonus-card-media {
    min-height: 180px;
  }

  .bonus-card-side {
    width: 100%;
  }

  .bonus-card-cta--image {
    width: 100%;
    max-width: 260px;
  }

  .bonus-card-actions {
    width: 100%;
    margin-bottom: 20px;
  }

  .bonus-card-cta {
    max-width: 180px;
  }
}
