
@keyframes heroGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes gradShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes scanline {
  0%   { top: -4px; }
  100% { top: 100%; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes ticketFlipIn {
  0%   { opacity: 0; transform: perspective(800px) rotateX(90deg); }
  100% { opacity: 1; transform: perspective(800px) rotateX(0deg); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(212,175,106,0.15); }
  50%       { box-shadow: 0 0 36px rgba(212,175,106,0.30); }
}

.grad-text {
  background: linear-gradient(135deg, var(--neon) 0%, var(--primary-l) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
  color: #3B1420;
}
.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF6A, #E7D0A0);
  color: #1C0208;
  border-color: transparent;
  box-shadow: 0 10px 30px rgba(212,175,106,0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212,175,106,0.38);
  filter: brightness(1.06);
}

.btn-pink {
  background: linear-gradient(135deg, #4A0B1A, #6D1028);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(74,11,26,0.28);
}
.btn-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(74,11,26,0.42);
}

.btn-outline-pink {
  background: transparent;
  color: var(--neon);
  border-color: rgba(212,175,106,0.4);
}
.btn-outline-pink:hover {
  background: rgba(212,175,106,0.08);
  border-color: var(--neon);
  color: var(--primary);
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  padding: 28px 0 24px;

    --text:       rgba(255,255,255,0.92);
  --text-muted: rgba(255,255,255,0.60);
  --card-bg:    rgba(26,16,18,0.80);
  --card-bg2:   rgba(34,11,19,0.75);
  --border:     rgba(212,175,106,0.18);
  color: rgba(255,255,255,0.92);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
        radial-gradient(ellipse 35% 30% at 92% 5%,   rgba(212,175,106,0.15) 0%, transparent 100%),
        radial-gradient(ellipse 100% 70% at 50% 50%,  rgba(74,11,26,0.80)   0%, transparent 75%),
        radial-gradient(ellipse 60% 90% at -10% 55%,  rgba(109,16,40,0.85)  0%, transparent 65%),
        radial-gradient(ellipse 45% 55% at 110% 45%,  rgba(74,11,26,0.70)   0%, transparent 60%),
        #2E0A14;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,106,0.10);
  border: 1px solid rgba(212,175,106,0.28);
  color: #D4AF6A;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 15px;
  margin-bottom: 1.1rem;
  background: linear-gradient(135deg, #F5E7C1 0%, #D4AF6A 55%, #B88A3B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .accent {
  background: linear-gradient(135deg, #F5E7C1 0%, #D4AF6A 50%, #B88A3B 100%);
  background-size: 200% 200%;
  animation: gradShift 5s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.stats-row {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.stat-chip {
  background: rgba(26,16,18,0.55);
  border: 1px solid rgba(212,175,106,0.18);
  border-radius: 50px;
  padding: 8px 18px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  backdrop-filter: blur(12px);
}
.stat-num-big {
  font-size: 1.3rem;
  font-weight: 800;
  color: #D4AF6A;
  font-family: 'Orbitron', sans-serif;
}
.stat-label { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

.hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 1.75rem 20px 0.25rem;
}

.nw-hero__title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #fff;
  text-align: center;
}

.nw-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.nw-breadcrumb a        { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.nw-breadcrumb a:hover  { color: #D4AF6A; }
.nw-breadcrumb .sep     { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
.nw-breadcrumb [aria-current="page"] { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

.nw-authors {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.nw-authors__avatars {
  display: flex;
  list-style: none;
}
.nw-authors__avatars li {
  width: 40px; height: 40px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212,175,106,0.4);
  background: linear-gradient(135deg, #4A0B1A, #6D1028);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-left: -10px;
}
.nw-authors__avatars li:first-child { margin-left: 0; }
.nw-authors__meta     { display: flex; flex-direction: column; align-items: center; gap: 0; }
.nw-authors__credits  {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
}
.nw-authors__label  { font-size: 0.72rem; color: rgba(255,255,255,0.52); }
.nw-author-trigger  { position: relative; display: inline-flex; align-items: center; }
.nw-author-link {
  font-size: 14px; font-weight: 600;
  color: #D4AF6A; cursor: pointer;
  transition: color 0.15s;
  background: none; border: none; padding: 0; font-family: inherit;
}
.nw-author-link:hover { color: #E7D0A0; }
.nw-author-sep   { color: rgba(255,255,255,0.24); font-size: 14px; }
.nw-author-label { font-size: 14px; color: rgba(255,255,255,0.45); }

.nw-author-tooltip {
  --text:      #1C1714;
  --text-muted:#7A6F68;
  --card-bg:   #FFFFFF;
  --border:    rgba(212,175,106,0.20);

  position: fixed;
  z-index: 9999;
  width: 300px;
  max-width: min(90vw, 300px);
  background: #fff;
  border: 1px solid rgba(212,175,106,0.22);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 0.6rem;
  box-shadow: 0 16px 48px rgba(42,7,16,0.12), 0 2px 12px rgba(0,0,0,0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}
.nw-author-tooltip::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: #fff;
  border-left: 1px solid rgba(212,175,106,0.22);
  border-top: 1px solid rgba(212,175,106,0.22);
  rotate: 45deg;
}
.nw-author-tooltip.is-visible { opacity: 1; visibility: visible; pointer-events: auto; }

.nw-tooltip__content  { display: flex; flex-direction: column; gap: 0.55rem; padding-bottom: 0.5rem; }
.nw-tooltip__header   { display: flex; align-items: center; gap: 0.75rem; }
.nw-tooltip__avatar {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 50%; overflow: hidden;
  border: 2px solid rgba(212,175,106,0.25);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #4A0B1A, #6D1028);
  font-size: 1rem; font-weight: 800; color: #E7D0A0;
}
.nw-tooltip__avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.nw-tooltip__info      { display: flex; flex-direction: column; gap: 2px; }
.nw-tooltip__name      { font-size: 0.8rem; font-weight: 700; color: #1C1714; letter-spacing: 0.01em; }
.nw-tooltip__role      { font-size: 0.68rem; color: #7A6F68; }
.nw-tooltip__expertise { display: flex; align-items: flex-start; gap: 6px; color: #D4AF6A; }
.nw-tooltip__expertise svg { flex-shrink: 0; margin-top: 2px; }
.nw-tooltip__expertise ul  { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.nw-tooltip__expertise li  { font-size: 0.73rem; font-weight: 500; color: #1C1714; }
.nw-tooltip__bio       { font-size: 0.72rem; line-height: 1.55; color: #7A6F68; margin: 0; }
.nw-tooltip__footer {
  display: flex; align-items: center; justify-content: center;
  padding-top: 10px; margin-top: 4px;
  border-top: 1px solid rgba(212,175,106,0.14);
}
.nw-tooltip__bio-link {
  font-size: 0.73rem; font-weight: 700;
  color: #D4AF6A; text-decoration: none;
  transition: color 0.18s;
}
.nw-tooltip__bio-link:hover { color: #4A0B1A; }
.nw-tooltip__socials         { list-style: none; margin: 0; padding: 0; display: flex; gap: 8px; }
.nw-tooltip__socials a       { font-size: 0.72rem; color: #7A6F68; text-decoration: none; transition: color 0.18s; }
.nw-tooltip__socials a:hover { color: #D4AF6A; }

.nw-meta-bar { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.nw-update-date { font-size: 14px; color: rgba(255,255,255,0.45); }
.nw-update-date time { font-weight: 600; color: rgba(255,255,255,0.72); }
.nw-fact-checked {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.30);
  color: #4ade80; font-size: 14px; font-weight: 700;
  padding: 3px 9px; border-radius: 4px; letter-spacing: 0.06em;
}
.nw-editorial__btn {
  background: none; border: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 600;
  color: #D4AF6A; cursor: pointer; padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(212,175,106,0.5);
  display: inline-flex; align-items: center; gap: 4px;
  transition: color 0.18s, text-decoration-color 0.18s;
}
.nw-editorial__btn::after { content: ' ›'; }
.nw-editorial__btn:hover  { color: #E7D0A0; text-decoration-color: rgba(212,175,106,0.9); }

.nw-editorial__panel {
  position: fixed;
  inset: unset; top: 50%; left: 50%;
  translate: -50% -50%;
  width: min(90vw, 440px);
  background: #fff;
  color: #1C1714;
  border: 1px solid rgba(212,175,106,0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 0;
  box-shadow: 0 20px 60px rgba(42,7,16,0.16);
}
.nw-editorial__panel::backdrop { background: rgba(0,0,0,0.45); backdrop-filter: blur(4px); }
.nw-editorial__headline {
  display: block;
  font-size: 0.88rem; font-weight: 700;
  color: #D4AF6A; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 10px;
}
.nw-editorial__panel p { font-size: 0.82rem; color: #7A6F68; line-height: 1.7; margin-top: 8px; }
.nw-editorial__panel p a { color: #D4AF6A; text-decoration: underline; }

.nw-intro {
  font-size: clamp(0.95rem, 1.6vw, 1.05rem); color: rgba(255,255,255,0.65);
  line-height: 1.7; margin: 0;
  max-width: 720px;
}

.nw-intro a {
  color: #D4AF6A;
  text-decoration: underline;
}

.nw-intro__tail     { }
.nw-intro__more-btn { display: none; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,106,0.10);
  border: 1px solid rgba(212,175,106,0.28);
  color: #D4AF6A;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 0.06em;
}

.hero-picks {
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  flex-wrap: wrap;
}

.hero-picks .ticker-block {
  display: flex; align-items: stretch;
  flex: 1 1 260px; max-width: 320px; min-height: 64px;
  background: rgba(26,16,18,0.55);
  border: 1px solid rgba(212,175,106,0.16);
  border-radius: 10px; overflow: hidden;
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: perspective(800px) rotateX(90deg);
  transform-origin: center top;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-picks .ticker-block:hover {
  border-color: rgba(212,175,106,0.35);
  box-shadow: 0 4px 16px rgba(212,175,106,0.10);
}
.hero-picks .ticker-block.ticket-0 { animation: ticketFlipIn 0.7s ease forwards 0.4s; }
.hero-picks .ticker-block.ticket-1 { animation: ticketFlipIn 0.7s ease forwards 0.75s; }
.hero-picks .ticker-block.ticket-2 { animation: ticketFlipIn 0.7s ease forwards 1.1s; }

.hero-picks .ticker-block .img-wrap {
  width: 76px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(26,16,18,0.60);
  border-right: 1px solid rgba(212,175,106,0.10);
}
.hero-picks .ticker-block .img-wrap > div {
  width: 84%; height: 84%;
  display: flex; align-items: center; justify-content: center;
  padding: 6px; border-radius: 6px;
}
.hero-picks .ticker-block .img-wrap > div img {
  max-width: 100%; max-height: 38px; width: auto; object-fit: contain;
}
.hero-picks .ticker-block .info {
  padding: 8px 10px;
  flex: 1; min-width: 0;
  display: flex; flex-direction: row; align-items: center; justify-content: space-between; gap: 8px;
  text-align: left;
}
.hero-picks .ticker-block .info .value {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  min-width: 0;
  font-family: 'Orbitron', sans-serif;
  font-weight: 700; line-height: 1.25;
  background: linear-gradient(135deg, #E7D0A0, #D4AF6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-picks .ticker-block .info .value .value-main { font-size: 0.78rem; white-space: nowrap; }
.hero-picks .ticker-block .info .value .value-spins { font-size: 0.68rem; font-weight: 600; white-space: nowrap; }

.hero-picks .ticker-block .info .cas-button {
  display: flex; align-items: center; justify-content: center;
  height: 30px; font-size: 0.58rem;
  font-family: 'Orbitron', sans-serif; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0 8px; border-radius: 6px;
  text-decoration: none; cursor: pointer; border: none;
  transition: all 0.25s ease;
  flex-shrink: 0; white-space: nowrap;
}
.hero-picks .ticker-block .info .cas-button.dark {
  background: linear-gradient(135deg, #7A1530, #9E1F3E);
  color: #F5E7C1;
  box-shadow: 0 4px 12px rgba(74,11,26,0.35);
}
.hero-picks .ticker-block .info .cas-button.dark:hover {
  box-shadow: 0 6px 18px rgba(74,11,26,0.50);
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.hero .btn-primary,
.hero .btn-pink {
  background: linear-gradient(135deg, #7A1530, #9E1F3E);
  color: #F5E7C1;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(74,11,26,0.35);
}
.hero .btn-primary:hover,
.hero .btn-pink:hover {
  box-shadow: 0 12px 32px rgba(74,11,26,0.50);
  filter: brightness(1.1);
}

@media (max-width: 1200px) {
  .hero-inner { max-width: 700px; }
}
@media (max-width: 768px) {
  .hero { padding: 28px 0; }
  .hero-inner { padding: 1.5rem 16px; gap: 1rem; }
  .nw-breadcrumb [aria-current="page"] { display: none; }
  .hero h1 { font-size: 40px; }
  .nw-authors { flex-direction: row; align-items: center; gap: 8px; flex-wrap: wrap; }
  .nw-authors__avatars li { width: 30px; height: 30px; font-size: 0.58rem; margin-left: -8px; }
  .nw-authors__meta { flex: 1; min-width: 0; flex-direction: column; align-items: center; gap: 0; }
  .nw-meta-bar { width: 100%; flex-basis: 100%; margin-top: 4px; }
  .nw-author-link { font-size: 13px; }
  .nw-author-label, .nw-author-sep { font-size: 12px; }
  .hero-picks { flex-direction: column; align-items: stretch; }
  .hero-picks .ticker-block { flex: none; width: 100%; max-width: none; min-height: 62px; }
}
@media (max-width: 768px) {
  .nw-intro__tail.hidden { display: none; }
  .nw-intro__more-btn {
    display: inline-flex; align-items: center; gap: 4px;
    margin-top: 6px;
    background: none; border: none; padding: 0;
    font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600;
    color: #D4AF6A; cursor: pointer;
    text-decoration: underline; text-underline-offset: 3px;
    text-decoration-color: rgba(212,175,106,0.45);
  }
  .nw-intro__more-btn[aria-expanded="true"] { color: rgba(255,255,255,0.5); text-decoration: none; }
}

@media (max-width: 480px) {
  .hero-inner { padding: 1rem 12px; gap: 0.75rem; }
}

.casinos-section {
  padding: 72px 0;
  background: var(--bg);
}

.casinos-header {
  text-align: center;
  margin-bottom: 40px;
}

.casino-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.casino-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(42,7,16,0.05), 0 1px 4px rgba(0,0,0,0.04);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.casino-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(42,7,16,0.10), 0 2px 8px rgba(0,0,0,0.06);
  border-color: rgba(212,175,106,0.30);
}
.casino-card.top-card {
  border-color: rgba(212,175,106,0.30);
  box-shadow: 0 8px 32px rgba(42,7,16,0.08), 0 0 0 1px rgba(212,175,106,0.15);
}
.casino-card.top-card:hover {
  box-shadow: 0 20px 60px rgba(42,7,16,0.12), 0 0 24px rgba(212,175,106,0.15);
}

.casino-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.casino-rank {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4A0B1A, #6D1028);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  color: #E7D0A0;
}
.casino-rank.gold   { background: linear-gradient(135deg, #D4AF6A, #E7D0A0); color: #1C0208; }
.casino-rank.silver { background: linear-gradient(135deg, #C0C0C0, #E0E0E0); color: #1C0208; }
.casino-rank.bronze { background: linear-gradient(135deg, #CD7F32, #E8A96A); color: #1C0208; }

.casino-logo {
  flex-shrink: 0;
  width: 110px; height: 64px;
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #F9F6F1;
  padding: 8px;
}
.casino-logo img { max-width: 100%; max-height: 48px; object-fit: contain; }

.casino-info { flex: 1; min-width: 160px; }
.casino-name {
  font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 2px;
}
.casino-rating-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.casino-stars      { color: #D4AF6A; font-size: 0.85rem; }
.casino-score      { font-size: 0.78rem; font-weight: 700; color: var(--text); }
.casino-score-sub  { font-size: 0.72rem; color: var(--text-muted); }
.casino-tags       { display: flex; gap: 6px; flex-wrap: wrap; }
.casino-tag {
  font-size: 0.68rem; font-weight: 500;
  background: rgba(74,11,26,0.06);
  color: #4A0B1A;
  border: 1px solid rgba(74,11,26,0.12);
  padding: 2px 8px; border-radius: 4px;
}

.casino-bonus { text-align: center; min-width: 120px; flex-shrink: 0; }
.casino-bonus-amount {
  font-size: 1.25rem; font-weight: 800;
  color: var(--text); line-height: 1.2;
  display: inline-block;
  border-bottom: 2px solid #D4AF6A;
  padding-bottom: 2px;
}
.casino-bonus-label { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }

.casino-meta { display: flex; gap: 20px; flex-shrink: 0; }
.casino-meta-item  { display: flex; flex-direction: column; gap: 3px; min-width: 60px; }
.casino-meta-label { font-size: 0.65rem; color: var(--text-muted); white-space: nowrap; }
.casino-meta-val   { font-size: 0.82rem; font-weight: 600; color: var(--text); white-space: nowrap; }

.casino-cta { flex-shrink: 0; }
.casino-cta .btn {
  padding: 10px 20px;
  font-size: 0.62rem;
  font-family: 'Orbitron', sans-serif;
  border-radius: 6px;
  background: linear-gradient(135deg, #7A1530, #9E1F3E);
  color: #F5E7C1;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(74,11,26,0.30);
}
.casino-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74,11,26,0.45);
  filter: brightness(1.08);
}

.top-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: linear-gradient(135deg, #D4AF6A, #E7D0A0);
  color: #1C0208;
  font-size: 0.62rem; font-weight: 800;
  padding: 3px 10px; border-radius: 4px;
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.casino-expand-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 9px;
  background: rgba(74,11,26,0.02);
  border: none; border-top: 1px solid rgba(212,175,106,0.10);
  color: var(--text-muted); font-size: 0.78rem; font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.casino-expand-btn:hover { background: rgba(74,11,26,0.04); color: var(--primary); }
.casino-expand-btn svg  { width: 14px; height: 14px; transition: transform 0.2s; flex-shrink: 0; }
.casino-card.is-expanded .casino-expand-btn { color: var(--neon); }
.casino-card.is-expanded .casino-expand-btn svg { transform: rotate(180deg); }

.casino-details { height: 0; overflow: hidden; border-top: 1px solid rgba(212,175,106,0.10); }
.casino-details-inner { display: flex; flex-direction: column; gap: 16px; padding: 18px 20px 22px; }

.bonus-value {
  font-size: 1.4rem; font-weight: 800;
  background: linear-gradient(135deg, #4A0B1A, #D4AF6A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

@media (max-width: 900px) {
  .casino-meta { display: none; }
}
@media (max-width: 640px) {
  .casino-row { gap: 12px; padding: 14px 14px; }
  .casino-logo { width: 80px; height: 48px; }
  .casino-bonus { display: none; }
  .casino-cta .btn { padding: 9px 14px; font-size: 0.68rem; }
}

.tt-section {
  padding: 30px 0;
  background: var(--card-bg2);
}
.tt-heading { text-align: center; margin-bottom: 16px; }
.tt-heading .section-title,
.casinos-header .section-title {
  background: linear-gradient(135deg, #D4AF6A 0%, #9E1F3E 40%, #7A1530 70%, #4A0B1A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.new-tt-filters-container {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.new-tt-filters-toggle {
  display: none; position: relative;
  width: 100%; height: 50px;
  padding: 0 52px 0 44px;
  border: none; border-radius: 10px;
  background: rgba(74,11,26,0.06);
  font-size: 15px; font-weight: 700; font-family: inherit;
  color: var(--text); text-align: left;
  cursor: pointer; margin-bottom: 12px;
}
.new-tt-filters-toggle::before {
  content: '';
  position: absolute;
  width: 18px; height: 14px;
  top: 50%; left: 16px; margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' fill='none'%3E%3Cpath d='M0 1h18M4 7h10M7 13h4' stroke='%234A0B1A' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.new-tt-filters-toggle::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  top: 50%; right: 18px; margin-top: -7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(135deg);
  transition: transform 0.2s, margin-top 0.2s;
}
.new-tt-filters-container.filters-open .new-tt-filters-toggle::after { transform: rotate(-45deg); margin-top: -3px; }

.new-tt-filters { display: flex; gap: 10px; }
.new-tt-filter  { position: relative; flex: 1; z-index: 1; transition: z-index 0.15s; }
.new-tt-filter.is-open { z-index: 10; }

.new-tt-filter-toggle {
  position: relative;
  height: 46px; padding: 0 40px 0 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card-bg);
  font-size: 14px; font-weight: 600; font-family: inherit;
  color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, box-shadow 0.15s;
  user-select: none;
  display: flex; align-items: center;
  box-shadow: 0 1px 4px rgba(42,7,16,0.04);
  width: 100%;
}
.new-tt-filter-toggle::after {
  content: '';
  position: absolute;
  width: 8px; height: 8px;
  top: 50%; right: 16px; margin-top: -7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(135deg);
  transition: transform 0.15s, margin-top 0.15s;
}
.new-tt-filter.is-open .new-tt-filter-toggle { border-color: var(--neon); color: var(--primary); box-shadow: 0 0 0 3px rgba(212,175,106,0.12); }
.new-tt-filter.is-open .new-tt-filter-toggle::after { transform: rotate(-45deg); margin-top: -3px; }
.new-tt-filter-toggle[data-active]::before {
  content: attr(data-active);
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px;
  margin-right: 8px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--neon); color: #1C0208;
  font-size: 11px; font-weight: 700;
}

.new-tt-filter-dropdown {
  position: absolute;
  width: 100%; min-width: 220px;
  top: calc(100% + 5px); left: 0;
  padding: 8px 6px;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.22);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(42,7,16,0.10);
  transform-origin: 50% 0;
  transform: scaleY(0.85) translateY(-4px);
  opacity: 0; visibility: hidden;
  transition: transform 0.15s, opacity 0.15s, visibility 0.15s;
  z-index: 10;
}
.new-tt-filter:last-child .new-tt-filter-dropdown { left: auto; right: 0; transform-origin: 100% 0; }
.new-tt-filter.is-open .new-tt-filter-dropdown    { transform: scaleY(1) translateY(0); opacity: 1; visibility: visible; }

.new-tt-filter-group { padding: 6px 8px; border-radius: 6px; }

.new-tt-filter-checkbox { position: relative; padding: 1px 0; }
.new-tt-filter-checkbox + .new-tt-filter-checkbox { margin-top: 2px; }
.new-tt-filter-checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; visibility: hidden; }
.new-tt-filter-checkbox label {
  position: relative; display: block;
  padding: 6px 32px 6px 0;
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  cursor: pointer; transition: color 0.12s; user-select: none;
}
.new-tt-filter-checkbox label::before {
  content: '';
  position: absolute; width: 16px; height: 16px;
  top: 50%; right: 0; margin-top: -8px;
  border: 1.5px solid rgba(212,175,106,0.28);
  border-radius: 3px;
  transition: border-color 0.12s, background 0.12s;
}
.new-tt-filter-checkbox input:checked + label           { color: var(--text); }
.new-tt-filter-checkbox input:checked + label::before   { background: var(--neon); border-color: var(--neon); }
.new-tt-filter-checkbox input:checked + label::after {
  content: '';
  position: absolute; width: 9px; height: 5px;
  top: 50%; right: 3px; margin-top: -4px;
  border-bottom: 1.5px solid #1C0208;
  border-left: 1.5px solid #1C0208;
  transform: rotate(-45deg);
}
.new-tt-filter-checkbox label:hover             { color: var(--text); }
.new-tt-filter-checkbox label:hover::before     { border-color: var(--neon); }

.tt-items { display: flex; flex-direction: column; gap: 20px; padding: 16px 0; }

.tt-card-wrap { position: relative; font-family: 'Orbitron', sans-serif; }

.tt-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(42,7,16,0.05);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.tt-card:hover { border-color: rgba(212,175,106,0.30); box-shadow: 0 6px 24px rgba(42,7,16,0.08); }

.tt-item { display: flex; align-items: stretch; padding: 0; flex-wrap: wrap; }

.tt-sep { align-self: stretch; width: 1px; margin: 16px 0; background: rgba(212,175,106,0.16); flex-shrink: 0; }

.tt-rank {
  position: absolute;
  top: -8px; left: -8px;
  z-index: 2;
  width: 28px; height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #D4AF6A, #E7D0A0);
  color: #1C0208;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  display: flex;
  align-items: center; justify-content: center;
}

.tt-logo { flex-shrink: 0; position: relative; width: 140px; align-self: center; margin: 10px 8px 10px 14px; }
.tt-logo-wrap {
  width: 140px; height: 90px;
  border-radius: 8px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(212,175,106,0.14);
  background: #F9F6F1; padding: 8px;
}
.tt-logo-wrap img     { max-width: 80%; max-height: 80%; object-fit: contain; }
.tt-logo-text         { font-size: 12px; font-weight: 700; color: var(--text); text-align: center; padding: 0 8px; line-height: 1.2; }
.tt-item-badge {
  position: absolute;
  top: -14px; left: 90px; transform: translateX(-50%);
  z-index: 3;
  background: linear-gradient(135deg, #D4AF6A, #E7D0A0);
  color: #1C0208; font-size: 12px; font-weight: 800;
  padding: 6px 16px; border-radius: 20px;
  white-space: nowrap; letter-spacing: 0.04em;
  box-shadow: 0 4px 10px rgba(212,175,106,0.35);
}

.tt-info { flex: 1; min-width: 0; max-width: 160px; padding: 10px 14px 10px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.tt-name   { font-weight: 700; font-size: 16px; line-height: 1.35; color: var(--text); text-align: center; }
.tt-rating {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: center;
  color: #D4AF6A; font-size: 13px;
  background: rgba(212,175,106,0.08);
  border: 1px solid rgba(212,175,106,0.25);
  border-radius: 20px;
  padding: 4px 10px;
}
.tt-rating span { color: var(--text); font-weight: 700; }

.tt-bonus-col { flex: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; min-width: 0; padding: 10px 14px; }
.tt-bonus-label { font-family: 'Inter', sans-serif; font-size: 12px; color: var(--text-muted); }
.tt-bonus {
  font-size: 26px; color: var(--text); font-weight: 700; line-height: 1.35;
  display: block; width: 100%; text-align: center;
  border-bottom: 1px solid #D4AF6A;
  padding-bottom: 2px;
}

.tt-meta       { display: flex; flex-direction: row; align-items: center; gap: 20px; flex-shrink: 0; }
.tt-meta-item  { display: flex; flex-direction: column; align-items: center; gap: 0; min-width: 60px; }
.tt-meta-label { font-family: 'Inter', sans-serif; font-size: 11px; color: var(--text-muted); white-space: nowrap; }
.tt-meta-val   { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: var(--text); white-space: nowrap; }
.tt-meta-val.pink { color: var(--primary); }
.tt-meta-sep   { width: 1px; height: 24px; background: rgba(42,7,16,0.20); flex-shrink: 0; }

.tt-cta { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: 10px 14px; }
.tt-cta .btn {
  width: 200px;
  padding: 13px 0;
  font-size: 14px;
  font-family: 'Orbitron', sans-serif;
  border-radius: 6px;
  background: linear-gradient(135deg, #7A1530, #9E1F3E);
  color: #F5E7C1;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(74,11,26,0.30);
  justify-content: center;
}
.tt-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(74,11,26,0.45);
  filter: brightness(1.08);
}
.tt-review-link {
  font-size: 14px;
  color: #A9762C;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-align: center;
  transition: color 0.15s;
}
.tt-review-link:hover { color: #9E1F3E; }

.tt-no-results { padding: 48px 20px; text-align: center; color: var(--text-muted); font-size: 15px; }
.tt-no-results button {
  background: none; border: none; color: var(--neon);
  cursor: pointer; text-decoration: underline;
  font-size: inherit; font-family: inherit; padding: 0;
}

.tt-expand-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 9px;
  background: rgba(74,11,26,0.02);
  border: none; border-top: 1px solid rgba(212,175,106,0.10);
  color: var(--text-muted); font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: background 0.15s, color 0.15s;
}
.tt-expand-btn:hover { background: rgba(74,11,26,0.04); color: var(--text); }
.tt-card.is-expanded .tt-expand-btn { color: var(--neon); }
.tt-expand-arrow { width: 14px; height: 14px; transition: transform 0.25s; flex-shrink: 0; }
.tt-card.is-expanded .tt-expand-arrow { transform: rotate(180deg); }

.tt-details       { height: 0; overflow: hidden; border-top: 1px solid rgba(212,175,106,0.10); }
.tt-details-inner { display: flex; flex-direction: column; gap: 20px; padding: 20px 18px 22px; }
.tt-details-section { display: flex; flex-direction: column; gap: 10px; }
.tt-details-row { display: flex; gap: 24px; }
.tt-details-row .tt-details-section { flex: 1; }
.tt-details-title {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 2px;
}
.tt-details-title svg { width: 14px; height: 14px; flex-shrink: 0; color: var(--neon); }

.tt-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tt-tag  {
  padding: 4px 10px;
  background: rgba(74,11,26,0.05);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: 6px; font-size: 12px; font-weight: 500;
  color: var(--text-muted);
}

.rating-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.rating-item {
  background: rgba(74,11,26,0.04);
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: 10px; padding: 14px 16px;
}
.rating-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 10px; }
.rating-name { font-size: 12px; font-weight: 600; color: var(--text-muted); display: flex; align-items: center; gap: 7px; }
.rating-name svg { width: 14px; height: 14px; flex: 0 0 14px; color: var(--neon); }
.rating-val {
  font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, var(--neon), var(--primary-l));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  white-space: nowrap;
}
.rating-bar  { height: 5px; background: rgba(212,175,106,0.12); border-radius: 100px; overflow: hidden; }
.rating-fill { height: 100%; background: linear-gradient(90deg, #7A1530, #9E1F3E); border-radius: 100px; }

.crw-verdict { display: flex; gap: 16px; }
.crw-verdict .cons, .crw-verdict .pros { flex: 1; }
.crw-verdict .vc-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 10px;
}
.crw-verdict .pros .vc-title { color: #10b981; }
.crw-verdict .cons .vc-title { color: #ef4444; }
.crw-verdict .vc-title .dot { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 7px; }
.crw-verdict .pros .dot     { background: #10b981; }
.crw-verdict .cons .dot     { background: #ef4444; }
.crw-verdict ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 7px; }
.crw-verdict li { display: flex; align-items: flex-start; gap: 7px; font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.crw-verdict li > span:first-child { flex: 0 0 14px; font-weight: 700; margin-top: 1px; }
.crw-verdict .pros li > span:first-child { color: #10b981; }
.crw-verdict .cons li > span:first-child { color: #ef4444; }

.games-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.game-cat {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  width: calc(12.5% - 7px); padding: 10px 6px;
  border-radius: 8px; text-align: center;
  background: rgba(74,11,26,0.03);
  border: 1px solid rgba(212,175,106,0.08);
  opacity: 0.3; filter: grayscale(1);
}
.game-cat.available {
  opacity: 1; filter: none;
  background: rgba(74,11,26,0.05);
  border-color: rgba(212,175,106,0.18);
  box-shadow: 0 2px 8px rgba(74,11,26,0.06);
}
.game-cat-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; padding: 7px;
  background: linear-gradient(135deg, var(--primary), var(--neon));
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(212,175,106,0.10);
  margin-bottom: 2px;
}
.game-cat-icon img { display: block; width: 100%; height: 100%; filter: brightness(0) invert(1); }
.game-cat span { font-size: 10px; font-weight: 500; color: var(--text-muted); }

.media-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.media-item { display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; width: calc(12.5% - 7px); }
.media-item span { font-size: 10px; font-weight: 500; color: var(--text-muted); }
.media-item.provider .img-wrap {
  border: 1px solid var(--border); height: 44px; width: 100%;
  border-radius: 6px; display: flex; justify-content: center; align-items: center;
  background: var(--card-bg);
}
.media-item.provider .img-wrap img { max-width: 80%; max-height: 80%; }

@media (max-width: 768px) {
  .tt-section { padding: 36px 0 20px; }
  .tt-heading { margin-bottom: 8px; }
  .new-tt-filters-container { border-bottom: none; }
  .new-tt-filters-toggle { display: flex; align-items: center; margin-bottom: 0; }
  .new-tt-filters { display: none; flex-direction: column; gap: 8px; }
  .new-tt-filters-container.filters-open .new-tt-filters { display: flex; }
  .new-tt-filter-dropdown { position: static; transform: none !important; opacity: 1 !important; visibility: visible !important; border: none; box-shadow: none; padding: 0; background: transparent; }
  .new-tt-filter.is-open .new-tt-filter-toggle { border-radius: 10px 10px 0 0; }
  .tt-item { flex-wrap: wrap; gap: 12px; padding: 20px; }
  .tt-sep { display: none; }
  .tt-logo { order: 1; width: 100%; flex-basis: 100%; margin: 14px auto 0; display: flex; justify-content: center; }
  .tt-logo-wrap { width: 210px; height: 130px; }
  .tt-info { order: 2; flex: 1 1 100%; width: 100%; max-width: none; padding: 4px 20px 8px; align-items: center; text-align: center; }
  .tt-item-badge { left: 50%; }
  .tt-bonus-col { width: 100%; flex-basis: 100%; order: 4; padding-top: 8px; }
  .tt-bonus { font-size: 18px; }
  .tt-meta { order: 5; width: 100%; gap: 0; justify-content: space-between; }
  .tt-cta { order: 6; }
  .tt-cta { width: 100%; }
  .tt-cta .btn { width: 100%; text-align: center; justify-content: center; }
  .tt-details-row { flex-direction: column; }
  .rating-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .tt-item { padding: 16px; }
  .tt-logo-wrap { width: 190px; height: 118px; }
  .rating-grid { grid-template-columns: 1fr 1fr; }
  .game-cat, .media-item { width: calc(25% - 6px); }
}

.faq-section {
  padding: 72px 0;
  background: var(--bg);
}

.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: 12px; overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.faq-item:hover { border-color: rgba(212,175,106,0.28); box-shadow: 0 4px 16px rgba(42,7,16,0.06); }
.faq-item[open] { border-color: rgba(212,175,106,0.30); box-shadow: 0 6px 24px rgba(42,7,16,0.07); }
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  font-size: 0.93rem; font-weight: 600;
  color: var(--text);
  user-select: none; transition: color 0.15s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(74,11,26,0.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 400; color: var(--primary);
  transition: background 0.15s, transform 0.2s; line-height: 1;
}
.faq-item[open] summary::after {
  content: '−';
  background: rgba(74,11,26,0.1);
}
.faq-body {
  padding: 0 20px 18px;
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.gpro-wrapper {
  background: var(--card-bg);
  border-top: 1px solid rgba(212,175,106,0.12);
  border-bottom: 1px solid rgba(212,175,106,0.12);
  box-shadow: 0 2px 24px rgba(42,7,16,0.04);
  padding: 0;
}

.gpro-section {
  padding: 40px 0;
  border-top: 1px solid rgba(212,175,106,0.08);
  background: transparent;
}
.gpro-section:first-of-type { border-top: none; }

.gpro-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.gpro-header h2 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 800; color: #3B1420; margin: 0; line-height: 1.3; }

.gpro-steps-count {
  flex-shrink: 0; width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--primary));
  color: #fff; font-size: 18px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif;
}

.gpro-lead { font-size: 15px; color: var(--text-muted); margin: -16px 0 28px; max-width: 700px; }

.gpro-text {
  font-size: 15px; line-height: 1.75; color: var(--text-muted);
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(42,7,16,0.04);
}
.gpro-text p            { margin: 0 0 14px; }
.gpro-text p:last-child { margin-bottom: 0; }
.gpro-text h3 { font-size: 0.95rem; font-weight: 700; color: var(--neon); margin: 22px 0 8px; letter-spacing: 0.02em; }
.gpro-text h3:first-child { margin-top: 0; }

.gpro-text a {color: var(--neon); text-decoration: underline;}

.gpro-text ul:not(.gpro-checklist) {
  list-style: none;
  padding: 0; margin: 0 0 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.gpro-text ul:not(.gpro-checklist) li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
}
.gpro-text ul:not(.gpro-checklist) li::before {
  content: '';
  flex-shrink: 0; width: 6px; height: 6px;
  border-radius: 50%;
  background: #7A1530;
  margin-top: 8px;
}

.gpro-howto {
  list-style: none;
  padding: 0; margin: 20px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.howto-item {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.howto-num {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7A1530, #9E1F3E);
  color: #F5E7C1;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.72rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.howto-body h3 {
  font-size: 0.9rem; font-weight: 700;
  color: #3B1420; margin: 0 0 4px;
}
.howto-body p {
  font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0;
}

.gpro-table-wrap {
  overflow-x: auto;
  margin-top: 20px;
  border-radius: 10px;
  border: 1px solid rgba(212,175,106,0.14);
  box-shadow: 0 2px 16px rgba(42,7,16,0.04);
}
.gpro-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px;
}
.gpro-table thead tr {
  background: linear-gradient(90deg, #4A0B1A, #7A1530);
}
.gpro-table thead th {
  padding: 11px 18px;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: #E7D0A0; text-align: left;
}
.gpro-table tbody tr { border-bottom: 1px solid rgba(212,175,106,0.08); }
.gpro-table tbody tr:last-child { border-bottom: none; }
.gpro-table tbody tr:nth-child(odd) { background: rgba(74,11,26,0.02); }
.gpro-table td {
  padding: 10px 18px; color: var(--text-muted); font-size: 13px;
}
.gpro-table td:first-child { color: var(--text); font-weight: 500; }

.gpro-icon-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.icon-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.icon-item-icon {
  flex-shrink: 0; font-size: 1.3rem; line-height: 1;
  padding-top: 2px;
}
.icon-item-body h3 {
  font-size: 0.9rem; font-weight: 700;
  color: #3B1420; margin: 0 0 4px;
}
.icon-item-body p {
  font-size: 13px; color: var(--text-muted);
  line-height: 1.65; margin: 0;
}

.gpro-checklist { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 12px; }
.gpro-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 18px;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: var(--radius);
  font-size: 14px; line-height: 1.6; color: var(--text-muted);
}
.gpro-checklist li .check {
  flex-shrink: 0; width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D4AF6A, #E7D0A0);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: #1C0208; font-weight: 800; margin-top: 1px;
}

.gpro-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.gpro-card {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: var(--radius); padding: 22px 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.gpro-card:hover { border-color: rgba(212,175,106,0.28); box-shadow: 0 6px 20px rgba(42,7,16,0.06); }
.gpro-card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(74,11,26,0.08), rgba(212,175,106,0.08));
  border: 1px solid rgba(212,175,106,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--neon);
}
.gpro-card h3 { font-size: 0.88rem; font-weight: 700; color: #3B1420; margin-bottom: 8px; }
.gpro-card p  { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.nw-expert-tip {
  margin: 0; padding: 1rem 1.25rem;
  border-left: 3px solid var(--neon);
  background: rgba(212,175,106,0.05);
  border-radius: 0 10px 10px 0;
}
.nw-expert-tip p { margin: 0; font-size: 0.9rem; color: var(--text-muted); line-height: 1.72; font-style: italic; }

.comparison-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: 14px; overflow: hidden; font-size: 14px;
}
.comparison-table thead tr { background: linear-gradient(90deg, var(--primary), var(--primary-l)); }
.comparison-table thead th {
  padding: 12px 16px;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #E7D0A0; text-align: left;
}
.comparison-table tbody tr { border-bottom: 1px solid rgba(212,175,106,0.08); }
.comparison-table tbody tr:last-child  { border-bottom: none; }
.comparison-table tbody tr:nth-child(odd) { background: rgba(74,11,26,0.02); }
.comparison-table td { padding: 11px 16px; color: var(--text-muted); font-size: 13px; }
.comparison-table td:first-child { color: var(--text); font-weight: 500; }

.gpro-compare {
  display: flex; align-items: flex-start; gap: 0;
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: var(--radius); overflow: hidden;
  margin-top: 20px;
}
.gpro-compare-col { flex: 1; padding: 20px 22px; }
.gpro-compare-col:first-child { border-right: 1px solid rgba(212,175,106,0.14); }
.compare-title {
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin: 0 0 14px;
}
.compare-title.online { color: #7A1530; }
.compare-title.land   { color: var(--text-muted); }
.compare-vs {
  flex-shrink: 0; align-self: center;
  padding: 10px 14px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.65rem; font-weight: 900;
  color: rgba(212,175,106,0.50);
  letter-spacing: 0.06em;
}
.compare-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.compare-list li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
}
.compare-list li::before {
  flex-shrink: 0; margin-top: 3px;
  font-size: 12px; font-weight: 700;
}
.compare-list li.yes::before { content: '✓'; color: #7A1530; }
.compare-list li.no::before  { content: '✕'; color: var(--text-light); }

.gpro-responsible {
  display: flex; align-items: flex-start; gap: 20px;
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 2px 16px rgba(42,7,16,0.04);
}
.responsible-icon { font-size: 2rem; flex-shrink: 0; line-height: 1; padding-top: 4px; }
.responsible-body h2 { font-size: clamp(1.1rem, 2.2vw, 1.4rem); color: #3B1420; margin: 0 0 12px; }
.responsible-body p  { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin: 0 0 12px; }
.responsible-body p:last-child { margin-bottom: 0; }
.responsible-body .gpro-checklist { margin-top: 12px; }

@media (max-width: 900px) { .gpro-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 700px) {
  .gpro-compare { flex-direction: column; }
  .compare-vs { align-self: center; padding: 6px; }
  .gpro-compare-col:first-child { border-right: none; border-bottom: 1px solid rgba(212,175,106,0.14); }
  .gpro-responsible { flex-direction: column; padding: 22px 20px; }
}
@media (max-width: 600px) { .gpro-cards { grid-template-columns: 1fr; } .comparison-table { font-size: 12px; } }

.crw-section {
  padding: 80px 0;
  background: var(--bg);
}

.crw {
  background: var(--card-bg);
  border: 1px solid rgba(212,175,106,0.14);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(42,7,16,0.06);
  margin-bottom: 32px;
}

.crw-head {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(212,175,106,0.20);
  background: linear-gradient(135deg, #7A1530, #2D0610);
  position: relative;
}
.crw-head .number {
  flex: 0 0 40px; width: 40px; height: 40px;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(212,175,106,0.30);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Orbitron', sans-serif; font-size: 1rem; font-weight: 700;
  color: #E7D0A0; box-shadow: none;
}
.crw-head .crw-name { flex: 1; }
.crw-head .crw-name h3 { font-size: 1.1rem; font-weight: 700; color: #fff; margin: 0; }
.crw-rating-badge {
  font-family: 'Orbitron', sans-serif; font-size: 0.76rem; font-weight: 700;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(212,175,106,0.35);
  color: #E7D0A0; padding: 5px 14px;
  border-radius: 50px; letter-spacing: 0.04em; white-space: nowrap;
}

.crw-hero {
  background: linear-gradient(135deg, #0A0908, #220B13, #4A0B1A);
  padding: 20px 24px;
  display: flex; align-items: stretch; gap: 20px;
}
.crw-hero .hero-img-wrap {
  flex: 1; position: relative;
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(212,175,106,0.15);
  min-height: 200px;
}
.crw-hero .hero-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.crw-hero .hero-info { flex: 0 0 220px; display: flex; flex-direction: column; gap: 10px; }
.crw-hero .hero-logo {
  border-radius: 8px; padding: 12px; height: 120px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(26,16,18,0.60);
}
.crw-hero .hero-logo img { max-height: 100%; max-width: 100%; object-fit: contain; }

.hero-bonus {
  text-align: center; padding: 10px 0;
  border-top: 1px solid rgba(212,175,106,0.12);
  border-bottom: 1px solid rgba(212,175,106,0.12);
  display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
}
.hb-label  { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.55); }
.hb-amount {
  font-family: 'Orbitron', sans-serif; font-size: 24px; font-weight: 900;
  background: linear-gradient(135deg, #E7D0A0, #D4AF6A);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.1;
  display: inline-block;
  border-bottom: 2px solid #D4AF6A;
  padding-bottom: 2px;
}
.hb-extra { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.55); }

.crw-hero .hero-info .cas-button.yellow.big {
  width: 100%; height: 48px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Orbitron', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 10px;
  background: linear-gradient(135deg, #D4AF6A, #E7D0A0);
  color: #1C0208; border: none; cursor: pointer;
  box-shadow: 0 6px 20px rgba(212,175,106,0.25);
  transition: all 0.25s; text-decoration: none; margin-top: auto;
}
.crw-hero .hero-info .cas-button.yellow.big svg {
  width: 22px; height: 22px; flex-shrink: 0;
}
.crw-hero .hero-info .cas-button.yellow.big:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,106,0.38); filter: brightness(1.06); }

.hero-review-link {
  text-align: center; font-size: 0.85rem; font-weight: 600; color: #D4AF6A;
  text-decoration: underline; text-underline-offset: 2px; transition: color 0.15s;
}
.hero-review-link:hover { color: #E7D0A0; }

.crw-main { display: grid; grid-template-columns: 280px 1fr; align-items: start; }
.crw-main-left  { grid-column: 1; padding: 20px; border-right: 1px solid var(--border); position: sticky; top: 70px; }
.crw-main-right { grid-column: 2; min-width: 0; }

.crw-desc  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; padding: 18px 24px; border-bottom: 1px solid var(--border); }

.crw-quote { background: rgba(74,11,26,0.03); border-bottom: 1px solid var(--border); padding: 12px 16px 10px; }
.crw-quote.mobile-show { display: none; }
.crw-quote blockquote  { font-size: 13px; line-height: 1.7; color: var(--text); border-left: 3px solid var(--neon); padding-left: 14px; margin: 0; font-style: italic; }
.crw-quote blockquote p { margin: 0; font-weight: 300; }
.crw-quote .author { display: flex; align-items: center; gap: 10px; margin-top: 12px; }
.crw-quote .av { width: 36px; height: 36px; border-radius: 50%; overflow: hidden; flex: 0 0 36px; border: 1px solid var(--border); }
.crw-quote .av img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }
.crw-quote .au-name { font-size: 13px; font-weight: 600; color: var(--text); }
.crw-quote .au-loc  { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.crw-info-table { width: 100%; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }
.crw-info-table tbody, .crw-info-table thead { display: flex; flex-direction: column; }
.crw-info-table tr { display: flex; }
.crw-info-table thead { background: linear-gradient(90deg, var(--primary), var(--primary-l)); }
.crw-info-table th {
  flex: 1; display: flex; align-items: center; padding: 10px 14px;
  font-family: 'Orbitron', sans-serif; font-size: 0.62rem; font-weight: 700;
  color: #E7D0A0; letter-spacing: 0.08em;
}
.crw-info-table tbody tr { border-bottom: 1px solid rgba(212,175,106,0.08); }
.crw-info-table tbody tr:last-child  { border-bottom: none; }
.crw-info-table tbody tr:nth-child(odd) { background: rgba(74,11,26,0.02); }
.crw-info-table td {
  flex: 1; display: flex; align-items: center;
  padding: 8px 12px; font-size: 12px; color: var(--text); font-weight: 300; min-width: 0;
}
.crw-info-table td:first-child { flex: 0 0 90px; font-weight: 500; color: var(--text-muted); border-right: 1px solid rgba(212,175,106,0.08); font-size: 11px; }

.tbl-expandable { display: flex; align-items: center; gap: 6px; width: 100%; min-width: 0; overflow: hidden; }
.tbl-line { font-size: 12px; color: var(--text); overflow: hidden; min-width: 0; flex: 1; }
.tbl-more-btn {
  display: inline-flex; align-items: center; gap: 2px;
  background: rgba(212,175,106,0.08);
  border: 1px solid rgba(212,175,106,0.18);
  color: var(--neon); font-size: 10px; font-weight: 600;
  padding: 2px 6px; border-radius: 50px; cursor: pointer;
  white-space: nowrap; flex-shrink: 0; transition: all 0.18s;
}
.tbl-more-btn:hover { background: rgba(212,175,106,0.15); border-color: var(--neon); }
.tbl-arrow { width: 10px; height: 10px; transition: transform 0.2s; }
.tbl-more-btn.is-open .tbl-arrow { transform: rotate(180deg); }

.crw-accordions { border-top: none; }
.acc            { border-bottom: 1px solid var(--border); }
.acc:last-child { border-bottom: none; }
.acc summary    { list-style: none; }
.acc summary::-webkit-details-marker { display: none; }
.acc-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; cursor: pointer; user-select: none; transition: background 0.15s;
}
.acc-head:hover { background: rgba(74,11,26,0.03); }
details[open] > .acc-head { background: rgba(74,11,26,0.02); }
.acc-title { font-size: 13px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 10px; }
.acc-title svg { width: 16px; height: 16px; flex: 0 0 16px; color: var(--neon); }
.acc-arrow { width: 16px; height: 16px; color: var(--neon); flex: 0 0 16px; transition: transform 0.2s; }
details[open] > summary .acc-arrow { transform: rotate(180deg); }
.acc-body { padding: 20px 24px 26px; overflow: hidden; }
.acc.table-acc > summary    { display: none; }
@media (min-width: 901px) {
  .acc.table-acc .acc-body  { display: block !important; height: auto !important; overflow: visible !important; padding: 0 !important; }
}

@media (max-width: 900px) {
  .crw-main { grid-template-columns: 1fr; }
  .crw-main-left { grid-column: 1; width: 100%; position: static; border-right: none; border-bottom: 1px solid var(--border); padding: 16px; }
  .crw-main-right { grid-column: 1; width: 100%; }
  .acc.table-acc > summary  { display: flex; }
  .acc.table-acc .acc-body  { padding: inherit; }
  .crw-quote.mobile-show    { display: block; }
  .crw-quote:not(.mobile-show) { display: none; }
}
@media (max-width: 680px) {
  .crw-hero { flex-direction: column; }
  .crw-hero .hero-img-wrap { min-height: 160px; flex: none; }
  .crw-hero .hero-info { flex: none; width: 100%; }
  .crw-hero .hero-logo { display: none; }
  .hb-label { font-size: 16px; }
  .hb-extra { font-size: 18px; }
  .game-cat, .media-item { width: calc(25% - 6px); }
  .crw-verdict { flex-direction: column; gap: 16px; }
}
@media (max-width: 480px) {
  .crw-hero { padding: 14px 16px; gap: 14px; }
  .crw-head { padding: 14px 16px; }
  .acc-head  { padding: 14px 16px; }
  .acc-body  { padding: 14px 16px 20px; }
  .rating-grid { grid-template-columns: 1fr; }
  .game-cat, .media-item { width: calc(33.333% - 6px); }
}
