@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap");
:root {
  --bg: #0f1328;
  --panel: #191e39;
  --muted: #9ea8ca;
  --primary: #0b78d0;
  --secondary: #283152;
  --line: #354064;
  --white: #f7f9ff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font: 15px/1.7 Montserrat, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
.site-header {
  background: var(--panel);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 3px 18px #080b1b;
}
.header-inner {
  max-width: 1200px;
  margin: auto;
  min-height: 75px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
}
.logo img {
  width: auto;
  height: 52px;
  max-width: 100%;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 6px rgba(82, 183, 255, 0.35));
}
.main-nav {
  display: flex;
  gap: 20px;
  flex: 1;
}
.main-nav a {
  color: #dce4ff;
  font-weight: 600;
}
.main-nav a:hover {
  color: #52b7ff;
}
.header-actions {
  display: flex;
  gap: 8px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 9px 16px;
  border: 0;
  border-radius: 7px;
  font: 700 13px Montserrat;
  cursor: pointer;
  transition: 0.25s transform, 0.25s background;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: #1395f2;
}
.btn-secondary {
  background: var(--secondary);
  color: #fff;
}
.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
}
[id] {
  scroll-margin-top: 90px;
}
.hero {
  min-height: 460px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #0f1328e8 15%, #0f132899, #0f132820),
    url("/banner.jpeg") center/cover;
}
.hero-copy {
  max-width: 1200px;
  width: 100%;
  padding: 55px 20px;
  margin: auto;
}
.eyebrow {
  color: #64c3ff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.1;
  max-width: 700px;
  margin: 15px 0;
}
.hero p {
  font-size: 18px;
  color: #d1d8ef;
}
.btn-large {
  padding: 14px 24px;
  font-size: 14px;
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}
.section,
.review-content {
  background: var(--panel);
  border: 1px solid #252e50;
  border-radius: 14px;
  padding: 30px;
  margin: 28px 0;
}
.section h2 {
  font-size: 27px;
  margin: 0 0 20px;
}
.review-content h2 {
  color: #77c9ff;
}
.review-content h3 {
  color: #d8e8ff;
}
.review-content p {
  color: #cad2e8;
}
.review-content ul {
  padding-left: 25px;
}
.table-wrap {
  overflow-x: auto;
}
.info-table,
.app-block table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
}
.info-table th,
.info-table td,
.app-block th,
.app-block td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  vertical-align: top;
}
.info-table th {
  width: 31%;
  color: #b9c7ef;
}
.jackpots,
.step-grid,
.reviews {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.jackpot {
  flex: 1;
  min-width: 200px;
  padding: 24px;
  background: linear-gradient(140deg, #27345f, #182040);
  border-radius: 10px;
}
.jackpot span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.jackpot strong {
  display: block;
  color: #70c9ff;
  font-size: 24px;
  margin-top: 10px;
  transition: 0.3s;
}
.jackpot strong.pulse {
  transform: scale(1.06);
  color: #fff;
}
.screenshots {
  display: flex;
  gap: 14px;
  overflow-x: auto;
}
.screenshots img {
  width: calc(20% - 12px);
  min-width: 190px;
  height: 130px;
  object-fit: cover;
  border-radius: 9px;
}
.app-block {
  display: flex;
  gap: 35px;
  align-items: center;
}
.app-block > div {
  flex: 1;
}
.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 22px;
}
.app-buttons .btn {
  white-space: nowrap;
}
.reels {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}
.reels span {
  font-size: 45px;
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  background: #0b1024;
  border: 2px solid #43517c;
  border-radius: 10px;
}
.slot-section {
  text-align: center;
}
.slot-result {
  min-height: 28px;
  color: #74d29a;
  font-weight: 700;
}
.hidden {
  display: none;
}
.step-grid > div {
  flex: 1;
  min-width: 190px;
  padding: 20px;
  background: #131a34;
  border-radius: 10px;
}
.step-grid b {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  font-size: 18px;
}
.step-grid h3 {
  margin-bottom: 4px;
}
.step-grid p {
  color: var(--muted);
  margin: 0;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item button {
  width: 100%;
  padding: 16px 0;
  color: #fff;
  text-align: left;
  background: none;
  border: 0;
  font: 600 15px Montserrat;
  cursor: pointer;
}
.faq-item button:after {
  content: "+";
  float: right;
  color: #68beff;
  font-size: 20px;
}
.faq-item p {
  display: none;
  color: #bdc7e2;
  margin: 0 0 16px;
}
.faq-item.open p {
  display: block;
}
.faq-item.open button:after {
  content: "−";
}
.reviews {
  margin-bottom: 25px;
}
.review-card {
  flex: 1;
  min-width: 220px;
  padding: 20px;
  background: #131a34;
  border-radius: 10px;
}
.review-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  float: left;
  margin-right: 12px;
  background: rgba(82, 183, 255, 0.12);
  border: 2px solid rgba(82, 183, 255, 0.4);
  color: #7cc7ff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-avatar svg {
  width: 28px;
  height: 28px;
}
.review-card h3 {
  margin: 0;
  padding-top: 4px;
}
.stars {
  color: #ffd45c;
  letter-spacing: 2px;
}
.review-card p {
  clear: both;
  padding-top: 12px;
  color: #c9d1e5;
  font-size: 13px;
}
form {
  max-width: 650px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
input,
textarea {
  background: #0e142c;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px;
  color: #fff;
  font: 14px Montserrat;
}
textarea {
  min-height: 110px;
  resize: vertical;
}
#review-message {
  color: #67dc9d;
}
.site-footer {
  background: var(--panel);
  padding: 45px 20px 20px;
  margin-top: 50px;
}
.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 35px;
  flex-wrap: wrap;
}
.footer-grid > div {
  flex: 1;
  min-width: 180px;
}
.footer-logo {
  width: auto;
  height: 48px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 14px;
  filter: invert(1) drop-shadow(0 0 6px rgba(82, 183, 255, 0.35));
}
.footer-grid h3 {
  font-size: 15px;
  color: #74caff;
}
.footer-grid a {
  display: block;
  color: #c8d0e8;
  margin: 4px 0;
  font-size: 13px;
}
.footer-grid p {
  font-size: 12px;
  color: #abb5d2;
}
.badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.badges b {
  background: var(--secondary);
  padding: 4px 7px;
  border-radius: 4px;
  color: #dce7ff;
  font-size: 11px;
}
.footer-bottom {
  max-width: 1200px;
  margin: 35px auto 0;
  border-top: 1px solid #303957;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #8f9abb;
  font-size: 11px;
}
.info-page {
  min-height: 450px;
}
.info-page p,
.info-page li {
  color: #c8d0e6;
}
.x7k2,
.rb9f,
.qz4m,
.v81p,
.n6aa {
  display: none;
}
.wp-block-content,
.elementor-widget,
.entry-content {
  isolation: isolate;
}
@media (max-width: 800px) {
  .header-inner {
    gap: 10px;
    min-height: 64px;
    padding: 8px 14px;
  }
  .logo img {
    height: 40px;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    padding: 12px 16px 18px;
    background: var(--panel);
    box-shadow: 0 12px 24px #080b1b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    flex-direction: column;
    gap: 0;
  }
  .main-nav.active {
    display: flex;
  }
  .main-nav a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
  }
  .main-nav a:last-child {
    border-bottom: 0;
  }
  .logo {
    order: 0;
  }
  .header-actions {
    order: 1;
    margin-left: auto;
    gap: 6px;
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    order: 2;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: 7px;
    flex-shrink: 0;
  }
  .burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: 0.25s transform, 0.25s opacity;
  }
  .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 {
    min-height: 390px;
  }
  .hero-copy {
    padding: 45px 20px;
  }
  .header-actions .btn {
    padding: 8px 10px;
    font-size: 11px;
  }
  .app-buttons .btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 130px;
  }
  .app-block {
    display: block;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin: 5px 0;
  }
  .screenshots img {
    min-width: 75vw;
  }
}
@media (max-width: 400px) {
  .logo img {
    height: 34px;
  }
  .header-actions .btn {
    padding: 7px 8px;
    font-size: 10.5px;
  }
  .burger {
    width: 36px;
    height: 36px;
    padding: 7px;
  }
  .app-buttons .btn {
    flex-basis: 100%;
  }
}
