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

:root {
  --c-bg: #060D43;
  --c-header: #060D43;
  --c-primary: #035669;
  --c-secondary: #060D43;
  --c-accent: #0a7a96;
  --c-gold: #f0b429;
  --c-text: #e8eaf6;
  --c-text-muted: #9fa8c7;
  --c-border: rgba(255,255,255,0.08);
  --c-card: rgba(255,255,255,0.04);
  --c-card-hover: rgba(3,86,105,0.18);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.25s ease;
  --font: 'Nunito', 'Segoe UI', sans-serif;
  --shadow: 0 4px 24px rgba(0,0,0,0.35);
  --shadow-btn: 0 4px 16px rgba(3,86,105,0.45);
}

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

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

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  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-gold); }

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

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

h1 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 2.1rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

p { margin-bottom: 1em; }

ul, ol { padding-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.3em; }

.x9b3-wrapper { min-height: 100vh; display: flex; flex-direction: column; }
.k2m7-container { max-width: 1220px; margin: 0 auto; padding: 0 20px; width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), opacity var(--transition);
  white-space: nowrap;
  text-decoration: none !important;
}
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn--primary:hover { background: var(--c-accent); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 22px rgba(3,86,105,0.6); }
.btn--secondary {
  background: var(--c-secondary);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--secondary:hover { background: rgba(255,255,255,0.08); color: #fff; transform: translateY(-2px); }
.btn--gold {
  background: var(--c-gold);
  color: #060D43;
  font-weight: 800;
  box-shadow: 0 4px 18px rgba(240,180,41,0.45);
}
.btn--gold:hover { background: #ffc94d; color: #060D43; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(240,180,41,0.6); }
.btn--lg { padding: 14px 36px; font-size: 1.05rem; border-radius: var(--radius-md); }
.btn--sm { padding: 7px 16px; font-size: 0.83rem; }

.p3k9-site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--c-header);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.q7r2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  flex-wrap: nowrap;
}
.f8t1-logo { display: flex; align-items: center; flex-shrink: 0; }
.f8t1-logo img { height: 48px; width: auto; object-fit: contain; }
.f8t1-logo span {
  font-size: 1.35rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  margin-left: 10px;
}
.f8t1-logo span em { color: var(--c-gold); font-style: normal; }

.v5n8-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.v5n8-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  color: var(--c-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.v5n8-nav a:hover, .v5n8-nav a.active { background: rgba(255,255,255,0.07); color: #fff; }
.v5n8-nav a svg { width: 16px; height: 16px; flex-shrink: 0; }

.w1e6-header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.z4d2-online-count {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  white-space: nowrap;
}
.z4d2-online-count span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4caf50;
  display: inline-block;
  animation: pulse-dot 1.8s infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}

.m3j5-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.m3j5-burger:hover { background: rgba(255,255,255,0.07); }
.m3j5-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.m3j5-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.m3j5-burger.is-open span:nth-child(2) { opacity: 0; }
.m3j5-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.a6c0-mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #0a1254;
  border-bottom: 1px solid var(--c-border);
  padding: 16px 20px;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  z-index: 9998;
  animation: slideDown 0.25s ease;
}
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.a6c0-mobile-nav.is-open { display: flex; }
.a6c0-mobile-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--c-text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}
.a6c0-mobile-nav a:hover { background: rgba(255,255,255,0.07); color: #fff; }
.a6c0-mobile-nav a svg { width: 17px; height: 17px; }

.s2h7-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #060D43 0%, #061d45 40%, #033a52 100%);
}
.s2h7-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/heapsowins-casino-title-img.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  z-index: 0;
}
.s2h7-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,13,67,0.95) 0%, rgba(6,13,67,0.7) 60%, rgba(6,13,67,0.3) 100%);
  z-index: 1;
}
.s2h7-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}
.s2h7-hero-content { max-width: 560px; }
.s2h7-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240,180,41,0.12);
  border: 1px solid rgba(240,180,41,0.3);
  color: var(--c-gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.s2h7-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin-bottom: 16px; }
.s2h7-hero h1 span { color: var(--c-gold); }
.s2h7-hero p { color: var(--c-text-muted); font-size: 1.05rem; margin-bottom: 28px; max-width: 480px; line-height: 1.7; }
.s2h7-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.s2h7-promo-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  min-width: 260px;
  text-align: center;
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.s2h7-promo-card .promo-label { font-size: 0.8rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.s2h7-promo-card .promo-bonus { font-size: 3rem; font-weight: 800; color: var(--c-gold); line-height: 1; margin-bottom: 4px; }
.s2h7-promo-card .promo-sub { font-size: 0.85rem; color: var(--c-text-muted); margin-bottom: 18px; }
.s2h7-promo-card .promo-code-box {
  background: rgba(255,255,255,0.07);
  border: 1px dashed rgba(240,180,41,0.4);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  margin-bottom: 16px;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.s2h7-promo-card .promo-code-box strong { color: var(--c-gold); font-size: 1.1rem; letter-spacing: 2px; display: block; }

.b8n1-breadcrumbs {
  padding: 12px 0;
  border-bottom: 1px solid var(--c-border);
}
.b8n1-breadcrumbs-inner {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--c-text-muted);
}
.b8n1-breadcrumbs-inner a { color: var(--c-text-muted); text-decoration: none; }
.b8n1-breadcrumbs-inner a:hover { color: var(--c-gold); }
.b8n1-breadcrumbs-inner .sep { color: rgba(255,255,255,0.2); }
.b8n1-breadcrumbs-inner .current { color: #fff; }

.r4p6-section { padding: 60px 0; }
.r4p6-section-title {
  text-align: center;
  margin-bottom: 40px;
}
.r4p6-section-title h2 { margin-bottom: 10px; }
.r4p6-section-title p { color: var(--c-text-muted); max-width: 560px; margin: 0 auto; }

.e7w3-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
}
.e7w3-feature-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.e7w3-feature-card:hover { background: var(--c-card-hover); transform: translateY(-4px); border-color: rgba(3,86,105,0.4); }
.e7w3-feature-card .fc-icon {
  width: 52px;
  height: 52px;
  background: rgba(3,86,105,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  color: var(--c-accent);
}
.e7w3-feature-card .fc-icon svg { width: 26px; height: 26px; }
.e7w3-feature-card h3 { font-size: 0.95rem; margin-bottom: 7px; }
.e7w3-feature-card p { font-size: 0.82rem; color: var(--c-text-muted); margin: 0; line-height: 1.5; }

.j5k0-jackpots {
  background: linear-gradient(135deg, #040b35 0%, #052844 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 0 0 24px;
}
.j5k0-jackpots-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.j5k0-jackpot-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  text-align: center;
  flex: 1 1 170px;
  transition: transform var(--transition);
}
.j5k0-jackpot-item:hover { transform: translateY(-3px); }
.j5k0-jackpot-item .jt-name { font-size: 0.8rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.j5k0-jackpot-item .jt-amount { font-size: 1.8rem; font-weight: 800; color: var(--c-gold); line-height: 1; margin-bottom: 4px; }
.jt-amount-ticker { display: inline-block; min-width: 4ch; }
.j5k0-jackpot-item .jt-label { font-size: 0.75rem; color: rgba(240,180,41,0.6); }

.l9m2-screenshots { overflow: hidden; }
.l9m2-screenshots-track {
  display: flex;
  gap: 16px;
  transition: transform 0.4s cubic-bezier(0.25,0.1,0.25,1);
}
.l9m2-screenshot-item {
  flex: 0 0 calc(33.33% - 11px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
}
.l9m2-screenshot-item img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.4s; }
.l9m2-screenshot-item:hover img { transform: scale(1.04); }
.l9m2-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}
.l9m2-slider-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--c-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  color: #fff;
  flex-shrink: 0;
}
.l9m2-slider-btn:hover { background: var(--c-primary); }
.l9m2-slider-btn svg { width: 18px; height: 18px; }
.l9m2-slider-dots { display: flex; gap: 6px; }
.l9m2-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
}
.l9m2-dot.active { background: var(--c-gold); }

.n0q8-app-inner {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.n0q8-app-table-wrap {
  flex: 1 1 400px;
  overflow-x: auto;
}
.n0q8-app-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  min-width: 360px;
}
.n0q8-app-table th, .n0q8-app-table td {
  padding: 13px 18px;
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  font-size: 0.9rem;
}
.n0q8-app-table th { background: rgba(3,86,105,0.18); color: var(--c-gold); font-weight: 700; width: 40%; }
.n0q8-app-table td { color: var(--c-text); }
.n0q8-app-table tr:last-child th,
.n0q8-app-table tr:last-child td { border-bottom: none; }
.n0q8-app-downloads {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.n0q8-app-downloads .dl-label { font-size: 0.82rem; color: var(--c-text-muted); margin-bottom: 4px; display: block; }
.n0q8-dl-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 700;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none !important;
}
.n0q8-dl-btn:hover { background: var(--c-card-hover); border-color: var(--c-primary); transform: translateY(-2px); color: #fff; }
.n0q8-dl-btn svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--c-gold); }
.n0q8-dl-btn-text small { display: block; font-size: 0.72rem; font-weight: 400; color: var(--c-text-muted); }
.n0q8-dl-btn-text strong { font-size: 0.97rem; }

.d3f7-demo-wrap {
  background: #000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--c-border);
  position: relative;
}
.d3f7-demo-wrap iframe {
  width: 100%;
  height: 560px;
  display: block;
  border: none;
}
.d3f7-demo-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid var(--c-border);
}
.d3f7-demo-label span { font-size: 0.85rem; color: var(--c-text-muted); }
.d3f7-demo-label strong { color: #fff; }

.c1v9-author-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.c1v9-author-avatar {
  min-width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
}
.c1v9-author-info h4 { font-size: 1rem; margin-bottom: 2px; }
.c1v9-author-info p { font-size: 0.8rem; color: var(--c-text-muted); margin: 0; line-height: 1.4; }
.c1v9-author-info a { color: var(--c-accent); font-size: 0.78rem; }

.c1v9-content-body {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 32px 36px;
}
.c1v9-content-body h2,
.c1v9-content-body h3,
.c1v9-content-body h4 { margin-top: 1.4em; margin-bottom: 0.5em; color: #fff; }
.c1v9-content-body h2 { font-size: 1.5rem; border-bottom: 1px solid var(--c-border); padding-bottom: 8px; }
.c1v9-content-body h3 { font-size: 1.2rem; }
.c1v9-content-body p { color: var(--c-text); line-height: 1.75; margin-bottom: 1em; }
.c1v9-content-body ul, .c1v9-content-body ol { margin-bottom: 1em; }
.c1v9-content-body li { color: var(--c-text); margin-bottom: 0.4em; }
.c1v9-content-body a { color: var(--c-accent); }
.c1v9-content-body a:hover { color: var(--c-gold); }
.c1v9-content-body table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.c1v9-content-body table th { background: rgba(3,86,105,0.2); color: var(--c-gold); padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); }
.c1v9-content-body table td { padding: 10px 14px; text-align: left; border: 1px solid var(--c-border); color: var(--c-text); }
.c1v9-content-body strong, .c1v9-content-body b { color: #fff; }
.c1v9-content-body em { color: var(--c-gold); }
.c1v9-content-body blockquote {
  border-left: 3px solid var(--c-primary);
  padding: 10px 18px;
  margin: 1em 0;
  background: rgba(255,255,255,0.03);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--c-text-muted);
  font-style: italic;
}

.g6u4-faq-list { display: flex; flex-direction: column; gap: 10px; }
.g6u4-faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}
.g6u4-faq-item.is-open { border-color: rgba(3,86,105,0.4); }
.g6u4-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 12px;
}
.g6u4-faq-question h3 {
  font-size: 0.97rem;
  color: #fff;
  margin: 0;
  font-weight: 600;
  flex: 1;
}
.g6u4-faq-icon {
  width: 22px;
  height: 22px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
  color: var(--c-text-muted);
}
.g6u4-faq-item.is-open .g6u4-faq-icon { background: var(--c-primary); color: #fff; transform: rotate(45deg); }
.g6u4-faq-icon svg { width: 13px; height: 13px; }
.g6u4-faq-answer {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.g6u4-faq-item.is-open .g6u4-faq-answer { max-height: 500px; padding: 0 22px 18px; }
.g6u4-faq-answer p { font-size: 0.9rem; color: var(--c-text-muted); margin: 0; line-height: 1.65; }

.h7y5-footer {
  background: #04093a;
  border-top: 1px solid var(--c-border);
  padding: 48px 0 28px;
  margin-top: auto;
}
.h7y5-footer-top {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 28px;
}
.h7y5-footer-brand { flex: 1 1 220px; }
.h7y5-footer-brand .footer-logo { margin-bottom: 12px; }
.h7y5-footer-brand .footer-logo img { height: 42px;width: auto; }
.footer-logo-link {display: block;width: fit-content;}
.h7y5-footer-brand p { font-size: 0.82rem; color: var(--c-text-muted); line-height: 1.6; margin-bottom: 12px; }
.h7y5-footer-nav-col { flex: 1 1 160px; }
.h7y5-footer-nav-col h4 { font-size: 0.85rem; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.h7y5-footer-nav-col ul { list-style: none; padding: 0; margin: 0; }
.h7y5-footer-nav-col ul li { margin-bottom: 8px; }
.h7y5-footer-nav-col ul li a { font-size: 0.83rem; color: var(--c-text-muted); transition: color var(--transition); }
.h7y5-footer-nav-col ul li a:hover { color: var(--c-gold); }

.h7y5-footer-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 24px;
}
.h7y5-logos-group { flex: 1 1 200px; }
.h7y5-logos-group h5 { font-size: 0.75rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.h7y5-logos-items { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.h7y5-logo-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--c-text-muted);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.h7y5-logo-badge svg { width: 14px; height: 14px; }

.h7y5-footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.h7y5-social-btn {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background var(--transition), color var(--transition);
  text-decoration: none !important;
}
.h7y5-social-btn:hover { background: var(--c-primary); color: #fff; }
.h7y5-social-btn svg { width: 17px; height: 17px; }

.h7y5-footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.h7y5-copyright {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}
.h7y5-copyright strong { color: var(--c-text); }
.h7y5-footer-country { display: flex; align-items: center; gap: 6px; }
.h7y5-footer-country svg { width: 22px; height: 16px; }
.h7y5-footer-country span { font-size: 0.78rem; color: var(--c-text-muted); }
.h7y5-legal { font-size: 0.72rem; color: rgba(255,255,255,0.3); max-width: 540px; line-height: 1.55; }

.t8z1-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8888;
  background: linear-gradient(90deg, #033d55 0%, #060D43 100%);
  border-top: 1px solid rgba(3,86,105,0.5);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.45);
}
.t8z1-widget-text { font-size: 0.88rem; color: var(--c-text-muted); }
.t8z1-widget-text strong { color: #fff; font-size: 1rem; display: block; }
.t8z1-widget-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--c-gold);
}
.t8z1-widget-bonus svg { width: 18px; height: 18px; }
.t8z1-widget-cta { display: flex; gap: 8px; align-items: center; }
.t8z1-widget-close {
  background: none;
  border: none;
  color: var(--c-text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: color var(--transition);
  flex-shrink: 0;
}
.t8z1-widget-close:hover { color: #fff; }
.t8z1-widget-close svg { width: 18px; height: 18px; }
.content__table-wrap{overflow-x:auto;-webkit-overflow-scrolling:touch;margin:16px 0;border-radius:8px;}
.content table{width:100%;min-width:500px;border-collapse:collapse;margin:0;font-size:.9rem;}
.u2p4-info-page { padding: 60px 0; }
.u2p4-info-page h1 { margin-bottom: 24px; }
.u2p4-info-content { max-width: 800px; }
.u2p4-info-content h2,h3 { margin-top: 1.5em; margin-bottom: 0.5em; }
.u2p4-info-content p { color: var(--c-text-muted); line-height: 1.75; }
.u2p4-info-content ul, .u2p4-info-content ol { color: var(--c-text-muted); }

.wp-content-placeholder { display: none; }
#wp-emoji-ext { display: none; }
.elementor-hidden { display: none; }

@media (max-width: 1024px) {
  .l9m2-screenshot-item { flex: 0 0 calc(50% - 8px); }
}
@media (max-width: 900px) {
  .z4d2-online-count {display: none;}
}


@media (max-width: 768px) {
  .v5n8-nav { display: none; }
  .m3j5-burger { display: flex; }
  .s2h7-hero-inner { flex-direction: column; padding: 40px 0; gap: 24px; }
  .s2h7-promo-card { min-width: auto; width: 100%; max-width: 320px; }
  .j5k0-jackpots { padding: 24px 16px; }
  .l9m2-screenshot-item { flex: 0 0 calc(100% - 0px); }
  .n0q8-app-inner { flex-direction: column; }
  .d3f7-demo-wrap iframe { height: 380px; }
  .c1v9-content-body { padding: 20px 18px; }
  .h7y5-footer-top { flex-direction: column; gap: 24px; }
  .h7y5-footer-logos-row { flex-direction: column; }
  .h7y5-footer-bottom { flex-direction: column; }
  .t8z1-widget { flex-wrap: wrap; padding: 12px 16px; gap: 10px; }
  .t8z1-widget-text { flex: 1 1 100%; }
  .e7w3-features-grid { gap: 12px; }
  .e7w3-feature-card { max-width: none; }
  .r4p6-section { padding: 40px 0; }
}

@media (max-width: 480px) {
  .w1e6-header-actions .btn--secondary { display: none; }
  .s2h7-hero h1 { font-size: 1.6rem; }
  .s2h7-hero-actions { flex-direction: column; align-items: flex-start; }
  .s2h7-hero-actions .btn { width: 100%; justify-content: center; }
  .j5k0-jackpot-item .jt-amount { font-size: 1.4rem; }
  .n0q8-app-table {min-width: 250px;}
  .c1v9-author-box {flex-direction: column;}
  .c1v9-content-body { padding: 18px 16px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.5s ease forwards; }
.fade-in-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-in-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-in-up-delay-3 { animation-delay: 0.3s; opacity: 0; }

.body--widget-open { padding-bottom: 68px; }

.x4k8-unused-el { visibility: hidden; height: 0; overflow: hidden; position: absolute; }
.wp-block-group { display: block; }
.has-global-padding { padding: 0; }
.wp-site-blocks { display: block; }
