@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
  --c-bg: #060D43;
  --c-header: #060D43;
  --c-footer: #040a33;
  --c-primary: #035669;
  --c-secondary: #060D43;
  --c-accent: #05ADEF;
  --c-gold: #F5C518;
  --c-text: #e8eaf6;
  --c-text-muted: #a0aec0;
  --c-surface: #0b1660;
  --c-surface2: #0e1c75;
  --c-border: rgba(5, 173, 239, 0.18);
  --c-btn-primary: #035669;
  --c-btn-secondary: #060D43;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(3, 86, 105, 0.18);
  --shadow-lg: 0 8px 48px rgba(3, 86, 105, 0.28);
  --transition: 0.28s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', 'AvenirLight', Arial, sans-serif;
  font-weight: 400;
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--c-gold); }

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

h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.25; color: #fff; }

.xb7k2 { display: none; }
.wp-block-hidden { visibility: hidden; position: absolute; left: -9999px; }
.elementor-hidden-phone { display: none !important; }

.x9f3a-wrap { max-width: 1200px; margin: 0 auto; padding: 0 18px; }

.q2m8-container { width: 100%; }

.r5t1-flex { display: flex; align-items: center; }
.k7p2-gap { gap: 12px; }
.z3n9-between { justify-content: space-between; }

.site-header {
  background: var(--c-header);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  border-bottom: 1px solid var(--c-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 12px;
}

.header-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.header-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.header-nav a:hover {
  background: var(--c-surface);
  color: var(--c-accent);
}

.header-nav svg { flex-shrink: 0; }

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

.online-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
  white-space: nowrap;
  padding: 5px 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  border: 1px solid var(--c-border);
}

.online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse-dot 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  50% { box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn-login {
  background: var(--c-surface2);
  color: #fff;
  border: 1px solid var(--c-border);
}
.btn-login:hover { background: var(--c-surface); color: #fff; box-shadow: var(--shadow); }

.btn-signup {
  background: var(--c-btn-primary);
  color: #fff;
  box-shadow: 0 2px 12px rgba(3,86,105,.35);
}
.btn-signup:hover { background: #044e5f; box-shadow: 0 4px 20px rgba(3,86,105,.5); color: #fff; }

.btn-bonus {
  background: linear-gradient(135deg, var(--c-gold) 0%, #e5a800 100%);
  color: #060D43;
  font-weight: 800;
  box-shadow: 0 2px 12px rgba(245,197,24,.3);
}
.btn-bonus:hover { box-shadow: 0 4px 20px rgba(245,197,24,.5); color: #060D43; }

.btn-play {
  background: var(--c-btn-primary);
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(3,86,105,.4);
}
.btn-play:hover { background: #044e5f; box-shadow: 0 6px 28px rgba(3,86,105,.6); color: #fff; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
}
.nav-overlay.active { display: block; }

.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #04093a 0%, #060D43 50%, #071a55 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/heaps-o-wins-casino-hero.webp') center/cover no-repeat;
  opacity: 0.22;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,13,67,.92) 0%, rgba(6,13,67,.55) 60%, rgba(6,13,67,.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 18px;
}

.hero-label {
  display: inline-block;
  background: var(--c-btn-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  max-width: 620px;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}

.hero-content h1 span { color: var(--c-gold); }

.hero-desc {
  font-size: 18px;
  color: var(--c-text-muted);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,.12);
  border: 1px solid rgba(245,197,24,.3);
  color: var(--c-gold);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 8px;
  margin-top: 24px;
}

.breadcrumbs-bar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  padding: 10px 0;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  font-size: 13px;
  flex-wrap: wrap;
}

.breadcrumbs li { display: flex; align-items: center; gap: 6px; color: var(--c-text-muted); }
.breadcrumbs li a { color: var(--c-text-muted); }
.breadcrumbs li a:hover { color: var(--c-accent); }
.breadcrumbs li.active { color: var(--c-accent); font-weight: 600; }
.breadcrumbs li svg { color: var(--c-text-muted); flex-shrink: 0; }

.section-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.section-title {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.section-subtitle {
  color: var(--c-text-muted);
  font-size: 15px;
  margin-bottom: 28px;
}

.section-head { margin-bottom: 32px; }

.info-table-wrap {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.info-table-block { padding: 32px 18px; }

.info-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

.info-table tr {
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition);
}

.info-table tr:last-child { border-bottom: none; }
.info-table tr:hover { background: rgba(5,173,239,.04); }

.info-table td {
  padding: 13px 16px;
  font-size: 14px;
  vertical-align: middle;
}

.info-table .td-param {
  color: var(--c-text-muted);
  font-weight: 600;
  width: 44%;
  white-space: nowrap;
}

.info-table .td-icon {
  width: 40px;
  text-align: center;
}

.info-table .td-val {
  color: var(--c-text);
  font-weight: 500;
}

.td-icon svg, .td-icon img { margin: 0 auto; }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.advantages-block { padding-top: 60px;padding-bottom: 60px; }
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.adv-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.adv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(5,173,239,.4);
}

.adv-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--c-btn-primary), #067a97);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.adv-card h3 { font-size: 15px; font-weight: 700; color: #fff; }
.adv-card p { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; }

.tournaments-block { padding-top: 60px;padding-bottom: 60px; }

.t-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.t-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}

.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.t-card-header {
  background: linear-gradient(135deg, var(--c-btn-primary) 0%, #044a5a 100%);
  padding: 18px 20px 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.t-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.t-card-header h3 { font-size: 15px; font-weight: 700; color: #fff; line-height: 1.3; }

.t-card-body { padding: 16px 20px 20px; flex: 1; display: flex; flex-direction: column; gap: 12px; }

.t-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.6; flex: 1; }

.t-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--c-border);
}

.t-prize {
  font-size: 20px;
  font-weight: 800;
  color: var(--c-gold);
}

.t-prize small { font-size: 11px; font-weight: 600; color: var(--c-text-muted); display: block; }

.t-timer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
}

.t-timer-label { font-size: 11px; color: var(--c-text-muted); font-weight: 600; }

.t-timer-count {
  font-size: 15px;
  font-weight: 800;
  color: var(--c-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.5px;
}

.t-slider-nav {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-surface2);
  border: 2px solid var(--c-border);
  cursor: pointer;
  transition: background var(--transition);
}

.t-dot.active { background: var(--c-accent); border-color: var(--c-accent); }

.demo-block { padding-top: 60px;padding-bottom: 60px; }

.demo-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.demo-header {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--c-border);
  gap: 12px;
  flex-wrap: wrap;
}

.demo-game-info { display: flex; flex-direction: column; gap: 3px; }
.demo-game-info h3 { font-size: 16px; font-weight: 700; color: #fff; }
.demo-game-info span { font-size: 13px; color: var(--c-text-muted); }

.demo-iframe-wrap {
  position: relative;
  width: 100%;
  background: #000;
}

.demo-iframe-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.demo-footer {
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-border);
  flex-wrap: wrap;
  gap: 12px;
}

.demo-note { font-size: 12px; color: var(--c-text-muted); }

.review-block { padding-top: 60px;padding-bottom: 60px; }

.review-inner {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.content-body { color: var(--c-text); line-height: 1.75; }
.content-body h2 { font-size: 22px; font-weight: 700; color: #fff; margin: 28px 0 12px; }
.content-body h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 22px 0 10px; }
.content-body h4 { font-size: 16px; font-weight: 700; color: var(--c-accent); margin: 18px 0 8px; }
.content-body p { margin: 0 0 16px; color: var(--c-text); }
.content-body a { color: var(--c-accent); text-decoration: underline; }
.content-body a:hover { color: var(--c-gold); }
.content-body ul, .content-body ol { padding-left: 22px; margin: 0 0 16px; }
.content-body li { margin-bottom: 6px; color: var(--c-text); line-height: 1.7; }
.content-body strong { color: #fff; font-weight: 700; }
.content-body em { color: var(--c-text-muted); }
.content-body blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 12px 20px;
  margin: 20px 0;
  background: rgba(5,173,239,.06);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--c-text-muted);
}
.content-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  display: block;
}
.content-body table th {
  background: var(--c-surface2);
  color: #fff;
  padding: 11px 14px;
  text-align: left;
  font-weight: 700;
  border: 1px solid var(--c-border);
}
.content-body table td {
  padding: 10px 14px;
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.content-body table tr:hover { background: rgba(5,173,239,.04); }
.content-body img { border-radius: 8px; margin: 16px 0; }
.content-body hr { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }
.content-body code {
  background: var(--c-surface2);
  color: var(--c-accent);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 13px;
}

.faq-block  { padding-top: 60px;padding-bottom: 60px; }

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

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: rgba(5,173,239,.4); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  gap: 12px;
  user-select: none;
}

.faq-q span {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  flex: 1;
}

.faq-arrow {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-arrow { transform: rotate(180deg); background: var(--c-btn-primary); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), padding var(--transition);
}

.faq-item.open .faq-a { max-height: 500px; }

.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--c-text-muted);
  line-height: 1.75;
}

.author-block  { padding-top: 60px;padding-bottom: 60px; }

.author-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.author-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--c-btn-primary);
}

.author-info { flex: 1; }
.author-name { font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.author-title { font-size: 13px; color: var(--c-accent); font-weight: 600; margin-bottom: 12px; }
.author-bio { font-size: 14px; color: var(--c-text-muted); line-height: 1.75; margin-bottom: 16px; }

.author-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.author-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-text-muted);
}

.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  background: var(--c-surface2);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.author-link:hover { background: var(--c-btn-primary); border-color: var(--c-btn-primary); color: #fff; }

.site-footer {
  background: var(--c-footer);
  border-top: 1px solid var(--c-border);
  padding: 50px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--c-border);
}

.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand-link {display: block;width: fit-content;}
.footer-logo img { height: 44px;width: auto; }
.footer-brand-desc { font-size: 13px; color: var(--c-text-muted); line-height: 1.7; }

.footer-flag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--c-text-muted);
}

.footer-flag-img { width: 24px; height: 16px; border-radius: 2px; object-fit: cover; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav li a {
  font-size: 13px;
  color: var(--c-text-muted);
  transition: color var(--transition);
}

.footer-nav li a:hover { color: var(--c-accent); }

.footer-social { display: flex; gap: 8px; flex-wrap: wrap; }

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.footer-social-link:hover { background: var(--c-btn-primary); border-color: var(--c-btn-primary); color: #fff; }

.footer-mid {
  padding: 28px 0;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logos-row { display: flex; flex-direction: column; gap: 12px; }
.footer-logos-label { font-size: 11px; font-weight: 700; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; }
.footer-logos { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.footer-logo-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 7px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text-muted);
  transition: border-color var(--transition);
}
.footer-logo-pill:hover { border-color: var(--c-accent); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-legal { font-size: 11px; color: var(--c-text-muted); line-height: 1.7; }
.footer-legal a { color: var(--c-text-muted); text-decoration: underline; }
.footer-copyright { font-size: 12px; color: var(--c-text-muted); }

.widget-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(135deg, #060D43 0%, #051035 100%);
  border-top: 2px solid var(--c-btn-primary);
  box-shadow: 0 -4px 30px rgba(3,86,105,.3);
  transform: translateY(0);
  transition: transform var(--transition);
}

.widget-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.widget-left { display: flex; flex-direction: column; gap: 2px; }
.widget-title { font-size: 13px; font-weight: 800; color: #fff; }
.widget-sub { font-size: 11px; color: var(--c-text-muted); }

.widget-promo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.promo-label { font-size: 12px; color: var(--c-text-muted); font-weight: 600; }

.promo-code-box {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(245,197,24,.4);
}

.promo-code {
  background: rgba(245,197,24,.1);
  color: var(--c-gold);
  font-weight: 800;
  font-size: 14px;
  padding: 8px 14px;
  letter-spacing: 1px;
  user-select: all;
}

.promo-copy {
  background: var(--c-gold);
  color: #060D43;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  cursor: pointer;
  border: none;
  transition: background var(--transition);
}
.promo-copy:hover { background: #e5a800; }

.widget-right { display: flex; gap: 8px; align-items: center; }

.widget-close {
  background: transparent;
  border: 1px solid var(--c-border);
  color: var(--c-text-muted);
  border-radius: 6px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
  transition: background var(--transition);
}
.widget-close:hover { background: var(--c-surface); }

.main-content-section { padding-top: 60px; padding-bottom: 60px; }
.main-content-section:first-child { padding-top: 40px; }

.block-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.block-card-pad { padding: 32px; }

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.section-divider {
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--c-btn-primary), var(--c-accent));
  margin: 10px 0 28px;
}

.tag-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(5,173,239,.12);
  color: var(--c-accent);
  border: 1px solid rgba(5,173,239,.25);
}

.text-gold { color: var(--c-gold) !important; }
.text-accent { color: var(--c-accent) !important; }
.text-muted { color: var(--c-text-muted) !important; }

.wp-content-hidden { display: none; }
.woocommerce-hidden { display: none; }
.wp-post-meta { display: none; }
.yoast-seo-meta-tag { display: none; }
.site-main { display: flex; flex-direction: column; }
@media (max-width: 1024px) {
  .header-nav a {padding: 6px;}
  .header-logo img {height: 40px;}
}



@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .t-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--c-header);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px 30px;
    gap: 4px;
    border-right: 1px solid var(--c-border);
    z-index: 999;
    transition: left var(--transition);
    overflow-y: auto;
  }

  .header-nav.open { left: 0; }
  .header-nav a { width: 100%; padding: 12px 14px; font-size: 15px; }

  .burger { display: flex; }

  .header-inner { gap: 8px; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-top > :first-child { order: -1; }

  .author-card { flex-direction: column; gap: 20px; align-items: center; text-align: center; }
  .author-meta { justify-content: center; }
  .author-links { justify-content: center; }

  .t-grid { grid-template-columns: 1fr; }

  .hero-content { padding: 40px 18px; }

  .widget-inner { gap: 10px; }
  .widget-promo { gap: 6px; }

  body { padding-bottom: 80px; }

  .demo-iframe-wrap iframe { height: 300px; }

  .review-inner { padding: 24px 18px; }

  .block-card-pad { padding: 20px 16px; }
}

@media (max-width: 480px) {
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .header-logo img { height: 38px; }
  .btn-login { display: none; }
  .online-badge { display: none; }
  .demo-game-info span {display: none;}
}
@media (max-width: 420px) {
  .advantages-grid { grid-template-columns: 1fr; }
}

.wp-block-image { margin: 16px 0; }
.has-background { padding: 20px; border-radius: 8px; }
.wp-block-separator { border: none; border-top: 1px solid var(--c-border); margin: 24px 0; }
.wp-block-quote { border-left: 4px solid var(--c-accent); padding-left: 20px; color: var(--c-text-muted); font-style: italic; }
.is-style-large { font-size: 1.1em; }
.aligncenter { text-align: center; margin: 0 auto; }
.alignleft { float: left; margin-right: 16px; }
.alignright { float: right; margin-left: 16px; }
.size-full, .size-large { width: 100%; height: auto; }
