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

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

:root {
  --col-bg: #000000;
  --col-header: #0E0E0E;
  --col-btn-primary: #00C070;
  --col-btn-secondary: #FFD342;
  --col-text: #e8e8e8;
  --col-text-muted: #a0a0a0;
  --col-card: #111111;
  --col-card-border: #222222;
  --col-accent: #00C070;
  --col-accent2: #FFD342;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-main: 'Rubik', sans-serif;
  --transition: 0.25s ease;
  --shadow: 0 4px 24px rgba(0,0,0,0.45);
}

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

body {
  font-family: var(--font-main);
  background: var(--col-bg);
  color: var(--col-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--col-btn-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--col-bg);
}

.xb7f2-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.xb7f2-flex {
  display: flex;
  align-items: center;
}

.xb7f2-gap {
  gap: 12px;
}

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

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

.btn:active {
  transform: translateY(0);
}

.btn--green {
  background: var(--col-btn-primary);
  color: #000;
}

.btn--yellow {
  background: var(--col-btn-secondary);
  color: #000;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--col-btn-secondary);
  color: var(--col-btn-secondary);
}

.btn--outline:hover {
  background: var(--col-btn-secondary);
  color: #000;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--sm {
  padding: 7px 16px;
  font-size: 0.82rem;
}

.section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--col-btn-primary);
  border-radius: 2px;
}

.section-title--center {
  text-align: center;
}

.section-title--center::after {
  left: 50%;
  transform: translateX(-50%);
}


.a9k3-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--col-header);
  border-bottom: 1px solid #1a1a1a;
  box-shadow: 0 2px 12px rgba(0,0,0,0.6);
}

.a9k3-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.a9k3-logo img {
  height: 56px;
  width: auto;
}

.a9k3-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.a9k3-nav a {
  color: var(--col-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  text-decoration: none;
}

.a9k3-nav a:hover {
  background: #1c1c1c;
  color: var(--col-btn-secondary);
}

.a9k3-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.a9k3-online {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--col-text-muted);
  white-space: nowrap;
}

.a9k3-online-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--col-btn-primary);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.a9k3-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.a9k3-burger span {
  display: block;
  height: 2px;
  background: var(--col-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

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

.a9k3-mobile-nav {
  display: none;
  flex-direction: column;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 12px 0;
}

.a9k3-mobile-nav.is-open {
  display: flex;
}

.a9k3-mobile-nav a {
  color: var(--col-text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 20px;
  border-bottom: 1px solid #161616;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

.a9k3-mobile-nav a:hover {
  color: var(--col-btn-secondary);
  background: #111;
}


.q2m8-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

.q2m8-slides {
  position: relative;
  width: 100%;
}

.q2m8-slide.is-active {
  opacity: 1;
  position: relative;
  min-height: 520px;
}

.q2m8-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.q2m8-slide.is-active {
  opacity: 1;
  position: relative;
}

.q2m8-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 90%, rgba(0,0,0,0.45) 100%);
}

.q2m8-slide-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
}

.q2m8-slide-tag {
  display: inline-block;
  background: var(--col-btn-primary);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.q2m8-slide-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.q2m8-slide-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  line-height: 1.6;
}

.q2m8-controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
}

.q2m8-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.q2m8-dot.is-active {
  background: var(--col-btn-primary);
  transform: scale(1.3);
}


.f4r9-crumbs {
  background: #080808;
  border-bottom: 1px solid #1a1a1a;
  padding: 10px 0;
}

.f4r9-crumbs-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--col-text-muted);
}

.f4r9-crumbs-inner a {
  color: var(--col-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.f4r9-crumbs-inner a:hover {
  color: var(--col-btn-secondary);
}

.f4r9-sep {
  color: #444;
}

.f4r9-current {
  color: var(--col-btn-secondary);
  font-weight: 500;
}


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

.p5w1-jackpot-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.p5w1-jackpot-card {
  background: linear-gradient(135deg, #0d1f15 0%, #091a10 100%);
  border: 1px solid rgba(0,192,112,0.25);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.p5w1-jackpot-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,192,112,0.15) 0%, transparent 70%);
}

.p5w1-jackpot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,192,112,0.15);
}

.p5w1-jackpot-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--col-text-muted);
  margin-bottom: 10px;
}

.p5w1-jackpot-amount {
  font-size: clamp(1.6rem, 3vw, 1.5rem);
  font-weight: 800;
  color: var(--col-btn-primary);
  font-variant-numeric: tabular-nums;
}

.p5w1-jackpot-game {
  font-size: 0.82rem;
  color: var(--col-text-muted);
  margin-top: 8px;
}


.v3d6-shots {
  padding: 60px 0;
  background: #050505;
}

.v3d6-grid {
  display: flex;
  gap: 20px;
}

.v3d6-item {
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--col-card-border);
  transition: transform var(--transition), box-shadow var(--transition);
}

.v3d6-item:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 32px rgba(0,192,112,0.12);
}

.v3d6-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.v3d6-swiper {
  display: none;
  overflow: hidden;
  position: relative;
}

.v3d6-swiper-track {
  display: flex;
  transition: transform 0.45s ease;
}

.v3d6-swiper-slide {
  min-width: 100%;
}

.v3d6-swiper-slide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.v3d6-swiper-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.v3d6-swiper-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1a1a;
  border: 1px solid #333;
  color: var(--col-text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.v3d6-swiper-btn:hover {
  background: var(--col-btn-primary);
  color: #000;
  border-color: var(--col-btn-primary);
}


.n8e2-app {
  padding: 60px 0;
}

.n8e2-inner {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.n8e2-table-wrap {
  flex: 1;
  overflow-x: auto;
}

.n8e2-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.n8e2-table th,
.n8e2-table td {
  padding: 13px 18px;
  text-align: left;
  border: 1px solid #222;
}

.n8e2-table th {
  background: #111;
  color: var(--col-btn-secondary);
  font-weight: 600;
  font-size: 0.83rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.n8e2-table tr:nth-child(even) td {
  background: #0a0a0a;
}

.n8e2-table tr:hover td {
  background: #0d0d0d;
}

.n8e2-table td:first-child {
  color: var(--col-text-muted);
  font-weight: 500;
}

.n8e2-table td:last-child {
  color: #fff;
  font-weight: 500;
}

.n8e2-dl-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}

.n8e2-dl-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.n8e2-dl-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.n8e2-dl-btn:hover {
  background: #1a1a1a;
  border-color: var(--col-btn-primary);
  color: #fff;
  transform: translateX(4px);
}

.n8e2-dl-btn svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.n8e2-dl-btn-text span:first-child {
  display: block;
  font-size: 0.72rem;
  color: var(--col-text-muted);
  line-height: 1;
  margin-bottom: 2px;
}

.n8e2-dl-btn-text span:last-child {
  font-weight: 600;
  font-size: 0.95rem;
}


.g7t5-slots {
  padding: 60px 0;
  background: #050505;
}

.g7t5-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.g7t5-card {
  background: var(--col-card);
  border: 1px solid var(--col-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.g7t5-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,192,112,0.12);
}

.g7t5-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.g7t5-card-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.g7t5-card-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.g7t5-card-provider {
  font-size: 0.78rem;
  color: var(--col-text-muted);
}

.g7t5-card-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  justify-content: center;
    flex-direction: column;
}

.g7t5-swiper-wrap {
  display: none;
  overflow: hidden;
  position: relative;
}

.g7t5-swiper-track {
  display: flex;
  transition: transform 0.45s ease;
}

.g7t5-swiper-slide {
  min-width: calc(50% - 10px);
  margin-right: 20px;
}

.g7t5-swiper-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}


.c1x4-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
}

.c1x4-modal-overlay.is-open {
  display: flex;
}

.c1x4-modal {
  background: #0d0d0d;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
}

.c1x4-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #111;
  border-bottom: 1px solid #222;
}

.c1x4-modal-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.c1x4-modal-close {
  background: none;
  border: none;
  color: var(--col-text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}

.c1x4-modal-close:hover {
  color: #fff;
}

.c1x4-modal-body {
  position: relative;
}

.c1x4-modal-iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

.c1x4-modal-footer {
  padding: 14px 20px;
  background: #111;
  border-top: 1px solid #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.c1x4-modal-note {
  font-size: 0.82rem;
  color: var(--col-text-muted);
}


.r6n0-review {
  padding: 60px 0;
}


.r6n0-content h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #1e1e1e;
}

.r6n0-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #e0e0e0;
  margin: 24px 0 10px;
}

.r6n0-content p {
  color: var(--col-text);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.97rem;
}

.r6n0-content ul,
.r6n0-content ol {
  margin: 12px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.r6n0-content li {
  color: var(--col-text);
  line-height: 1.6;
  font-size: 0.97rem;
}

.r6n0-content ul li::marker {
  color: var(--col-btn-primary);
}

.r6n0-content a {
  color: var(--col-btn-secondary);
  text-decoration: underline;
}

.r6n0-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow-x: auto;
  display: block;
}

.r6n0-content table th,
.r6n0-content table td {
  padding: 10px 16px;
  border: 1px solid #222;
  text-align: left;
  font-size: 0.9rem;
}

.r6n0-content table th {
  background: #111;
  color: var(--col-btn-secondary);
  font-weight: 600;
}

.r6n0-content table tr:nth-child(even) td {
  background: #0a0a0a;
}

.r6n0-content blockquote {
  border-left: 3px solid var(--col-btn-primary);
  padding: 12px 20px;
  background: #0a0a0a;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
  color: var(--col-text-muted);
  font-style: italic;
}

.r6n0-content strong {
  color: #fff;
  font-weight: 600;
}


.h5u3-faq {
  padding: 60px 0;
  background: #050505;
}

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

.h5u3-item {
  background: var(--col-card);
  border: 1px solid var(--col-card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.h5u3-item.is-open {
  border-color: rgba(0,192,112,0.3);
}

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

.h5u3-question:hover {
  color: var(--col-btn-secondary);
}

.h5u3-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}

.h5u3-item.is-open .h5u3-icon {
  background: var(--col-btn-primary);
  transform: rotate(45deg);
}

.h5u3-icon svg {
  width: 12px;
  height: 12px;
  stroke: var(--col-text);
  transition: stroke var(--transition);
}

.h5u3-item.is-open .h5u3-icon svg {
  stroke: #000;
}

.h5u3-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
  padding: 0 20px;
}

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

.h5u3-answer p {
  color: var(--col-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}


.m2b8-author {
  padding: 60px 0;
}

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

.m2b8-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--col-btn-primary);
}

.m2b8-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.m2b8-role {
  font-size: 0.82rem;
  color: var(--col-btn-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.m2b8-bio {
  font-size: 0.93rem;
  color: var(--col-text-muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.m2b8-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.m2b8-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--col-btn-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 5px 12px;
  border: 1px solid rgba(255,211,66,0.3);
  border-radius: 20px;
  transition: background var(--transition), color var(--transition);
}

.m2b8-link:hover {
  background: var(--col-btn-secondary);
  color: #000;
}


.z9c7-footer {
  background: var(--col-header);
  border-top: 1px solid #1a1a1a;
  padding: 48px 0 24px;
  margin-top: 60px;
}

.z9c7-top {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #1a1a1a;
}

.z9c7-col {
  flex: 1;
  min-width: 200px;
}

.z9c7-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--col-text-muted);
  margin-bottom: 16px;
}

.z9c7-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.z9c7-nav a {
  color: var(--col-text-muted);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color var(--transition);
}

.z9c7-nav a:hover {
  color: var(--col-btn-secondary);
}

.z9c7-logo img {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}

.z9c7-logo a {display: block;width: fit-content;}

.z9c7-foot-desc {
  font-size: 0.83rem;
  color: var(--col-text-muted);
  line-height: 1.6;
}

.z9c7-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.z9c7-badge {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--col-text-muted);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}

.z9c7-badge:hover {
  border-color: #444;
  color: var(--col-text);
}

.z9c7-bottom {
  font-size: 0.78rem;
  color: #555;
  line-height: 1.7;
}

.z9c7-bottom p + p {
  margin-top: 6px;
}

.z9c7-bottom a {
  color: #666;
  text-decoration: underline;
}

.z9c7-bottom a:hover {
  color: var(--col-text-muted);
}


.k4f0-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0d1a12 0%, #081008 100%);
  border-top: 2px solid var(--col-btn-primary);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.k4f0-widget-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}

.k4f0-widget-bonus {
  color: var(--col-btn-secondary);
  font-weight: 700;
}

.k4f0-widget a {
  text-decoration: none;
}

.k4f0-close {
  position: absolute;
  right: 12px;
  background: none;
  border: none;
  color: #555;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}

.k4f0-close:hover {
  color: var(--col-text);
}

body {
  padding-bottom: 60px;
}


.s-pt { padding-top: 60px; }
.s-pb { padding-bottom: 60px; }
.s-bg-alt { background: #050505; }


.info-content {
  padding: 48px 0;
  max-width: 860px;
}

.info-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.info-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #e0e0e0;
  margin: 28px 0 12px;
}

.info-content p {
  color: var(--col-text);
  line-height: 1.8;
  margin-bottom: 14px;
  font-size: 0.97rem;
}

.info-content ul {
  margin: 10px 0 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.info-content li {
  color: var(--col-text);
  line-height: 1.6;
}

.info-content a {
  color: var(--col-btn-secondary);
}


.wp-block-group, .wp-block-columns, .elementor-section, .elementor-widget-container {
  display: contents;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

.entry-content, .post-content, .has-post-thumbnail {
  display: contents;
}

.wp-caption-text {
  color: var(--col-text-muted);
  font-size: 0.82rem;
  margin-top: 4px;
}
@media (max-width: 1100px) {
.p5w1-jackpot-amount {font-size:1.2rem}
}
@media (max-width: 1024px) {
  .n8e2-inner {
    flex-direction: column;
    gap: 32px;
    align-items: normal;
  }
  .n8e2-dl-col {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: unset;
  }
}
@media (max-width: 1024px) {
  .a9k3-nav a {padding: 5px 10px;}
}
@media (max-width: 768px) {
  .a9k3-nav {
    display: none;
  }
  .a9k3-burger {
    display: flex;
  }
  .a9k3-online {
    display: none;
  }
  .v3d6-grid {
    display: none;
  }
  .v3d6-swiper {
    display: block;
  }
  .m2b8-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .m2b8-links {
    justify-content: center;
  }
  .z9c7-col {
    min-width: 150px;
  }
  .c1x4-modal-iframe {
    height: 360px;
  }
  .q2m8-slide-content {
    padding: 40px 0;
  }
  .p5w1-jackpot-card {
    min-width: 160px;
  }
  .p5w1-jackpot-amount {font-size:1.0rem}
  .n8e2-dl-col {flex-direction: column;}
  .z9c7-top {flex-direction: column;}
}

@media (max-width: 480px) {
  .xb7f2-wrap {
    padding: 0 14px;
  }
  .q2m8-slide-title {
    font-size: 1.7rem;
  }
  .btn--lg {
    padding: 12px 22px;
    font-size: 0.9rem;
  }
  .c1x4-modal-iframe {
    height: 280px;
  }
}
