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

:root {
  --c-bg: #060D43;
  --c-hdr: #060D43;
  --c-btn-sec: #060D43;
  --c-btn-pri: #035669;
  --c-btn-pri-h: #046f89;
  --c-btn-sec-h: #0b175e;
  --c-accent: #00c3f7;
  --c-accent2: #f7c600;
  --c-text: #e8eaf6;
  --c-text-muted: #8fa0b8;
  --c-card: #0b1450;
  --c-card2: #091240;
  --c-border: #1a2468;
  --c-gold: #f7c600;
  --c-green: #00e676;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}

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

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

body {
  font-family: 'Nunito', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  overflow-x: hidden;
}

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

img { max-width: 100%; height: auto; display: block; }
table, iframe, canvas, video, svg { max-width: 100%; }
/* Long words / URLs must never force the page wider than the screen */
p, li, a, h1, h2, h3, h4, td, th { overflow-wrap: break-word; word-break: break-word; }

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

h1 { font-size: clamp(1.6rem, 4vw, 2.6rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.3rem, 3vw, 2rem); margin-bottom: 0.85rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.45rem); margin-bottom: 0.65rem; }

p { margin-bottom: 0.9rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 0.9rem; }
li { margin-bottom: 0.35rem; }

.x7k2a { display: none; }
.q9f3r { visibility: hidden; height: 0; overflow: hidden; }

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.box {
  border-radius: var(--radius);
}

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

.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.4); }
.btn:active { transform: translateY(0); }

.btn--pri {
  background: var(--c-btn-pri);
  color: #fff;
}
.btn--pri:hover { background: var(--c-btn-pri-h); color: #fff; }

.btn--sec {
  background: var(--c-btn-sec);
  color: var(--c-accent);
  border: 1.5px solid var(--c-border);
}
.btn--sec:hover { background: var(--c-btn-sec-h); color: var(--c-accent); }

.btn--bonus {
  background: linear-gradient(90deg, #f7c600 0%, #ff8800 100%);
  color: #060D43;
  font-weight: 800;
}
.btn--bonus:hover { filter: brightness(1.12); color: #060D43; }

.btn--lg { padding: 14px 34px; font-size: 1.05rem; }
.btn--sm { padding: 7px 14px; font-size: 0.82rem; }

.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; }

/* ── HEADER ── */
.site-header {
  background: var(--c-hdr);
  border-bottom: 1.5px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

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

.hdr-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

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

.hdr-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--c-text);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.hdr-nav a:hover { background: var(--c-border); color: var(--c-accent); }
.hdr-nav a svg { width: 15px; height: 15px; flex-shrink: 0; }

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

/* Auth buttons that live inside the burger dropdown (mobile only) */
.hdr-nav-cta { display: none; }

.online-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--c-green);
  background: rgba(0,230,118,0.08);
  border: 1px solid rgba(0,230,118,0.2);
  border-radius: 20px;
  padding: 4px 10px;
  white-space: nowrap;
}
.online-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--c-green);
  border-radius: 50%;
  animation: blink 1.4s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
  border-radius: 6px;
  transition: background var(--transition);
}
.burger:hover { background: var(--c-border); }
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-text);
  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); }

/* ── HERO ── */
.hero-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: url('/Heaps-O-Wins-banner.png') center/cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6,13,67,0.92) 0%, rgba(3,86,105,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 16px;
  max-width: 640px;
}

.hero-badge {
  display: inline-block;
  background: var(--c-accent2);
  color: var(--c-bg);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content h1 { font-size: clamp(1.8rem, 5vw, 3rem); text-shadow: 0 2px 16px rgba(0,0,0,0.5); }
.hero-content p { font-size: 1.1rem; color: rgba(232,234,246,0.88); max-width: 500px; }

.hero-bonus-box {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(247,198,0,0.4);
  border-radius: var(--radius);
  padding: 14px 22px;
  margin: 18px 0;
  backdrop-filter: blur(6px);
}
.hero-bonus-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--c-gold);
  line-height: 1;
}
.hero-bonus-txt { font-size: 0.88rem; color: var(--c-text); line-height: 1.3; }
.hero-bonus-txt strong { display: block; font-size: 1rem; color: #fff; }

/* ── BREADCRUMBS ── */
.breadcrumbs-wrap {
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.82rem;
  color: var(--c-text-muted);
  padding: 0;
  margin: 0;
}
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 6px; color: var(--c-border); }
.breadcrumbs a { color: var(--c-text-muted); transition: color var(--transition); }
.breadcrumbs a:hover { color: var(--c-accent); }
.breadcrumbs li:last-child { color: var(--c-text); }

/* ── SECTION STYLES ── */
.section {
  padding: 48px 0;
}
.section + .section {
  padding-top: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}
.section-title h2 { margin: 0; }
.section-title svg { width: 26px; height: 26px; color: var(--c-accent); flex-shrink: 0; }

.content-area {
  padding: 40px 0;
}

/* ── TABLE OF CONTENTS ── */
.toc-block {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 0 8px 32px;
}
.toc-block h3 { margin-bottom: 16px; color: var(--c-accent); font-size: 1.1rem; }
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 8px;
}
.toc-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--c-text);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  border: 1px solid transparent;
}
.toc-list a:hover {
  background: rgba(0,195,247,0.08);
  color: var(--c-accent);
  border-color: var(--c-border);
}
.toc-list a svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--c-accent); }

/* ── ADVANTAGES ── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  padding: 0 8px;
}
.adv-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.adv-card:hover { transform: translateY(-4px); border-color: var(--c-accent); box-shadow: 0 8px 28px rgba(0,195,247,0.15); }
.adv-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  background: rgba(0,195,247,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-accent);
}
.adv-icon svg { width: 24px; height: 24px; }
.adv-card h3 { font-size: 0.95rem; margin-bottom: 6px; }
.adv-card p { font-size: 0.82rem; color: var(--c-text-muted); margin: 0; }

/* ── JACKPOTS ── */
.jackpots-block {
  background: linear-gradient(135deg, #09174e 0%, #041432 100%);
  border: 1.5px solid rgba(247,198,0,0.25);
  border-radius: var(--radius);
  padding: 32px 28px;
  margin: 0 8px;
  text-align: center;
}
.jackpot-ticker {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.jackpot-item {
  background: rgba(247,198,0,0.07);
  border: 1.5px solid rgba(247,198,0,0.25);
  border-radius: var(--radius);
  padding: 18px 28px;
  min-width: 180px;
}
.jackpot-label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--c-text-muted); margin-bottom: 6px; }
.jackpot-amount {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--c-gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

/* ── TOURNAMENTS ── */
.tournaments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  padding: 0 8px;
}
.tourn-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), border-color var(--transition);
}
.tourn-card:hover { transform: translateY(-3px); border-color: var(--c-accent); }
.tourn-badge {
  display: inline-block;
  background: rgba(0,195,247,0.12);
  color: var(--c-accent);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  align-self: flex-start;
}
.tourn-card h3 { font-size: 1rem; margin: 0; }
.tourn-card p { font-size: 0.83rem; color: var(--c-text-muted); margin: 0; flex-grow: 1; }
.tourn-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
}
.tourn-prize {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--c-gold);
}
.tourn-timer {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}
.tourn-timer svg { width: 13px; height: 13px; }
.countdown { font-weight: 700; color: var(--c-accent); }

/* ── GAMES ── */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 16px;
  padding: 0 8px;
}
.game-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
  text-align: center;
}
.game-card:hover { transform: translateY(-4px); border-color: var(--c-accent); }
.game-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #0d1e5e 0%, #0b3455 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255,255,255,0.15);
}
.game-thumb img { width: 100%; height: 100%; object-fit: cover; }
.game-info { padding: 12px 10px; }
.game-info h3 { font-size: 0.88rem; margin-bottom: 8px; }
.game-info .btn { width: 100%; }

/* ── REVIEW CONTENT ── */
.review-content {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 36px;
  margin: 0 8px;
}
.review-content h2,
.review-content h3,
.review-content h4 { color: #fff; margin-top: 1.4em; }
.review-content a { color: var(--c-accent); text-decoration: underline; }
.review-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
  display: block;
  overflow-x: auto;
}
.review-content th,
.review-content td {
  border: 1.5px solid var(--c-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.9rem;
  white-space: nowrap;
}
.review-content th { background: var(--c-card2); font-weight: 700; color: var(--c-accent); }
.review-content tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.review-content ul li::marker { color: var(--c-accent); }
.review-content ol li::marker { color: var(--c-accent); font-weight: 700; }
.review-content img { border-radius: var(--radius-sm); margin: 1em 0; }
.review-content blockquote {
  border-left: 3px solid var(--c-accent);
  padding: 10px 18px;
  margin: 1em 0;
  color: var(--c-text-muted);
  font-style: italic;
  background: rgba(0,195,247,0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ── FAQ ── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 8px;
}
.faq-item {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--c-accent); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: inherit;
  font-size: 0.97rem;
  font-weight: 700;
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--c-accent); }
.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--c-accent);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding var(--transition);
}
.faq-item.open .faq-a { max-height: 800px; }
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 0.91rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  padding: 0 8px;
  margin-bottom: 32px;
}
.review-card {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 22px 18px;
  transition: transform var(--transition);
}
.review-card:hover { transform: translateY(-3px); }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-btn-pri), var(--c-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.review-meta h4 { font-size: 0.92rem; margin: 0; }
.stars { color: var(--c-gold); font-size: 0.9rem; letter-spacing: 1px; }
.stars svg { display: inline; width: 14px; height: 14px; fill: var(--c-gold); vertical-align: middle; }
.review-text { font-size: 0.85rem; color: var(--c-text-muted); line-height: 1.6; margin: 0; }

.review-form-wrap {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 8px;
}

/* ── FORMS ── */
.form-vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 560px;
}
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--c-text-muted); }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  padding: 11px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px rgba(0,195,247,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--c-text-muted); }
.form-msg {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  display: none;
}
.form-msg.success { background: rgba(0,230,118,0.1); border: 1px solid var(--c-green); color: var(--c-green); }
.form-msg.error { background: rgba(255,80,80,0.1); border: 1px solid #ff5050; color: #ff6b6b; }

/* ── COMMENTS ── */
.comments-block {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 8px;
}
.comment-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.comment-item:last-of-type { border-bottom: none; }
.comment-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #035669, #00c3f7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.comment-body h4 { font-size: 0.88rem; margin-bottom: 3px; }
.comment-body p { font-size: 0.83rem; color: var(--c-text-muted); margin: 0; }
.comment-date { font-size: 0.75rem; color: var(--c-text-muted); display: block; margin-top: 2px; }

/* ── AUTHOR ── */
.author-block {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 8px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2.5px solid var(--c-border);
}
.author-info h3 { font-size: 1.1rem; margin-bottom: 2px; }
.author-role { font-size: 0.82rem; color: var(--c-accent); font-weight: 600; margin-bottom: 8px; }
.author-bio { font-size: 0.88rem; color: var(--c-text-muted); margin-bottom: 12px; }
.author-links { display: flex; gap: 10px; flex-wrap: wrap; }
.author-links a {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.82rem; color: var(--c-text-muted);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 20px; padding: 4px 12px;
  transition: border-color var(--transition), color var(--transition);
}
.author-links a:hover { border-color: var(--c-accent); color: var(--c-accent); }
.author-links svg { width: 13px; height: 13px; }
.author-dates { font-size: 0.78rem; color: var(--c-text-muted); margin-top: 10px; }

/* ── FOOTER ── */
.site-footer {
  background: var(--c-hdr);
  border-top: 1.5px solid var(--c-border);
  margin-top: auto;
  padding: 40px 0 24px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}
.footer-logo img { height: 38px; margin-bottom: 12px; }
.footer-desc { font-size: 0.82rem; color: var(--c-text-muted); }
.footer-col h4 { font-size: 0.88rem; color: var(--c-accent); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 0.83rem; color: var(--c-text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--c-accent); }
.footer-social { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-text-muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover { border-color: var(--c-accent); color: var(--c-accent); background: rgba(0,195,247,0.08); }
.footer-social svg { width: 15px; height: 15px; }

.footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 18px;
}
.footer-logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  font-weight: 600;
  white-space: nowrap;
}
.footer-logo-badge svg { width: 16px; height: 16px; }
.footer-flag { font-size: 1.3rem; }

.footer-bottom {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}
.footer-bottom a { color: var(--c-text-muted); }
.footer-bottom a:hover { color: var(--c-accent); }
.footer-copy { margin-bottom: 10px; }

/* ── STICKY WIDGET ── */
.sticky-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(90deg, #035669 0%, #046f89 100%);
  border-top: 2px solid rgba(0,195,247,0.4);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.5);
}
.sticky-promo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sticky-badge {
  background: var(--c-gold);
  color: var(--c-bg);
  font-size: 0.72rem;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
}
.sticky-text { font-size: 0.92rem; font-weight: 700; color: #fff; }
.sticky-code {
  background: rgba(0,0,0,0.25);
  border: 1.5px dashed rgba(255,255,255,0.35);
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--c-gold);
  letter-spacing: 1.5px;
  cursor: pointer;
  user-select: all;
}
.sticky-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition);
  line-height: 1;
}
.sticky-close:hover { color: #fff; }

/* ── INFO PAGE ── */
.info-content {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin: 32px 8px;
}
.info-content h1 { margin-bottom: 20px; }
.info-content h2 { margin-top: 1.6em; font-size: 1.3rem; }
.info-content p, .info-content li { font-size: 0.92rem; color: var(--c-text-muted); }
.info-content a { color: var(--c-accent); }

/* ── SLIDER (mobile) ── */
.slider-wrap { position: relative; overflow: hidden; padding: 0 8px; }
.slider-track {
  display: flex;
  gap: 16px;
  transition: transform 0.35s ease;
}
.slider-btns { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.slider-btn {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  color: var(--c-text);
  border-radius: 50%;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background var(--transition), border-color var(--transition);
}
.slider-btn:hover { background: var(--c-border); border-color: var(--c-accent); }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
/* By default content is always visible (no-JS / fallback safe). */
.fade-up { animation: fadeInUp 0.55s ease both; }
.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
/* Scroll-reveal is enabled only when JS adds .js-anim; it reveals on .in-view. */
.js-anim .fade-up { opacity: 0; animation: none; }
.js-anim .fade-up.in-view { animation: fadeInUp 0.55s ease both; }
@media (prefers-reduced-motion: reduce) {
  .fade-up, .js-anim .fade-up, .js-anim .fade-up.in-view { animation: none !important; opacity: 1 !important; }
}

/* ── PAYMENT ICONS ROW ── */
.payment-icons {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 8px;
}
.pay-icon {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-text-muted);
  white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Header → burger dropdown */
  .burger { display: flex; }
  nav { position: static; }
  .hdr-inner { flex-wrap: wrap; row-gap: 0; padding: 10px 14px; }
  .hdr-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin: 0;
    padding: 10px 16px 14px;
    background: var(--c-hdr);
    border-bottom: 1.5px solid var(--c-border);
    box-shadow: 0 10px 24px rgba(0,0,0,0.5);
    z-index: 1000;
  }
  .hdr-nav.open { display: flex; }
  .hdr-nav a { padding: 11px 10px; font-size: 0.95rem; }
  .hdr-actions { display: none; }
  .hdr-nav-cta { display: block; }
  .hdr-nav-cta:first-of-type { margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--c-border); }
  .hdr-nav-cta a { width: 100%; justify-content: center; }

  /* Grids — keep cards in tidy cells, never full-width stretched */
  .advantages-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tournaments-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 20px; }
  .toc-list { grid-template-columns: 1fr; }

  /* Jackpot tiles must stay inside their block (no right-side clipping) */
  .jackpots-block { padding: 24px 16px; }
  .jackpot-ticker { gap: 12px; }
  .jackpot-item { min-width: 0; width: 100%; max-width: 280px; padding: 16px 18px; }

  /* Trim oversized paddings so blocks fit the viewport */
  .section { padding: 34px 0; }
  .toc-block { padding: 20px 16px; }
  .review-content { padding: 22px 16px; }
  .review-form-wrap,
  .comments-block { padding: 22px 16px; }
  .author-block { flex-direction: column; padding: 22px 16px; }
  .info-content { padding: 24px 18px; margin: 24px 8px; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { padding: 44px 4px; }
  .hero-content h1 { font-size: 1.6rem; }
  .section-title h2 { font-size: 1.2rem; }
  .sticky-text { font-size: 0.82rem; }
  .sticky-promo { gap: 8px; }
}

/* ── WP CAMOUFLAGE (unused) ── */
.wp-block-group { display: block; }
.entry-content { display: block; }
.wp-block-image { display: block; }
.elementor-section { display: block; }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute; height: 1px; width: 1px; overflow: hidden; }
.widget { display: block; }
.site-content { display: block; }
