:root {
  --clr-bg: #1B1B1B;
  --clr-header: #181818;
  --clr-primary: #FFBB4D;
  --clr-primary-hover: #ffc96e;
  --clr-secondary: #181818;
  --clr-text: #e8e8e8;
  --clr-text-muted: #a0a0a0;
  --clr-border: #2e2e2e;
  --clr-card: #222222;
  --clr-card-hover: #272727;
  --clr-white: #ffffff;
  --clr-success: #2ecc71;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.45);
  --shadow-card: 0 2px 12px rgba(0,0,0,.35);
  --transition: .22s ease;
  --font: 'Montserrat', sans-serif;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background: var(--clr-bg); overflow-x: hidden; width: 100%; }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { color: var(--clr-primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--clr-primary-hover); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.x7f2k-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.x7f2k-container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,187,77,.25); text-decoration: none; }
.btn--primary { background: var(--clr-primary); color: #111; }
.btn--primary:hover { background: var(--clr-primary-hover); color: #111; }
.btn--secondary { background: var(--clr-secondary); color: var(--clr-white); border: 1px solid #333; }
.btn--secondary:hover { background: #252525; color: var(--clr-white); box-shadow: 0 6px 20px rgba(0,0,0,.3); }
.btn--sm { padding: 8px 16px; font-size: 12px; }
.btn--lg { padding: 15px 36px; font-size: 15px; }

.b9x3m-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  border-bottom: 1px solid #252525;
  box-shadow: 0 2px 16px rgba(0,0,0,.5);
}
.b9x3m-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.b9x3m-logo { flex-shrink: 0; }
.b9x3m-logo img { height: 42px; width: auto; }
.b9x3m-logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-primary);
  letter-spacing: -0.5px;
  text-decoration: none;
}
.b9x3m-logo-text span { color: var(--clr-white); }
.b9x3m-nav { display: flex; align-items: center; gap: 4px; }
.b9x3m-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: var(--clr-text-muted);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.b9x3m-nav a:hover { color: var(--clr-white); background: #252525; }
.b9x3m-nav a svg { flex-shrink: 0; }
.b9x3m-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.b9x3m-online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--clr-text-muted);
  background: #252525;
  padding: 5px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.b9x3m-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-success);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}
.b9x3m-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: #252525;
  border: none;
}
.b9x3m-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.b9x3m-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.b9x3m-burger.active span:nth-child(2) { opacity: 0; }
.b9x3m-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.b9x3m-mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0; right: 0;
  background: var(--clr-header);
  border-bottom: 1px solid #252525;
  z-index: 999;
  padding: 16px 20px 20px;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 8px 32px rgba(0,0,0,.6);
}
.b9x3m-mobile-nav.open { display: flex; animation: slideDown .2s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.b9x3m-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: var(--clr-text);
  font-size: 14px;
  font-weight: 600;
  background: #252525;
  text-decoration: none;
}
.b9x3m-mobile-nav a:hover { background: #2e2e2e; color: var(--clr-primary); }

.q2p9r-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2940 40%, #1B1B1B 100%);
}
.q2p9r-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/hero-banner.png') center/cover no-repeat;
  opacity: .35;
}
.q2p9r-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(27,27,27,.92) 40%, rgba(27,27,27,.3) 100%);
}
.q2p9r-hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: 60px 0;
}
.q2p9r-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,187,77,.15);
  border: 1px solid rgba(255,187,77,.35);
  color: var(--clr-primary);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.q2p9r-hero h1 {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: 18px;
}
.q2p9r-hero h1 em { color: var(--clr-primary); font-style: normal; }
.q2p9r-hero-sub {
  font-size: 15px;
  color: var(--clr-text-muted);
  margin-bottom: 28px;
  line-height: 1.6;
  max-width: 480px;
}
.q2p9r-hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.q2p9r-hero-trust {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-text-muted);
  margin-top: 20px;
}
.q2p9r-hero-trust svg { color: var(--clr-primary); }

.m4v7n-breadcrumb {
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
  background: #1e1e1e;
}
.m4v7n-breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--clr-text-muted);
}
.m4v7n-breadcrumb-list a { color: var(--clr-text-muted); transition: color var(--transition); text-decoration: none; }
.m4v7n-breadcrumb-list a:hover { color: var(--clr-primary); }
.m4v7n-breadcrumb-list .sep { color: #444; }
.m4v7n-breadcrumb-list .current { color: var(--clr-primary); font-weight: 600; }

.k1j8s-main { flex: 1; padding: 40px 0 60px; }

.k1j8s-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; align-items: start; }
.k1j8s-layout > * { min-width: 0; }

.r5t2u-toc {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}
.r5t2u-toc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.r5t2u-toc-list { display: flex; flex-direction: column; gap: 4px; }
.r5t2u-toc-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.r5t2u-toc-list li a:hover { color: var(--clr-primary); background: rgba(255,187,77,.08); }
.r5t2u-toc-list li a span { font-size: 11px; color: #555; min-width: 18px; }

.p8w1x-advantages {
  margin-bottom: 40px;
}
.section-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--clr-border) 0%, transparent 100%);
}
.p8w1x-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.p8w1x-card {
  min-width: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}
.p8w1x-card p, .p8w1x-card h3 { overflow-wrap: break-word; }
.p8w1x-card:hover { border-color: rgba(255,187,77,.4); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.p8w1x-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,187,77,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary);
  margin-bottom: 12px;
}
.p8w1x-card h3 { font-size: 13px; font-weight: 700; color: var(--clr-white); margin-bottom: 6px; }
.p8w1x-card p { font-size: 12px; color: var(--clr-text-muted); line-height: 1.5; }

.n3c6d-mirrors { margin-bottom: 40px; }
.n3c6d-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.n3c6d-live-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--clr-success);
  font-weight: 600;
}
.n3c6d-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-success);
  animation: pulse-dot 1.5s infinite;
}
.n3c6d-datetime { font-size: 12px; color: var(--clr-text-muted); }
.n3c6d-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-md); border: 1px solid var(--clr-border); }
.n3c6d-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 13px;
}
.n3c6d-table thead { background: #1e1e1e; }
.n3c6d-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--clr-text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
  border-bottom: 1px solid var(--clr-border);
}
.n3c6d-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--clr-border);
  vertical-align: middle;
  color: var(--clr-text);
}
.n3c6d-table tr:last-child td { border-bottom: none; }
.n3c6d-table tr:hover td { background: rgba(255,255,255,.025); }
.n3c6d-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 12px;
}
.n3c6d-status.active { background: rgba(46,204,113,.15); color: var(--clr-success); }
.n3c6d-status.checking { background: rgba(255,187,77,.12); color: var(--clr-primary); }
.n3c6d-status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

.g6k9p-games { margin-bottom: 40px; }
.g6k9p-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.g6k9p-card {
  min-width: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.g6k9p-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,.5); }
.g6k9p-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1e2d40 0%, #0d1b2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.g6k9p-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g6k9p-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.g6k9p-card:hover .g6k9p-thumb-overlay { opacity: 1; }
.g6k9p-provider-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,.7);
  color: var(--clr-text-muted);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
}
.g6k9p-body { padding: 14px; }
.g6k9p-body h3 { font-size: 13px; font-weight: 700; color: var(--clr-white); margin-bottom: 10px; }
.g6k9p-rtp {
  font-size: 11px;
  color: var(--clr-text-muted);
  margin-bottom: 12px;
}
.g6k9p-rtp span { color: var(--clr-primary); font-weight: 600; }

.c2r8h-review { margin-bottom: 40px; }
.c2r8h-content {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.c2r8h-content h2 { font-size: 20px; font-weight: 700; color: var(--clr-white); margin-bottom: 14px; }
.c2r8h-content h3 { font-size: 17px; font-weight: 700; color: var(--clr-white); margin-bottom: 10px; margin-top: 24px; }
.c2r8h-content h4 { font-size: 15px; font-weight: 600; color: var(--clr-text); margin-bottom: 8px; margin-top: 18px; }
.c2r8h-content p { color: var(--clr-text-muted); margin-bottom: 14px; line-height: 1.7; }
.c2r8h-content ul { margin-bottom: 14px; padding-left: 20px; list-style: disc; }
.c2r8h-content ol { margin-bottom: 14px; padding-left: 20px; list-style: decimal; }
.c2r8h-content li { color: var(--clr-text-muted); margin-bottom: 6px; line-height: 1.6; }
.c2r8h-content strong { color: var(--clr-white); font-weight: 700; }
.c2r8h-content em { color: var(--clr-primary); font-style: italic; }
.c2r8h-content a { color: var(--clr-primary); }
.c2r8h-content table { width: 100%; border-collapse: collapse; margin-bottom: 14px; }
.c2r8h-content table th, .c2r8h-content table td { padding: 10px 14px; border: 1px solid var(--clr-border); font-size: 13px; text-align: left; }
.c2r8h-content table th { background: #1e1e1e; color: var(--clr-text-muted); font-weight: 700; }
.c2r8h-content table td { color: var(--clr-text-muted); }
.c2r8h-content blockquote {
  border-left: 3px solid var(--clr-primary);
  padding: 12px 18px;
  margin: 16px 0;
  background: rgba(255,187,77,.06);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
}
.c2r8h-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 20px 0; }

.f4m1z-faq { margin-bottom: 40px; }
.f4m1z-item {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color var(--transition);
}
.f4m1z-item:hover { border-color: rgba(255,187,77,.3); }
.f4m1z-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 12px;
  color: var(--clr-white);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  transition: color var(--transition);
}
.f4m1z-question:hover { color: var(--clr-primary); }
.f4m1z-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  color: var(--clr-text-muted);
}
.f4m1z-item.open .f4m1z-chevron { transform: rotate(180deg); background: rgba(255,187,77,.15); color: var(--clr-primary); }
.f4m1z-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.f4m1z-item.open .f4m1z-answer { max-height: 400px; }
.f4m1z-answer-inner {
  padding: 0 20px 20px;
  color: var(--clr-text-muted);
  font-size: 13px;
  line-height: 1.7;
}
.f4m1z-answer-inner a { color: var(--clr-primary); }

.a9s4l-author {
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.a9s4l-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,187,77,.3);
  background: #2e2e2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-primary);
}
.a9s4l-avatar img { width: 100%; height: 100%; object-fit: cover; }
.a9s4l-info { flex: 1; }
.a9s4l-name { font-size: 17px; font-weight: 800; color: var(--clr-white); margin-bottom: 2px; }
.a9s4l-role { font-size: 12px; color: var(--clr-primary); font-weight: 600; margin-bottom: 10px; }
.a9s4l-bio { font-size: 13px; color: var(--clr-text-muted); line-height: 1.65; margin-bottom: 14px; }
.a9s4l-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #666;
  margin-bottom: 14px;
}
.a9s4l-meta span { display: flex; align-items: center; gap: 4px; }
.a9s4l-socials { display: flex; gap: 8px; }
.a9s4l-socials a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #2e2e2e;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--clr-text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.a9s4l-socials a:hover { background: rgba(255,187,77,.12); color: var(--clr-primary); }

.v7h2k-sidebar { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.v7h2k-sidebar-card {
  min-width: 0;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 22px;
}
.v7h2k-sidebar-card h3 { font-size: 14px; font-weight: 800; color: var(--clr-white); margin-bottom: 16px; }
.v7h2k-rating-score {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.v7h2k-score-num {
  font-size: 42px;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1;
}
.v7h2k-score-detail { flex: 1; }
.v7h2k-stars { color: var(--clr-primary); font-size: 16px; margin-bottom: 2px; }
.v7h2k-score-label { font-size: 11px; color: var(--clr-text-muted); }
.v7h2k-breakdown { display: flex; flex-direction: column; gap: 8px; }
.v7h2k-breakdown-row { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.v7h2k-breakdown-label { min-width: 90px; color: var(--clr-text-muted); }
.v7h2k-bar-track { flex: 1; height: 5px; background: #2e2e2e; border-radius: 3px; overflow: hidden; }
.v7h2k-bar-fill { height: 100%; background: var(--clr-primary); border-radius: 3px; }
.v7h2k-breakdown-val { min-width: 28px; text-align: right; font-weight: 700; color: var(--clr-white); }
.v7h2k-bonus-block { text-align: center; }
.v7h2k-bonus-amount {
  font-size: 28px;
  font-weight: 800;
  color: var(--clr-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}
.v7h2k-bonus-label { font-size: 12px; color: var(--clr-text-muted); margin-bottom: 16px; }
.v7h2k-bonus-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.v7h2k-bonus-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--clr-text-muted);
  text-align: left;
}
.v7h2k-bonus-feature svg { color: var(--clr-success); flex-shrink: 0; }
.v7h2k-info-list { display: flex; flex-direction: column; gap: 10px; }
.v7h2k-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--clr-border);
}
.v7h2k-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.v7h2k-info-key { color: var(--clr-text-muted); flex-shrink: 0; min-width: 80px; }
.v7h2k-info-val { color: var(--clr-white); font-weight: 600; text-align: right; }
.v7h2k-payment-logos { display: flex; flex-wrap: wrap; gap: 8px; }
.v7h2k-payment-logo {
  background: #1e1e1e;
  border: 1px solid var(--clr-border);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--clr-text-muted);
}

.e1p5n-footer {
  background: var(--clr-header);
  border-top: 1px solid #252525;
  padding: 48px 0 0;
  margin-top: auto;
}
.e1p5n-footer-top {
  display: grid;
  grid-template-columns: 260px 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--clr-border);
}
.e1p5n-brand { display: flex; flex-direction: column; }
.e1p5n-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.e1p5n-brand-logo img { height: 38px; }
.e1p5n-brand-name { font-size: 20px; font-weight: 800; color: var(--clr-primary); }
.e1p5n-brand-name span { color: var(--clr-white); }
.e1p5n-brand-desc { font-size: 12px; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 16px; }
.e1p5n-brand-country {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--clr-text-muted);
  background: #252525;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.e1p5n-socials { display: flex; gap: 8px; margin-top: 4px; }
.e1p5n-socials a {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: #252525;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-text-muted);
  transition: all var(--transition);
  text-decoration: none;
}
.e1p5n-socials a:hover { background: rgba(255,187,77,.15); color: var(--clr-primary); }
.e1p5n-footer-col h4 { font-size: 13px; font-weight: 700; color: var(--clr-white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .6px; }
.e1p5n-footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.e1p5n-footer-col ul li a {
  font-size: 12px;
  color: var(--clr-text-muted);
  transition: color var(--transition);
  text-decoration: none;
}
.e1p5n-footer-col ul li a:hover { color: var(--clr-primary); }
.e1p5n-footer-mid {
  padding: 28px 0;
  border-bottom: 1px solid var(--clr-border);
}
.e1p5n-logos-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}
.e1p5n-logos-label { font-size: 11px; color: #555; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 10px; }
.e1p5n-logo-pill {
  background: #252525;
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  color: var(--clr-text-muted);
  white-space: nowrap;
}
.e1p5n-logo-pill.trust { border-color: rgba(46,204,113,.3); color: var(--clr-success); background: rgba(46,204,113,.08); }
.e1p5n-logo-pill.license { border-color: rgba(255,187,77,.3); color: var(--clr-primary); background: rgba(255,187,77,.08); }
.e1p5n-footer-bottom {
  padding: 20px 0;
  text-align: center;
}
.e1p5n-legal { font-size: 11px; color: #555; line-height: 1.7; margin-bottom: 10px; }
.e1p5n-legal a { color: #666; text-decoration: underline; }
.e1p5n-copyright { font-size: 12px; color: #444; }

.w3d6f-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: linear-gradient(90deg, #181818 0%, #1e1e1e 100%);
  border-top: 1px solid #2e2e2e;
  box-shadow: 0 -4px 20px rgba(0,0,0,.5);
  padding: 10px 20px;
}
.w3d6f-widget-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.w3d6f-widget-text { flex: 1; }
.w3d6f-widget-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--clr-white);
  margin-bottom: 1px;
}
.w3d6f-widget-sub { font-size: 11px; color: var(--clr-primary); font-weight: 600; }
.w3d6f-widget-close {
  background: none;
  border: none;
  color: #555;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  transition: color var(--transition);
}
.w3d6f-widget-close:hover { color: var(--clr-text-muted); }
.w3d6f-widget.hidden { display: none; }

body { padding-bottom: 72px; }

.info-page-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.info-page-content h1 { font-size: 26px; font-weight: 800; color: var(--clr-white); margin-bottom: 24px; }
.info-page-content h2 { font-size: 20px; font-weight: 700; color: var(--clr-white); margin: 24px 0 12px; }
.info-page-content h3 { font-size: 17px; font-weight: 700; color: var(--clr-white); margin: 20px 0 10px; }
.info-page-content p { color: var(--clr-text-muted); margin-bottom: 14px; line-height: 1.7; }
.info-page-content ul, .info-page-content ol { padding-left: 20px; margin-bottom: 14px; }
.info-page-content ul { list-style: disc; }
.info-page-content ol { list-style: decimal; }
.info-page-content li { color: var(--clr-text-muted); margin-bottom: 6px; line-height: 1.6; }
.info-page-content strong { color: var(--clr-white); }
.info-page-content a { color: var(--clr-primary); }

@media (max-width: 1024px) {
  .k1j8s-layout { grid-template-columns: 1fr; }
  .v7h2k-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); }
  .p8w1x-grid { grid-template-columns: repeat(2, 1fr); }
  .g6k9p-grid { grid-template-columns: repeat(3, 1fr); }
  .e1p5n-footer-top { grid-template-columns: 1fr 1fr; }
  .e1p5n-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .x7f2k-container { padding: 0 16px; }
  .b9x3m-nav { display: none; }
  .b9x3m-burger { display: flex; }
  .b9x3m-online-badge { display: none; }
  .b9x3m-header-inner { height: 60px; gap: 8px; }
  .b9x3m-logo img { height: 34px; }
  .b9x3m-header-actions { gap: 6px; }
  .b9x3m-header-actions .btn--sm { padding: 8px 12px; font-size: 11px; }
  .b9x3m-mobile-nav { top: 60px; }
  .q2p9r-hero { min-height: auto; }
  .q2p9r-hero-content { padding: 32px 0; max-width: 100%; }
  .q2p9r-hero-sub { max-width: 100%; }
  .q2p9r-hero-trust { flex-wrap: wrap; row-gap: 6px; }
  .k1j8s-main { padding: 24px 0 40px; }
  .m4v7n-breadcrumb-list { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; white-space: nowrap; scrollbar-width: none; }
  .m4v7n-breadcrumb-list::-webkit-scrollbar { display: none; }
  .r5t2u-toc { padding: 18px; }
  .p8w1x-grid { grid-template-columns: 1fr 1fr; }
  .g6k9p-grid { grid-template-columns: repeat(2, 1fr); }
  .c2r8h-content { padding: 22px 18px; }
  .a9s4l-author { flex-direction: column; text-align: center; align-items: center; }
  .a9s4l-meta { justify-content: center; }
  .a9s4l-socials { justify-content: center; }
  .e1p5n-footer-top { grid-template-columns: 1fr; gap: 28px; }
  .e1p5n-brand { grid-column: unset; }
  .v7h2k-sidebar { grid-template-columns: 1fr; }
  .v7h2k-info-key { min-width: unset; }
  .w3d6f-widget { padding: 10px 16px; }
  .w3d6f-widget-inner { gap: 10px; }
  .w3d6f-widget-title { font-size: 12px; }
  .w3d6f-widget-sub { font-size: 10px; }
  .n3c6d-meta { gap: 10px; }
}

@media (max-width: 480px) {
  body { font-size: 14px; }
  .x7f2k-container { padding: 0 14px; }
  .p8w1x-grid { grid-template-columns: 1fr; }
  .g6k9p-grid { grid-template-columns: 1fr 1fr; }
  .q2p9r-hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .q2p9r-hero-actions .btn { width: 100%; }
  .btn--lg { width: 100%; text-align: center; justify-content: center; }
  .a9s4l-avatar { width: 64px; height: 64px; font-size: 22px; }
  .a9s4l-socials { flex-wrap: wrap; }
  .v7h2k-score-num { font-size: 34px; }
  .v7h2k-bonus-amount { font-size: 24px; }
  .n3c6d-datetime { display: none; }
  .w3d6f-widget-inner { flex-wrap: wrap; }
  .w3d6f-widget-text { min-width: 0; flex-basis: 100%; }
  .w3d6f-widget .btn { flex: 1; }
}

.h2p1q-placeholder { min-height: 40px; }
.xt9bm-hidden { display: none !important; }
.zt3vk-spacer { height: 24px; }
.lm6wr-divider { height: 1px; background: var(--clr-border); margin: 32px 0; }
.nd8xs-tag {
  display: inline-block;
  background: rgba(255,187,77,.1);
  color: var(--clr-primary);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.wp-block-cover { display: none; }
.wp-block-image { display: none; }
.elementor-hidden { display: none; }

@media (max-width: 600px) {
  .g6k9p-grid {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .g6k9p-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
}
