:root {
  --clr-bg: #323234;
  --clr-bg-alt: #28282a;
  --clr-bg-card: #3e3e40;
  --clr-header: #000000;
  --clr-teal: #00fbc8;
  --clr-red: #ff2e09;
  --clr-text: #e8e8e8;
  --clr-text-muted: #a0a0a8;
  --clr-border: rgba(255,255,255,0.08);
  --clr-border-teal: rgba(0,251,200,0.25);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --font: 'PT Sans', sans-serif;
}

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

html { scroll-behavior: smooth; background: var(--clr-bg); }

body {
  font-family: var(--font);
  background: var(--clr-bg);
  color: var(--clr-text);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--clr-teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: #00e0b3; }

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}

h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p { margin-bottom: 0.9em; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4em; }

.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.c-wrap {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.c-section {
  padding: 60px 0;
}

.c-block {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 28px;
}

.c-block:last-child { margin-bottom: 0; }

.c-section-title {
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  color: var(--clr-teal);
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--clr-border-teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  white-space: nowrap;
}

.btn:active { transform: scale(0.96); }

.btn-login {
  background: transparent;
  border: 2px solid var(--clr-teal);
  color: var(--clr-teal);
}
.btn-login:hover { background: rgba(0,251,200,0.12); color: var(--clr-teal); box-shadow: 0 0 14px rgba(0,251,200,0.3); }

.btn-signup {
  background: var(--clr-red);
  color: #ffffff;
}
.btn-signup:hover { opacity: 0.88; box-shadow: 0 4px 18px rgba(255,46,9,0.45); color: #ffffff; }

.btn-bonus {
  background: var(--clr-teal);
  color: #000;
}
.btn-bonus:hover { box-shadow: 0 4px 18px rgba(0,251,200,0.45); color: #000; }

.btn-lg {
  padding: 14px 36px;
  font-size: 1.05rem;
  border-radius: var(--radius);
}

/* ===================== HEADER ===================== */
#xh7a2b-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--clr-header);
  border-bottom: 1px solid rgba(0,251,200,0.18);
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.xh7a2b-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 68px;
}

.xh7a2b-logo img {
  height: 42px;
  width: auto;
}

.xh7a2b-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.xh7a2b-nav a {
  color: #ccc;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.xh7a2b-nav a:hover { color: var(--clr-teal); background: rgba(0,251,200,0.07); }

.xh7a2b-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.xh7a2b-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--clr-text-muted);
  background: rgba(0,251,200,0.07);
  border: 1px solid var(--clr-border-teal);
  border-radius: 20px;
  padding: 4px 12px;
  white-space: nowrap;
}

.xh7a2b-online-dot {
  width: 7px;
  height: 7px;
  background: var(--clr-teal);
  border-radius: 50%;
  animation: qp1-pulse 1.6s infinite;
}

@keyframes qp1-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,251,200,0.6); }
  50% { box-shadow: 0 0 0 5px rgba(0,251,200,0); }
}

.xh7a2b-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.xh7a2b-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.xh7a2b-burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xh7a2b-burger.active span:nth-child(2) { opacity: 0; }
.xh7a2b-burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.xh7a2b-mobile-menu {
  display: none;
  background: #0a0a0a;
  border-top: 1px solid rgba(0,251,200,0.12);
  padding: 16px 18px;
}

.xh7a2b-mobile-menu.active { display: block; }

.xh7a2b-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}
.xh7a2b-mobile-menu ul li a {
  display: block;
  color: #ccc;
  padding: 9px 0;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.xh7a2b-mobile-menu ul li a:hover { color: var(--clr-teal); }

.xh7a2b-mobile-btns {
  display: flex;
  gap: 10px;
}

/* ===================== HERO ===================== */
#yr3k9c-hero {
  position: relative;
  min-height: 500px;
  background: url('/hero-banner.png') center center / cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

#yr3k9c-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 40%, rgba(0,0,0,0.35) 100%);
}

.yr3k9c-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.yr3k9c-badge {
  display: inline-block;
  background: var(--clr-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: qp2-fade 0.8s ease both;
}

.yr3k9c-title {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: 14px;
  animation: qp2-fade 0.9s ease 0.1s both;
}

.yr3k9c-title span { color: var(--clr-teal); }

.yr3k9c-sub {
  font-size: 1.05rem;
  color: #d0d0d0;
  margin-bottom: 28px;
  animation: qp2-fade 1s ease 0.2s both;
}

.yr3k9c-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: qp2-fade 1.1s ease 0.3s both;
}

@keyframes qp2-fade {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ===================== BREADCRUMBS ===================== */
#bc4m1x-crumbs {
  background: var(--clr-bg-alt);
  padding: 10px 0;
  border-bottom: 1px solid var(--clr-border);
}

.bc4m1x-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--clr-text-muted);
}

.bc4m1x-list li + li::before {
  content: '›';
  color: var(--clr-text-muted);
  margin-right: 6px;
}

.bc4m1x-list a {
  color: var(--clr-teal);
  text-decoration: none;
}
.bc4m1x-list a:hover { text-decoration: underline; }

/* ===================== TABLE OF CONTENTS ===================== */
.toc-block {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border-teal);
  border-left: 4px solid var(--clr-teal);
}

.toc-block h2 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--clr-teal);
  margin-bottom: 14px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px 20px;
}

.toc-list li a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: 4px 0;
  transition: color var(--transition);
}
.toc-list li a::before { content: '→'; color: var(--clr-teal); font-size: 0.8rem; }
.toc-list li a:hover { color: var(--clr-teal); }

/* ===================== ADVANTAGES ===================== */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.adv-item {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color var(--transition), transform var(--transition);
}

.adv-item:hover { border-color: var(--clr-teal); transform: translateY(-3px); }

.adv-icon {
  width: 42px;
  height: 42px;
  background: rgba(0,251,200,0.1);
  border: 1px solid rgba(0,251,200,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.adv-icon svg { width: 22px; height: 22px; fill: var(--clr-teal); }

.adv-title { font-size: 0.95rem; font-weight: 700; color: #fff; }
.adv-desc { font-size: 0.82rem; color: var(--clr-text-muted); line-height: 1.5; }

/* ===================== PROS CONS ===================== */
.pc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pc-col {
  background: var(--clr-bg-alt);
  border-radius: var(--radius-sm);
  padding: 20px 20px;
}

.pc-col-pros { border-top: 3px solid var(--clr-teal); }
.pc-col-cons { border-top: 3px solid var(--clr-red); }

.pc-col-title {
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pc-col-pros .pc-col-title { color: var(--clr-teal); }
.pc-col-cons .pc-col-title { color: var(--clr-red); }

.pc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pc-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.pc-list-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

/* ===================== JACKPOTS ===================== */
.jackpot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 18px;
}

.jackpot-card {
  background: linear-gradient(135deg, #1e1e20 0%, #2a2a2c 100%);
  border: 1px solid rgba(255,180,0,0.25);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.jackpot-card::before {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(255,180,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.jackpot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(255,180,0,0.18); }

.jackpot-name {
  font-size: 0.8rem;
  color: #b0b0b8;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}

.jackpot-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffc832;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.jackpot-label {
  font-size: 0.75rem;
  color: #888;
  margin-top: 6px;
}

/* ===================== WINNERS ===================== */
.winners-table-wrap { overflow-x: auto; }

.winners-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 auto;
  min-width: 480px;
}

.winners-table th,
.winners-table td {
  text-align: left;
  padding: 11px 16px;
  border-bottom: 1px solid var(--clr-border);
  font-size: 0.88rem;
}

.winners-table th {
  background: rgba(0,251,200,0.07);
  color: var(--clr-teal);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.winners-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.winners-table tr:hover td { background: rgba(0,251,200,0.04); }

.wt-rank {
  font-weight: 700;
  color: var(--clr-text-muted);
  width: 38px;
}

.wt-rank-1 { color: #ffd700; }
.wt-rank-2 { color: #c0c0c0; }
.wt-rank-3 { color: #cd7f32; }

.wt-amount { color: var(--clr-teal); font-weight: 700; }

.wt-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--clr-teal);
  flex-shrink: 0;
  text-transform: uppercase;
}

.wt-nick {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===================== TOURNAMENTS ===================== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tour-card {
  background: linear-gradient(155deg, #2a2a2e 0%, #1e1e22 100%);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color var(--transition), transform var(--transition);
}

.tour-card:hover { border-color: rgba(0,251,200,0.35); transform: translateY(-3px); }

.tour-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,46,9,0.15);
  border: 1px solid rgba(255,46,9,0.3);
  color: #ff6040;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
}

.tour-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.tour-card-desc {
  font-size: 0.84rem;
  color: var(--clr-text-muted);
  line-height: 1.5;
  flex: 1;
}

.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.tour-timer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

.tour-timer-digits {
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
}

.tour-prize {
  font-size: 1rem;
  font-weight: 700;
  color: #ffc832;
}

.tour-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  background: var(--clr-teal);
  color: #000;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow var(--transition), opacity var(--transition);
}
.tour-btn:hover { box-shadow: 0 4px 14px rgba(0,251,200,0.4); color: #000; opacity: 0.9; }

/* Mobile slider for tournaments */
.tour-slider-wrap { overflow: hidden; }
.tour-slider-track { display: flex; transition: transform 0.35s ease; }
.tour-slider-track .tour-card { flex: 0 0 calc(100% - 12px); margin-right: 12px; }
.tour-slider-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.tour-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none; cursor: pointer;
  transition: background var(--transition);
}
.tour-slider-dot.active { background: var(--clr-teal); }

/* ===================== REVIEW CONTENT ===================== */
#zr8n5v-content {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--clr-text);
}

#zr8n5v-content h1,
#zr8n5v-content h2,
#zr8n5v-content h3,
#zr8n5v-content h4 {
  margin: 1.6em 0 0.7em;
  color: #fff;
}

#zr8n5v-content h2 { font-size: 1.4rem; border-bottom: 1px solid var(--clr-border); padding-bottom: 8px; }
#zr8n5v-content h3 { font-size: 1.15rem; color: var(--clr-teal); }

#zr8n5v-content p { margin-bottom: 1em; }

#zr8n5v-content a { color: var(--clr-teal); text-decoration: underline; }
#zr8n5v-content a:hover { color: #00e0b3; }

#zr8n5v-content ul,
#zr8n5v-content ol {
  margin: 0.8em 0 1em 1.4em;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

#zr8n5v-content li { line-height: 1.6; }

#zr8n5v-content strong { color: #fff; font-weight: 700; }
#zr8n5v-content em { color: var(--clr-text-muted); font-style: italic; }

#zr8n5v-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}

#zr8n5v-content table th,
#zr8n5v-content table td {
  padding: 10px 14px;
  border: 1px solid var(--clr-border);
  text-align: left;
}

#zr8n5v-content table th {
  background: rgba(0,251,200,0.07);
  color: var(--clr-teal);
  font-weight: 700;
}

#zr8n5v-content table tr:nth-child(even) td { background: rgba(255,255,255,0.025); }

#zr8n5v-content blockquote {
  border-left: 4px solid var(--clr-teal);
  margin: 1.2em 0;
  padding: 12px 18px;
  background: rgba(0,251,200,0.05);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--clr-text-muted);
  font-style: italic;
}

#zr8n5v-content img { max-width: 100%; border-radius: var(--radius-sm); margin: 1em 0; }

#zr8n5v-content hr { border: none; border-top: 1px solid var(--clr-border); margin: 1.8em 0; }

/* ===================== FAQ ===================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--clr-border-teal); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

.faq-question:hover { color: var(--clr-teal); }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1.5px solid var(--clr-text-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), transform var(--transition);
}
.faq-item.open .faq-icon { border-color: var(--clr-teal); transform: rotate(45deg); }
.faq-icon svg { width: 12px; height: 12px; stroke: var(--clr-text-muted); fill: none; }
.faq-item.open .faq-icon svg { stroke: var(--clr-teal); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 20px 18px;
}

.faq-answer p {
  font-size: 0.88rem;
  color: var(--clr-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ===================== REVIEWS ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}

.review-card {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--clr-border-teal); }

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--clr-teal), #0099a8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}

.review-meta { flex: 1; }
.review-name { font-size: 0.9rem; font-weight: 700; color: #fff; }
.review-date { font-size: 0.76rem; color: var(--clr-text-muted); }

.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 16px; height: 16px; }

.review-text {
  font-size: 0.86rem;
  color: var(--clr-text-muted);
  line-height: 1.6;
}

/* Review form */
.review-form-wrap {
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border-teal);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.review-form-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.rv-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rv-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.rv-label {
  font-size: 0.82rem;
  color: var(--clr-text-muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rv-input,
.rv-textarea {
  background: rgba(0,0,0,0.3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--clr-text);
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
}
.rv-input:focus, .rv-textarea:focus { border-color: var(--clr-teal); }
.rv-textarea { min-height: 100px; resize: vertical; }

.rv-success {
  display: none;
  background: rgba(0,251,200,0.1);
  border: 1px solid var(--clr-border-teal);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--clr-teal);
  font-size: 0.9rem;
  font-weight: 700;
}

/* ===================== AUTHOR ===================== */
.author-block {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.author-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 3px solid var(--clr-teal);
  object-fit: cover;
  flex-shrink: 0;
}

.author-info { flex: 1; }
.author-name { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 5px; }
.author-role { font-size: 0.8rem; color: var(--clr-teal); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.author-bio { font-size: 0.86rem; color: var(--clr-text-muted); line-height: 1.6; margin-bottom: 12px; }

.author-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.author-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(0,251,200,0.08);
  border: 1px solid rgba(0,251,200,0.2);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--clr-teal);
  text-decoration: none;
  transition: background var(--transition);
}
.author-social-link:hover { background: rgba(0,251,200,0.16); color: var(--clr-teal); }

/* ===================== FOOTER ===================== */
#xf9q3z-footer {
  background: var(--clr-header);
  border-top: 1px solid rgba(0,251,200,0.12);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

.footer-logo img { height: 38px; width: auto; margin-bottom: 14px; }
.footer-tagline { font-size: 0.8rem; color: var(--clr-text-muted); line-height: 1.5; }

.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--clr-teal);
  margin-bottom: 14px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-teal); }

.footer-divider {
  border: none;
  border-top: 1px solid var(--clr-border);
  margin: 0 0 28px;
}

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}

.footer-logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 0.72rem;
  color: #888;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.footer-logos-label {
  font-size: 0.72rem;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.footer-copyright {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.6;
}
.footer-copyright a { color: #666; text-decoration: underline; }
.footer-copyright a:hover { color: #888; }

.footer-license {
  font-size: 0.73rem;
  color: #444;
  margin-top: 8px;
  line-height: 1.5;
}

/* ===================== STICKY WIDGET ===================== */
#wg4p7k-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0a0a0a 0%, #111 100%);
  border-top: 2px solid var(--clr-teal);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.wg4p7k-text {
  font-size: 0.85rem;
  color: #ccc;
  white-space: nowrap;
}
.wg4p7k-text strong { color: #ffc832; }

.wg4p7k-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-red);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 9px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
  animation: qp3-pulse 2s infinite;
}
.wg4p7k-link:hover { box-shadow: 0 4px 18px rgba(255,46,9,0.5); transform: translateY(-1px); color: #ffffff; }

@keyframes qp3-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(255,46,9,0.5); }
  60% { box-shadow: 0 0 0 7px rgba(255,46,9,0); }
}

.wg4p7k-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: #888;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  font-size: 0.85rem;
  transition: color var(--transition), border-color var(--transition);
}
.wg4p7k-close:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

/* ===================== UTILITIES ===================== */
.text-teal { color: var(--clr-teal); }
.text-red { color: var(--clr-red); }
.text-muted { color: var(--clr-text-muted); }
.text-gold { color: #ffc832; }

/* page bottom padding for widget */
.pg-body { padding-bottom: 62px; }

/* ===================== WP COMPAT ===================== */
.wp-block-group { display: block; }
.entry-content { display: block; }
.wp-site-blocks { display: block; }
.elementor-section { display: block; }
.elementor-widget-container { display: block; }
.screen-reader-text { position:absolute; left:-10000px; top:auto; width:1px; height:1px; overflow:hidden; }
.wp-caption { display: inline-block; max-width: 100%; }
.wp-caption-text { font-size: 0.78rem; color: var(--clr-text-muted); }
.alignnone { float: none; display: block; }
.alignleft { float: left; margin: 0 1.2em 0.6em 0; }
.alignright { float: right; margin: 0 0 0.6em 1.2em; }
.aligncenter { display: block; margin: 0 auto; }
[data-elementor-type] { display: block; }
.e-page-transition { display: none !important; }

/* Unused utility classes for uniqualization */
.xq9b3r { display: none; }
.zm7t1k { visibility: hidden; position: absolute; pointer-events: none; }
.fn4w8s { overflow: hidden; height: 0; width: 0; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .xh7a2b-nav { display: none; }
  .xh7a2b-burger { display: flex; }
  .xh7a2b-online { display: none; }
  .tour-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > .footer-logo-col { grid-column: 1 / -1; }
  .pc-grid { grid-template-columns: 1fr; }
  .author-block { flex-direction: column; }
  .author-photo { margin: 0 auto; }
  .author-info { text-align: center; }
  .author-socials { justify-content: center; }
}

@media (max-width: 600px) {
  .c-block { padding: 20px 16px; }
  .yr3k9c-cta { flex-direction: column; }
  .yr3k9c-cta .btn-lg { width: 100%; text-align: center; }
  .toc-list { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr 1fr; }
  .jackpot-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-form-wrap { padding: 18px 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .wg4p7k-text { display: none; }
  #wg4p7k-widget { justify-content: space-between; }
  .xh7a2b-right .btn { padding: 8px 14px; font-size: 0.8rem; }
}

@media (max-width: 400px) {
  .adv-grid { grid-template-columns: 1fr; }
  .jackpot-grid { grid-template-columns: 1fr; }
}
