html {
  scroll-behavior: smooth;
}

:root {
  --bg: #03040e;
  --bg-rgb: 3, 4, 14;
  --panel: #080c1e;
  --panel-soft: #060919;
  --text: #e8f0ff;
  --muted: #6b7fa8;
  --accent: #00e5ff;
  --accent-2: #ff2d78;
  --accent-3: #a855f7;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  --radius: 18px;
  --font: 'Bai Jamjuree', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --outline: rgba(0, 229, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(
      circle at 12% 18%,
      rgba(168, 85, 247, 0.16),
      transparent 28%
    ),
    radial-gradient(circle at 88% 6%, rgba(0, 229, 255, 0.12), transparent 26%),
    radial-gradient(circle at 45% 82%, rgba(255, 45, 120, 0.1), transparent 28%),
    radial-gradient(circle at 70% 50%, rgba(0, 229, 255, 0.05), transparent 35%),
    linear-gradient(160deg, #03040e 0%, #05081a 50%, #03040e 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

a {
  color: var(--accent-2);
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #fff;
  text-decoration: underline;
}

h1 {
  margin: 0 auto;
  font-size: 25px;
}

.main-title {
    line-height: 1.1;
    max-width: 1200px;
    /* margin: 28px auto 12px; */
    font-size: 30px;
    padding: 22px;
    /* background: linear-gradient(120deg, rgba(245, 165, 36, 0.16), rgba(63, 216, 193, 0.08)); */
    /* border-radius: 20px; */
    /* border: 1px solid var(--outline); */
    /* box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45); */
}
@media (max-width: 720px) {
  .main-title{
    font-size: 20px;
  }
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.text-weight {
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.15);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.65);
}

/* backdrop-filter вынесен в псевдоэлемент, чтобы не создавать
   containing block для position:fixed потомков (баг мобильного меню) */
.topbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(3, 4, 14, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
}

.brand {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* ── Nav list (desktop) ── */
.nav-links {
  /* display: flex; */
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nav-item {
  position: relative;
}

.nav-item-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 13px;
  border-radius: 10px;
  background: transparent;
  border: none;
  color: var(--text);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.nav-item-btn:hover,
.nav-item:hover .nav-item-btn {
  background: rgba(0, 229, 255, 0.1);
  color: #fff;
}

.nav-arrow {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.2s;
  pointer-events: none;
}

.nav-item:hover .nav-arrow {
  transform: rotate(180deg);
}

/* Desktop dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%; /* без зазора — иначе мышь теряет hover при переходе */
  left: 0;
  min-width: 230px;
  background: rgba(6, 9, 28, 0.98);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 12px;
  padding: 12px 6px 6px; /* padding-top вместо gap создаёт визуальный отступ */
  list-style: none;
  margin: 0;
  z-index: 200;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-dropdown li a {
  display: block;
  padding: 9px 14px;
  border-radius: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.nav-dropdown li a:hover {
  background: rgba(0, 229, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

/* Mobile-only elements – hidden on desktop */
.nav-mobile-header,
.nav-mobile-footer {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social {
  display: flex;
  gap: 10px;
  margin: 0 auto;
}

.social a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--text);
  /* border: 1px solid var(--outline); */
  /* background: rgba(255, 255, 255, 0.03); */
  transition: 0.2s ease;
}

.social a:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.45);
  background: linear-gradient(120deg, #a855f7, #00e5ff);
  color: #03040e;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(168, 85, 247, 0.4);
  transition: 0.18s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
  background: linear-gradient(120deg, #00e5ff, #00b8cc);
  box-shadow: 0 16px 32px rgba(0, 229, 255, 0.4);
  color: #03040e;
}

.subscribe {
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--text);
  border-radius: 8px;
}

.content {
  padding: 0 0 36px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px 46px;
  /* display: grid; */
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: flex-start;
  overflow: visible;
}

.feed {
  display: flex;
  flex-direction: column;
  gap: 28px;
  overflow: hidden;
}

.feed-text {
  padding: 15px;
}

.post-card {
  background: linear-gradient(
    135deg,
    rgba(168, 85, 247, 0.1),
    rgba(6, 9, 25, 0.97)
  );
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px 26px;
  display: grid;
  grid-template-columns: minmax(280px, 340px) 1fr;
  gap: 22px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--outline);
  transition: 0.2s ease;
}

.post-card::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -55%;
  width: 60%;
  height: 160%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(0, 229, 255, 0.14),
    transparent 60%
  );
  transform: rotate(8deg);
  opacity: 0.7;
  pointer-events: none;
}

.post-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-3),
    var(--accent),
    var(--accent-3)
  );
  opacity: 0.9;
  pointer-events: none;
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.55);
}

.media {
  display: flex;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #060c1e;
  border: 1px solid var(--outline);
  min-height: 200px;
  align-items: center;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  background: radial-gradient(
    circle at 50% 40%,
    rgba(0, 229, 255, 0.2),
    rgba(3, 4, 14, 0.85)
  );
}

.placeholder img {
  border-radius: 12px;
  width: 100%;
}

.chip-action {
  position: absolute;
  right: 12px;
  top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  color: #0c101c;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 14px 26px rgba(240, 101, 67, 0.4);
  cursor: pointer;
  font-size: 16px;
}

.body h2 {
  margin: 8px 0 12px;
  line-height: 1.3;
  font-size: 24px;
}

.body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.badge {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 13px;
  color: #0c101c;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-primary {
  background: linear-gradient(135deg, var(--accent), #80f0ff);
}

.badge-teal {
  background: linear-gradient(135deg, var(--accent-2), #ff80aa);
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

.card {
  background: linear-gradient(
    160deg,
    rgba(8, 12, 30, 0.97),
    rgba(5, 8, 22, 0.95)
  );
  border-radius: 18px;
  padding: 18px 18px 10px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.55);
  border: 1px solid var(--outline);
}

.search-card {
  background: var(--panel);
}

.card-title {
  font-size: 18px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--outline);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.search-box {
  margin: 16px 0 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  background: var(--panel-soft);
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-box input {
  border: none;
  outline: none;
  font-size: 15px;
  background: transparent;
  color: var(--text);
}

.search-box .btn {
  width: 110px;
  box-shadow: 0 8px 18px rgba(240, 101, 67, 0.3);
}

.recent-card {
  padding-bottom: 12px;
}

.recent-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.recent-list a{
  color: #00e5ff;
}
.recent-list a:hover{
  color: #ff2d78;
}

.recent-list li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.recent-list li:last-child {
  border-bottom: none;
}

.recommendations {
  padding: 0 24px 44px;
}

.rec-card {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(
    165deg,
    rgba(7, 10, 26, 0.97),
    rgba(5, 7, 20, 0.94)
  );
  border: 1px solid var(--outline);
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.6);
  padding: 18px 18px 24px;
}

.rec-card__title {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 18px;
  border: 1px solid var(--outline);
}

.rec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.rec-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
  background: var(--panel-soft);
  border-radius: 16px;
  padding: 10px 10px 14px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.25);
  transition: 0.18s ease;
}

.rec-item:hover {
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-3px);
}

.rec-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  min-height: 140px;
  background: #060c1e;
  display: grid;
  align-items: end;
}

.rec-thumb .badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
}

.rec-placeholder {
  background: linear-gradient(135deg, #a855f7, #00e5ff, #ff2d78);
  height: 100%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

.rec-item p {
  margin: 0;
  font-weight: 800;
  line-height: 1.3;
}

@media (max-width: 1024px) {
  .container {
    grid-template-columns: 1fr;
  }

  .post-card {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .topbar {
    padding: 5px 18px;
  }

  /* Mobile overlay */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    background: #0a0d1f;
    z-index: 1100;
    padding: 0;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
  }

  .nav.open {
    transform: translateX(0);
  }

  /* Backdrop */
  .nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    display: none;
  }

  .nav-backdrop.show {
    display: block;
  }

  /* Mobile header with logo */
  .nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 16px 70px 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  /* Close button — fixed in top-right corner of overlay */
  .nav-close {
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 1200;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: background 0.2s;
  }

  .nav-close:hover,
  .nav-close:active {
    background: rgba(255, 255, 255, 0.22);
  }

  /* Nav list accordion */
  .nav-links {
    flex: 1;
    width: 100%;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
  }

  .nav-item-btn {
    width: 100%;
    justify-content: space-between;
    padding: 17px 24px;
    border-radius: 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-item-btn:hover,
  .nav-item:hover .nav-item-btn {
    background: transparent;
    color: var(--text);
  }

  .nav-item.open .nav-item-btn {
    color: var(--accent);
    background: rgba(0, 229, 255, 0.06);
  }

  .nav-item.open .nav-arrow {
    transform: rotate(180deg);
  }

  /* Accordion dropdown — плавное выпадение через max-height */
  .nav-dropdown {
    position: static;
    display: block;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    backdrop-filter: none;
    min-width: unset;
  }

  .nav-item.open .nav-dropdown {
    max-height: 400px;
  }

  .nav-item:hover .nav-dropdown {
    max-height: 0;
  }

  .nav-item.open .nav-dropdown {
    max-height: 400px;
  }

  .nav-dropdown li a {
    padding: 14px 24px 14px 40px;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 15px;
    white-space: normal;
  }

  .nav-dropdown li a:hover {
    background: rgba(0, 229, 255, 0.08);
  }

  /* CTA button */
  .nav-actions {
    width: 100%;
    padding: 20px 24px;
    justify-content: center;
  }

  .subscribe {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  /* Mobile footer */
  .nav-mobile-footer {
    display: block;
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: var(--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  .nav-mobile-footer p {
    margin: 0;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 201;
  }

  .content {
    padding: 0 0;
  }

  .post-card {
    padding: 14px 14px 20px;
  }

  .body h2 {
    font-size: 22px;
  }

  .recommendations {
    padding: 0 16px 28px;
  }

  .rec-card {
    padding: 16px 12px 18px;
  }

  .rec-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 80%;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  .rec-item {
    scroll-snap-align: start;
  }
}

.img-box {
  width: 100%;
  height: auto;
  overflow: hidden;
  margin: 0px auto 15px auto;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}


/* =============================================
   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: 14px;
  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: var(--text-muted);
  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);
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 15px 10px;
  background: linear-gradient(135deg, #a855f7, #00e5ff);
  border-radius: 0.75rem;
  transition: all 0.12s ease;
  max-width: 360px;
  height: 60px;
  color: #03040e;
  margin: 20px auto;
  border: 1px solid rgba(0, 229, 255, 0.45);
  box-shadow: 0 18px 30px rgba(168, 85, 247, 0.4);
}

.button:hover {
  background: linear-gradient(135deg, #00e5ff, #00b8cc);
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 229, 255, 0.4);
  color: #03040e;
}

.button:active {
  letter-spacing: 1px;
  transform: translateY(4px);
  background: linear-gradient(135deg, #00b8cc, #a855f7);
}

/* Pros and Cons Table Styles */
.pros-cons-table {
  margin: 32px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--outline);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(
    135deg,
    rgba(6, 9, 24, 0.97),
    rgba(4, 7, 20, 0.95)
  );
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.6;
}

.comparison-table th {
  padding: 20px 24px;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  border-bottom: 2px solid var(--outline);
  letter-spacing: 0.02em;
}

.pros-header {
  background: linear-gradient(
    135deg,
    rgba(255, 45, 120, 0.15),
    rgba(255, 45, 120, 0.08)
  );
  color: var(--accent-2);
  border-right: 1px solid var(--outline);
}

.cons-header {
  background: linear-gradient(
    135deg,
    rgba(240, 101, 67, 0.15),
    rgba(240, 101, 67, 0.08)
  );
  color: var(--accent-3);
}

.comparison-table td {
  padding: 24px 28px;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pros-cell {
  background: linear-gradient(
    135deg,
    rgba(255, 45, 120, 0.05),
    rgba(255, 45, 120, 0.02)
  );
  border-right: 1px solid var(--outline);
}

.cons-cell {
  background: linear-gradient(
    135deg,
    rgba(240, 101, 67, 0.04),
    rgba(240, 101, 67, 0.02)
  );
}

.comparison-table ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

.comparison-table li {
  margin-bottom: 12px;
  position: relative;
  color: var(--text);
  font-weight: 500;
  padding-left: 8px;
}

.comparison-table li:last-child {
  margin-bottom: 0;
}

.pros-cell li::before {
  content: '●';
  position: absolute;
  left: -12px;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 12px;
}

.cons-cell li::before {
  content: '●';
  position: absolute;
  left: -12px;
  color: var(--accent-3);
  font-weight: 900;
  font-size: 12px;
}

.comparison-table .highlight {
  color: var(--accent);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(245, 165, 36, 0.15), transparent);
  padding: 2px 6px;
  border-radius: 6px;
}

@media (max-width: 768px) {
  .pros-cons-table {
    margin: 24px -14px;
    border-radius: 0;
  }

  .comparison-table th {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
  }

  .comparison-table td {
    padding: 16px 14px;
  }

  .comparison-table {
    font-size: 13px;
    line-height: 1.5;
  }

  .comparison-table ul {
    padding-left: 14px;
  }

  .comparison-table li {
    margin-bottom: 10px;
    padding-left: 6px;
  }

  .pros-cell li::before,
  .cons-cell li::before {
    left: -10px;
    font-size: 10px;
  }

  .comparison-table .highlight {
    padding: 1px 4px;
    border-radius: 4px;
  }
}

.questions {
  /* max-width: 635px; */
}

@media (min-width: 768px) {
  .questions-faq {
    letter-spacing: 0.095rem;
    text-transform: uppercase;
    font-family: sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 101%;
    text-align: center;
  }
}

.questions-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--text);
  list-style: none;
}

.questions-content-box {
  &:hover .questions-title {
    color: var(--text);
  }

  &:hover .questions-plus {
    background: var(--text);
    border: 1px var(--panel) solid;
  }
}

.questions-cover {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.questions-title {
  display: grid;
  grid-template-columns: 1fr 20px;
  cursor: pointer;
  align-items: center;
  font-size: 22px;
  margin-bottom: 15px;
}

.questions-plus {
  border-radius: 0.375rem;
  min-width: 1.875rem;
  height: 1.875rem;
  padding: 0.25rem;
  background-color: rgba(0, 229, 255, 0.12);
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.top-line,
.bottom-line {
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #e48200;
}

.top-line {
  transform: rotate(90deg);
  transition: all 0.3s ease;
}

.questions-plus.active .top-line {
  transform: rotate(0deg);
}

.icon {
  width: 30px;
  height: 25px;
  fill: var(--text);
}

.questions-content {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}

.slots-table-wrapper {
  max-width: 600px;
  margin: 30px auto;
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #070c20, #040816);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.1);
}

.slots-table-title {
  margin: 0 0 12px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.slots-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  color: #e5f2ff;
}

.slots-table th,
.slots-table td {
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.slots-table th {
  text-align: left;
  font-weight: 600;
  color: #00e5ff;
  width: 45%;
}

.slots-table tr:last-child td {
  border-bottom: none;
}

.slots-table td strong {
  font-weight: 600;
  color: #ffffff;
}

.slots-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 480px) {
  .slots-table-wrapper {
    padding: 12px;
  }

  .slots-table-title {
    font-size: 1.2rem;
  }

  .slots-table th,
  .slots-table td {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

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

  & img {
    object-fit: contain;
  }
}

.casino-cards {
  margin: 10px 0 10px;
}

.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(280px, 1.05fr) minmax(320px, 1.25fr);
  grid-template-areas: "media main";
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(0, 229, 255, 0.18);
  background: linear-gradient(120deg, #05081a, #080c22 60%, #05081a);
  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(0, 229, 255, 0.18);
  /* background: linear-gradient(120deg, #05081a, #080c22 60%, #05081a); */
  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, #06091e, #0a0e28 55%, #05081a);
}

.bonus-card--violet {
  background: linear-gradient(120deg, #080520, #0d0830 55%, #060418);
}

.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 {
  grid-area: media;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  /* background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 229, 255, 0.25),
      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(0, 229, 255, 0.25),
      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 {
  grid-area: main;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 18px 12px;
  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: #00e5ff;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(0, 229, 255, 0.4);
}

.bonus-card-side {
  grid-area: side;
  min-width: 0;
  background: rgba(4, 6, 18, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 16px;
  padding: 14px 12px;
  display: grid;
  gap: 12px;
  justify-items: stretch;
  align-self: center;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

.bonus-card-actions {
  display: grid;
  gap: 12px;
  justify-items: center;
  width: 100%;
  margin-top: 8px;
}

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

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

.bonus-card-row strong {
  flex: 0 0 auto;
  font-size: 15px;
  text-align: right;
  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%;
  max-width: 320px;
  min-height: 54px;
}

@media (min-width: 901px) {
  .bonus-card {
    gap: 28px;
    padding: 26px 28px;
  }

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

  .bonus-card-main {
    align-items: center;
    justify-content: center;
    gap: 22px;
    padding: 20px 12px 20px 4px;
  }

  .bonus-card-title {
    font-size: 42px;
    line-height: 1.05;
  }

  .bonus-card-actions {
    margin-top: 16px;
  }
}

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

.bonus-card-cta--image {
  background: linear-gradient(180deg, #ff2d78, #990046);
  border: none;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
  text-align: center;
  box-shadow: 0 8px 20px rgba(255, 45, 120, 0.45);
}

.bonus-card-cta--register {
  display: none;
  background: linear-gradient(135deg, #00e5ff, #80f0ff);
  color: #03040e;
  border: 1px solid rgba(0, 229, 255, 0.7);
  /* box-shadow: 0 12px 22px rgba(0, 229, 255, 0.35); */
}

.bonus-card-cta--register:hover {
  background: linear-gradient(135deg, #80f0ff, #00e5ff);
}

.casino-cards2 {
  margin: 30px 0 40px;
}

.promo-swiper {
  padding: 8px 6px 32px;
}

.promo-swiper .swiper-slide {
  height: auto;
}

.promo-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 1.1fr) minmax(220px, 0.9fr);
  gap: 12px;
  padding: 22px 28px;
  background: #06091c;
  border-radius: 22px;
  border: 1px solid rgba(0, 229, 255, 0.12);
  overflow: hidden;
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.6);
}

.promo-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 10%,
      rgba(255, 255, 255, 0.08),
      transparent 55%
    ),
    radial-gradient(circle at 80% 90%, rgba(0, 0, 0, 0.6), transparent 60%);
  pointer-events: none;
}

.promo-card--gold {
  background: linear-gradient(120deg, #060a1e 0%, #0a0e28 60%, #060a1e 100%);
}

.promo-card--blue {
  background: linear-gradient(120deg, #05081c 0%, #080a24 60%, #060920 100%);
}

.promo-card--violet {
  background: linear-gradient(120deg, #080520 0%, #100830 60%, #060418 100%);
}

.promo-card-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #f3f3f3;
}

.promo-card-eyebrow {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.promo-card-title {
  margin: 0;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
}

.promo-card-subtitle {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
}

.promo-card-actions {
  margin-top: 18px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.promo-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  height: 46px;
  padding: 0 22px;
  transition: 0.2s ease;
}

.promo-card-btn--primary {
  background: linear-gradient(180deg, #ff2d78, #990046);
  color: #ffffff;
  box-shadow: 0 12px 18px rgba(255, 45, 120, 0.45);
}

.promo-card-btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.promo-card-btn--icon {
  width: 46px;
  padding: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.promo-card-media {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 240px;
}

.promo-card-media img {
  width: 100%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}

.promo-swiper .swiper-pagination {
  bottom: 0;
}

.promo-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.promo-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

@media (max-width: 820px) {
  .promo-card {
    grid-template-columns: 1fr;
    padding: 18px 20px;
  }

  .promo-card-media {
    order: -1;
    justify-content: center;
    min-height: 200px;
  }

  .promo-card-title {
    font-size: 30px;
  }

  .promo-card-subtitle {
    font-size: 20px;
  }

  .promo-card-actions {
    width: 100%;
  }

  .promo-card-btn--primary {
    flex: 1;
  }
}

@media (max-width: 520px) {
  .promo-card {
    border-radius: 20px;
  }

  .promo-card-title {
    font-size: 26px;
  }

  .promo-card-subtitle {
    font-size: 18px;
  }
}

.bonus-swiper .swiper-button-next,
.bonus-swiper .swiper-button-prev {
  top: 57%;
  color: var(--accent);
  width: 36px;
  height: 36px;
  background: rgba(3, 4, 14, 0.92);
  border-radius: 50%;
  border: 1px solid rgba(0, 229, 255, 0.25);
}

.bonus-swiper .swiper-button-next::after,
.bonus-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.bonus-swiper .swiper-pagination {
  bottom: 6px;
}

.bonus-swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.25);
  opacity: 1;
}

.bonus-swiper .swiper-pagination-bullet-active {
  background: var(--accent);
}

/* Slots Mobile Container */
.slots-mobile {
  margin: 40px 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.slots-mobile h3 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: var(--text);
  font-weight: 700;
}

/* Slots Swiper Container */
.slots-swiper {
  padding: 0 20px 50px 20px;
  overflow: visible;
  position: relative;
}

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

/* Slot Card Styles */
.slot-card {
  width: 100%;
  max-width: 300px;
  background: linear-gradient(
    135deg,
    rgba(22, 10, 11, 0.97),
    rgba(18, 8, 9, 0.95)
  );
  border-radius: var(--radius);
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.slot-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.55);
}

/* Slot Card Image Container */
.slot-card-image {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.slot-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slot Card Badge */
.slot-card-badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0c101c;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Slot Card Content */
.slot-card-content {
  padding: 16px;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.slot-card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  text-align: center;
}

.slot-card-provider {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  font-weight: 500;
}

.slot-card-rtp {
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
}

.slot-card-content a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: linear-gradient(135deg, var(--accent-3), var(--accent));
  color: #0c101c;
  font-weight: 700;
  font-size: 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s ease;
  margin-top: auto;
}

.slot-card-content a:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-1px);
}

/* Legacy simple card styles for compatibility */
.slot-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.slot-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.slot-card p {
  margin: 0;
  font-size: 13px;
  color: var(--accent);
  text-align: center;
  font-weight: 600;
}

/* Swiper Navigation Buttons */
.slots-swiper .swiper-button-next,
.slots-swiper .swiper-button-prev {
  color: var(--accent-2);
  width: 35px;
  height: 35px;
  margin-top: -17px;
  background: var(--panel);
  border: 1px solid var(--outline);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: 0.2s ease;
}

.slots-swiper .swiper-button-next:hover,
.slots-swiper .swiper-button-prev:hover {
  background: var(--panel-soft);
  border-color: var(--accent-2);
  transform: scale(1.05);
}

.slots-swiper .swiper-button-next::after,
.slots-swiper .swiper-button-prev::after {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-2);
}

.slots-swiper .swiper-button-next {
  right: 10px;
}

.slots-swiper .swiper-button-prev {
  left: 10px;
}

/* Swiper Pagination */
.slots-swiper .swiper-pagination {
  bottom: 15px;
}

.slots-swiper .swiper-pagination-bullet {
  background: rgba(0, 229, 255, 0.3);
  opacity: 1;
  width: 8px;
  height: 8px;
  transition: 0.2s ease;
}

.slots-swiper .swiper-pagination-bullet-active {
  background: var(--accent-2);
  width: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 12px rgba(0, 229, 255, 0.4);
}

@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) {
  .dc{
    display: none;
  }
  .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: #00e5ff;
}

.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 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "media"
      "main"
      "side"
      "actions";
    gap: 14px;
    text-align: center;
  }

  .bonus-card-side {
    justify-items: stretch;
    align-self: stretch;
  }

  .bonus-card-actions {
    justify-items: center;
    align-self: stretch;
    margin-top: 0;
  }

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

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

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

  .bonus-card-title {
    font-size: 22px;
    line-height: 1.2;
  }

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

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

  .bonus-card-side {
    width: 100%;
    padding: 12px 14px;
  }

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

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

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

  .bonus-card-row {
    font-size: 14px;
  }

  .bonus-card-row strong {
    font-size: 14px;
  }
}
     
/* ── Author Section ─────────────────────────────── */
.author { padding: 40px 0; }
.author__card {
  background: linear-gradient(160deg, rgba(12, 20, 33, 0.95), rgba(9, 14, 24, 0.9));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  padding: 40px 44px;
  max-width: 860px;
}
.author__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c7c7c7;
  margin-bottom: 14px;
}
.author__name {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  color: #ffd400;
  margin: 0 0 6px;
  line-height: 1.1;
}
.author__role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ffd400;
  margin: 0 0 20px;
  line-height: 1.5;
}
.author__divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 0 0 22px;
}
.author__bio {
  color: #c7c7c7;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 28px;
}
.author__links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.author__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffd400;
  color: #000;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity .2s;
}
.author__btn:hover { opacity: .85; }
.author__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  color: #fff;
  text-decoration: none;
  transition: background .2s;
}
.author__linkedin:hover { background: #0a66c2; }

.promo-code_block {
  margin: 18px 0 26px;
}

.promo-card-25 {
  background: #121212;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
  /* border: 1px solid #222; */
  max-width: 400px;
  margin: 0 auto;

}

.promo-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.promo-card__title {
  font-weight: 600;
  font-size: 16px;
}

.promo-card__sub {
  color: var(--muted);
  font-size: 12px;
  margin-top: 4px;
}

.promo-card__pill {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 5px;
  background: #e741431a;
  color: #e74143;
  border: 1px solid #e741434d;
}

.promo-card__code {
  position: relative;
  margin: 10px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0e0e0e;
  border: 1px solid #2a2a2a;
  font-family: "Courier New", monospace;
  color: #f1f1f1;
}

.promo-card__code-text {
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-weight: 700;
}

.promo-copy {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.promo-card__status {
  margin-left: auto;
  margin-right: 6px;
  font-size: 17px;
  font-weight: 600;
  /* font-family: var(--font-main); */
  background-color: #0e0e0e;
  color: #e74143;
  display: flex;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 5px;
  padding: 5px 0;
}

.promo-card__cta {
  width: 100%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
}

.promo-card__note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.cashback_block {
  margin: 20px 0 28px;
  max-width: 400px;
  margin: 0 auto;
}

.cashback-card {
  background: linear-gradient(180deg, #171717 0%, #111111 100%);
  border-radius: 22px;
  padding: 28px 24px 26px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cashback-card__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 10px;
  border: 1px solid rgba(234, 59, 59, 0.35);
  background: rgba(234, 59, 59, 0.1);
  color: #ff6b6b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.cashback-card__lead {
  font-size: 18px;
  color: #d9d9d9;
  font-weight: 600;
  margin-bottom: 6px;
}

.cashback-card__value {
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.cashback-card__tail {
  font-size: 20px;
  font-weight: 600;
  color: #d9d9d9;
  margin-bottom: 22px;
}

.cashback-card__cta {
  width: 100%;
  padding: 14px 16px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
}

.cashback-card__note {
  margin-top: 16px;
  font-size: 12px;
  color: #8a8f98;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* opacity: 0.7; */
  border-radius: 10px;

}

/* ── Casino Cards (cc) ── */
.cc-item {
  margin-bottom: 6px;
}

.cc-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid #d8dce6;
  border-radius: 14px;
  padding: 16px 20px;
  position: relative;
}

.cc-image-wrap {
  position: relative;
  flex-shrink: 0;
}

.cc-rank {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #1a2045;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 0 8px 0;
  z-index: 1;
  line-height: 1;
}

.cc-logo {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.cc-info {
  flex-shrink: 0;
  min-width: 150px;
}

.cc-name {
  font-size: 17px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.cc-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cc-score {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.cc-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 1px;
}

.cc-bonus {
  flex: 1;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
}

.cc-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #7a1c1c;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 14px 28px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s;
}

.cc-btn:hover {
  background: #921f1f;
  color: #ffffff;
}

.cc-disclaimer {
  margin: 6px 0 14px;
  text-align: center;
  font-size: 12px;
  color: #9aa0b0;
}

/* Mobile */
@media (max-width: 640px) {
  .cc-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
  }

  .cc-image-wrap {
    align-self: flex-start;
  }

  .cc-logo {
    width: 120px;
    height: 120px;
  }

  .cc-info {
    min-width: unset;
  }

  .cc-bonus {
    font-size: 14px;
  }

  .cc-btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
  }
}

/* ── Casino Table (ct) ── */
.ct-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid rgba(0, 229, 255, 0.15);
  margin-top: 16px;
}

.ct {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.ct thead tr {
  background: linear-gradient(90deg, #1a0a3d 0%, #0d1a4a 50%, #0a2a3d 100%);
}

.ct thead th {
  padding: 14px 18px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #c8d8ff;
  border-bottom: 2px solid rgba(0, 229, 255, 0.25);
  white-space: nowrap;
}

.ct tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 30, 0.6);
  transition: background 0.15s;
}

.ct tbody tr:last-child {
  border-bottom: none;
}

.ct tbody tr:hover {
  background: rgba(0, 229, 255, 0.06);
}

.ct tbody td {
  padding: 14px 18px;
  color: #c8d8ff;
  vertical-align: middle;
}

.ct tbody td:first-child a {
  color: #00e5ff;
  font-weight: 700;
  text-decoration: none;
}

.ct tbody td:first-child a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .ct thead th,
  .ct tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ===== TABLE OF CONTENTS ===== */
.toc {
  background: #1a1f2e;
  border: 1px solid #2a3050;
  border-radius: 10px;
  /* margin: 28px 0; */
  overflow: hidden;
}

.toc details {
  padding: 0;
}

.toc summary.toc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  color: #e0e6f0;
  cursor: pointer;
  user-select: none;
  list-style: none;
  gap: 10px;
}

.toc summary.toc-title::-webkit-details-marker {
  display: none;
}

.toc summary.toc-title::marker {
  display: none;
}

.toc-arrow {
  font-size: 12px;
  color: #7a8baa;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.toc details[open] .toc-arrow {
  transform: rotate(180deg);
}

.toc summary.toc-title:hover {
  color: #00e5ff;
}

.toc-list {
  margin: 0;
  padding: 0 20px 16px 36px;
  list-style: decimal;
}

.toc-list li {
  padding: 4px 0;
  font-size: 14px;
  line-height: 1.5;
}

.toc-list li a {
  color: #a0b0cc;
  text-decoration: none;
  transition: color 0.2s;
}

.toc-list li a:hover {
  color: #00e5ff;
  text-decoration: underline;
}

@media (max-width: 640px) {
  .toc summary.toc-title {
    font-size: 14px;
    padding: 12px 16px;
  }
  .toc-list {
    padding: 0 16px 14px 32px;
  }
  .toc-list li {
    font-size: 13px;
  }
}

/* ===== CONTENT TABLES (plain <table> inside article) ===== */
.content div table,
.content > table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  margin: 20px 0 28px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0, 229, 255, 0.12);
}

.content div table thead tr,
.content > table thead tr {
  background: linear-gradient(90deg, #1a0a3d 0%, #0d1a4a 50%, #0a2a3d 100%);
}

.content div table thead th,
.content > table thead th {
  padding: 13px 16px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #00e5ff;
  white-space: nowrap;
}

.content div table tbody tr,
.content > table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 12, 30, 0.55);
  transition: background 0.15s;
}

.content div table tbody tr:last-child,
.content > table tbody tr:last-child {
  border-bottom: none;
}

.content div table tbody tr:hover,
.content > table tbody tr:hover {
  background: rgba(0, 229, 255, 0.05);
}

.content div table tbody td,
.content > table tbody td {
  padding: 12px 16px;
  color: #c8d8ff;
  vertical-align: middle;
  line-height: 1.5;
}

.content div table tbody td strong,
.content > table tbody td strong {
  color: #e8f0ff;
}

/* Two-column pros/cons table — first column green, second red tint */
.content div table thead th:first-child:only-child ~ th,
.content div table thead th:nth-child(2):last-child {
  color: #ff6b7a;
}

.content div table tbody td:first-child {
  color: #a8f0c8;
}

.content div table tbody td:nth-child(2):last-child {
  color: #ffb3bb;
}

@media (max-width: 768px) {
  .content div table,
  .content > table {
    font-size: 13px;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .content div table thead th,
  .content > table thead th {
    padding: 10px 12px;
    font-size: 12px;
  }
  .content div table tbody td,
  .content > table tbody td {
    padding: 10px 12px;
  }
}

/* ===== CONTENT LISTS (plain <ul>/<ol> inside article) ===== */
.content div ul,
.content div ol {
  margin: 12px 0 20px;
  padding: 0;
  list-style: none;
}

.content div ul li,
.content div ol li {
  position: relative;
  padding: 8px 12px 8px 36px;
  color: #c0d0ef;
  font-size: 15px;
  line-height: 1.6;
  border-left: 2px solid rgba(0, 229, 255, 0.15);
  margin-bottom: 6px;
  background: rgba(0, 229, 255, 0.03);
  border-radius: 0 6px 6px 0;
  transition: background 0.15s, border-color 0.15s;
}

.content div ul li:hover,
.content div ol li:hover {
  background: rgba(0, 229, 255, 0.07);
  border-color: rgba(0, 229, 255, 0.4);
}

.content div ul li::before {
  content: "✦";
  position: absolute;
  left: 11px;
  top: 8px;
  font-size: 11px;
  color: #00e5ff;
  line-height: 1.6;
}

.content div ol {
  counter-reset: ol-counter;
}

.content div ol li::before {
  content: counter(ol-counter);
  counter-increment: ol-counter;
  position: absolute;
  left: 10px;
  top: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #00e5ff;
  line-height: 1.6;
}

.content div ul li strong,
.content div ol li strong {
  color: #e8f0ff;
}

/* Keep nav/questions lists unstyled */
.nav-list li,
.nav-dropdown li,
.questions-list li,
.toc-list li {
  padding: 0;
  background: none;
  border: none;
  margin: 0;
}

.nav-list li::before,
.nav-dropdown li::before,
.questions-list li::before,
.toc-list li::before {
  display: none;
}

@media (max-width: 640px) {
  .content div ul li,
  .content div ol li {
    font-size: 14px;
    padding: 7px 10px 7px 32px;
  }
}
