:root {
  --navy: #06172f;
  --navy2: #0a2445;
  --blue: #0875c5;
  --cyan: #46ddff;
  --yellow: #ffc83d;
  --ink: #102641;
  --muted: #5c6d7e;
  --pale: #f2f7fb;
  --line: #dce7f0;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding-top: 76px;
  background: var(--pale);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}
.wrap {
  width: min(1160px, calc(100% - 36px));
  margin: auto;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(5, 23, 47, 0.97);
  box-shadow: 0 6px 25px #00102044;
  backdrop-filter: blur(12px);
}
.header-inner {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 25px;
}
.brand {
  width: 245px;
  height: auto;
  display: block;
  flex: none;
}
.nav {
  display: flex;
  gap: 3px;
  margin-left: auto;
}
.nav button,
.menu-button {
  border: 0;
  background: transparent;
  color: #d9e9f4;
  font: 700 13px Arial;
  padding: 12px 7px;
  border-radius: 7px;
  cursor: pointer;
}
.nav button:hover,
.nav button:focus-visible {
  background: #ffffff13;
  color: #fff;
}
.menu-button {
  display: none;
  font-size: 21px;
}
.play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 9px;
  background: var(--yellow);
  color: #08192c;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 25px #ffc83d35;
  transition: 0.2s;
}
.play:hover {
  transform: translateY(-2px);
  background: #ffda70;
}
section {
  padding: 76px 0;
}
.section-head {
  max-width: 830px;
  margin-bottom: 34px;
}
.label {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: var(--blue);
}
.section-head h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 8px 0 15px;
}
.section-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 27px;
  box-shadow: 0 12px 30px #132f4b0d;
}
.card i {
  font-size: 26px;
  color: var(--blue);
}
.card h3 {
  font-size: 21px;
  margin: 14px 0 7px;
}
.card p {
  margin: 0;
  color: var(--muted);
}
.hero {
  min-height: calc(100vh - 76px);
  padding: 0;
  background-color: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
}
.hero-inner {
  padding: 64px 0;
}
.hero-copy {
  max-width: 575px;
}
.hero .label {
  color: #76e2f9;
}
.hero h1 {
  font-size: clamp(50px, 7vw, 80px);
  line-height: 0.98;
  letter-spacing: -3px;
  margin: 14px 0 22px;
}
.hero h1 span {
  display: block;
  color: var(--yellow);
}
.hero-copy > p {
  font-size: 18px;
  color: #d6e5ef;
  margin: 0 0 24px;
}
.hero-note {
  font-size: 12px;
  color: #9eb7c9;
  margin-top: 13px;
}
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}
.hero-tags span {
  border: 1px solid #ffffff35;
  background: #071b35b8;
  border-radius: 30px;
  padding: 7px 12px;
  color: #d8eaf6;
  font-size: 12px;
  font-weight: 700;
}
.about {
  background: var(--pale);
}
.about-flow:after {
  content: "";
  display: block;
  clear: both;
}
.about-flow > .label {
  margin-bottom: 8px;
}
.about-flow h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
}
.about-flow > p {
  font-size: 16px;
  color: var(--muted);
  margin: 0 0 15px;
}
.about-visual {
  position: relative;
  float: right;
  width: min(46%, 520px);
  margin: 0 0 22px 48px;
}
.about-image {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 24px 55px #0928482b;
}
.about-visual:before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid #20bde540;
  border-radius: 26px;
  animation: aboutPulse 4s ease-in-out infinite;
  pointer-events: none;
}
.visual-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(5, 23, 47, 0.92);
  color: #fff;
  border: 1px solid #75ddf45c;
  border-radius: 11px;
  padding: 10px 13px;
  box-shadow: 0 15px 30px #0313274d;
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
}
.visual-chip i {
  color: var(--yellow);
  font-size: 15px;
}
.about-brand {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 190px;
  padding: 8px 12px;
  background: rgba(5, 23, 47, 0.91);
  border: 1px solid #75ddf45c;
  border-radius: 12px;
  box-shadow: 0 14px 28px #03132755;
  backdrop-filter: blur(8px);
}
.about-brand img {
  display: block;
  width: 100%;
  height: auto;
}
.chip-two {
  right: -16px;
  bottom: 24px;
  animation: chipFloat 4.6s ease-in-out 1s infinite;
}
.about-points {
  clear: both;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}
.about-point {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px;
}
.about-point strong {
  display: block;
  font-size: 15px;
  color: var(--blue);
  margin-bottom: 4px;
}
.about-point span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}
@keyframes aboutPulse {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.99);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.01);
  }
}
@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}
.quick {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 36px;
}
.quick div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 19px;
}
.quick strong {
  display: block;
  color: var(--blue);
  font-size: 17px;
}
.quick span {
  color: var(--muted);
  font-size: 13px;
}
.dark {
  background: linear-gradient(125deg, #06172f, #0a4d7f);
  color: #fff;
}
.dark .label {
  color: #72def7;
}
.dark .section-head p,
.dark .card p {
  color: #c8dce9;
}
.dark .card {
  background: #ffffff0b;
  border-color: #ffffff20;
  box-shadow: none;
}
.dark .card i {
  color: var(--yellow);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: start;
}
.list {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.list li {
  padding: 11px 0;
  border-bottom: 1px solid #8399aa35;
}
.list i {
  color: #19b987;
  margin-right: 9px;
}
.panel {
  background: #e5f3fa;
  border-radius: 15px;
  padding: 30px;
}
.panel h3 {
  margin-top: 0;
}
.panel p {
  color: var(--muted);
}
.mobile-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 45px;
  align-items: center;
  margin-bottom: 28px;
}
.mobile-showcase .section-head {
  margin: 0;
}
.mobile-photo {
  position: relative;
}
.mobile-photo > img {
  display: block;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 55px #0928482b;
}
.mobile-photo .about-brand {
  width: 180px;
}
.table-wrap {
  overflow: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
th,
td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e5edf3;
}
th {
  background: var(--navy);
  color: #fff;
}
td:first-child {
  font-weight: 800;
}
.steps {
  counter-reset: steps;
}
.step {
  position: relative;
  padding-left: 74px;
}
.step:before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 24px;
  top: 25px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 900;
  color: var(--navy);
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 18px 21px;
  margin: 10px 0;
}
.faq summary {
  font-weight: 800;
  cursor: pointer;
}
.faq details p {
  color: var(--muted);
  margin-bottom: 0;
}
.site-footer {
  background: #031225;
  color: #b9cddd;
  padding: 58px 0 28px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.72fr);
  gap: 42px;
}
.footer-logo {
  width: 240px;
}
.legal-copy {
  max-width: 390px;
  font-size: 12px;
  line-height: 1.65;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.footer-badges span {
  padding: 6px 9px;
  border: 1px solid #ffffff1c;
  border-radius: 20px;
  color: #a9c3d4;
  font-size: 9px;
}
.footer-badges i,
.footer-badges strong {
  color: #ffc83d;
}
.footer-nav {
  display: grid;
  align-content: start;
  gap: 7px;
}
.footer-nav h2 {
  margin: 4px 0 10px;
  color: #6edff1;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.footer-nav a {
  color: #c9dce8;
  font-size: 11px;
  text-decoration: none;
  transition: 0.2s;
}
.footer-nav a:hover {
  color: #fff;
  transform: translateX(2px);
}
.legal-links {
  display: grid;
  gap: 7px;
}
.legal-links a {
  color: #dbeaf5;
  text-underline-offset: 3px;
}
.footer-bottom {
  margin-top: 22px;
  font-size: 9px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}
@media (max-width: 1080px) {
  .site-header .play {
    display: none;
  }
  .brand {
    width: 235px;
  }
}
@media (max-width: 850px) {
  body {
    padding-top: 68px;
  }
  .header-inner {
    height: 68px;
  }
  .menu-button {
    display: block;
    margin-left: auto;
  }
  .nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #05172f;
    padding: 12px 18px;
    box-shadow: 0 15px 25px #00102066;
  }
  .nav.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .nav button {
    text-align: left;
  }
  .hero {
    position: relative;
    min-height: calc(100svh - 68px);
    background-position: 62% center;
  }
  .hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: #04152d99;
  }
  .hero-inner {
    position: relative;
    z-index: 1;
  }
  .about-visual {
    width: 47%;
    margin-left: 30px;
  }
  .mobile-showcase {
    grid-template-columns: 1fr;
  }
  .grid,
  .quick {
    grid-template-columns: 1fr 1fr;
  }
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .brand {
    width: 205px;
  }
  .hero {
    background-position: 67% center;
  }
  .hero:before {
    background: #04152dce;
  }
  .hero h1 {
    letter-spacing: -2px;
  }
  .about-visual {
    float: none;
    width: 100%;
    margin: 24px 0;
  }
  .about-points,
  .grid,
  .quick {
    grid-template-columns: 1fr;
  }
  .visual-chip {
    position: static;
    margin-top: 10px;
  }
  .about-visual:before {
    display: none;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom span {
    display: block;
    margin-top: 8px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .about-visual:before,
  .visual-chip {
    animation: none;
  }
}
.bonus-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, #0d67974d, transparent 28%),
    linear-gradient(135deg, #04152c, #082f53);
  color: #fff;
}
.bonus-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#ffffff08 1px, transparent 1px),
    linear-gradient(90deg, #ffffff08 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #0008, transparent);
  pointer-events: none;
}
.bonus-section .wrap {
  position: relative;
}
.bonus-section .section-head {
  max-width: 900px;
}
.bonus-section .label {
  color: #72def7;
}
.bonus-section .section-head p {
  color: #c8dce9;
}
.bonus-total {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  margin-bottom: 22px;
  padding: 28px 32px;
  border: 1px solid #74dcff35;
  border-radius: 20px;
  background: #ffffff0b;
  box-shadow: 0 24px 50px #00101e55;
}
.bonus-total span {
  color: #7de3fa;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.bonus-total h3 {
  margin: 5px 0 8px;
  font-size: clamp(25px, 3vw, 39px);
  line-height: 1.1;
}
.bonus-total p {
  max-width: 750px;
  margin: 0;
  color: #bed4e3;
  font-size: 14px;
}
.bonus-total strong {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1;
  color: var(--yellow);
  white-space: nowrap;
}
.bonus-road {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 22px 0 34px;
}
.bonus-road:before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, #46ddff, #ffc83d);
  opacity: 0.55;
}
.bonus-stage {
  position: relative;
  z-index: 1;
  min-height: 244px;
  padding: 19px;
  border: 1px solid #ffffff1f;
  border-radius: 16px;
  background: #071d37;
}
.bonus-stage .number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border: 1px solid #7de3fa6b;
  border-radius: 12px;
  background: #0b3858;
  color: #7de3fa;
  font-weight: 900;
}
.bonus-stage:last-child .number {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #071a31;
}
.bonus-stage small {
  color: #9bb7c9;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bonus-stage h3 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 19px;
  line-height: 1.25;
}
.bonus-stage h3 b {
  color: var(--yellow);
}
.bonus-stage p {
  margin: 0;
  color: #abc3d3;
  font-size: 12px;
  line-height: 1.55;
}
.bonus-code {
  display: inline-block;
  margin-top: 14px;
  padding: 5px 8px;
  border: 1px solid #ffffff1f;
  border-radius: 6px;
  color: #80e4fa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.7px;
}
.bonus-stage:after {
  content: "";
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, #46ddff, #ffc83d);
  transform: scaleX(0);
  transform-origin: left;
  animation: bonusGrow 5s ease-in-out infinite;
}
.bonus-stage:nth-child(2):after {
  animation-delay: 0.35s;
}
.bonus-stage:nth-child(3):after {
  animation-delay: 0.7s;
}
.bonus-stage:nth-child(4):after {
  animation-delay: 1.05s;
}
.bonus-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.bonus-panel {
  padding: 27px;
  border: 1px solid #ffffff1e;
  border-radius: 18px;
  background: #ffffff0a;
}
.bonus-panel > i {
  color: var(--yellow);
  font-size: 22px;
}
.bonus-panel h3 {
  margin: 10px 0 8px;
  font-size: 23px;
}
.bonus-panel > p {
  margin: 0 0 19px;
  color: #bdd2df;
  font-size: 13px;
}
.reload-scale {
  display: grid;
  gap: 8px;
}
.reload-scale div {
  display: grid;
  grid-template-columns: 70px 1fr 65px;
  gap: 10px;
  align-items: center;
  color: #a9c3d3;
  font-size: 11px;
}
.reload-scale i {
  display: block;
  height: 8px;
  border-radius: 8px;
  background: #ffffff12;
  overflow: hidden;
}
.reload-scale i:after {
  content: "";
  display: block;
  width: var(--fill);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #46ddff, #ffc83d);
  animation: barGrow 4s ease-in-out infinite;
}
.bonus-fill-10 {
  --fill: 10%;
}
.bonus-fill-25 {
  --fill: 25%;
}
.bonus-fill-100 {
  --fill: 100%;
}
.reload-scale b {
  color: #fff;
  text-align: right;
}
.spin-levels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.spin-levels div {
  padding: 13px 10px;
  border: 1px solid #ffffff17;
  border-radius: 11px;
  background: #061a31;
  text-align: center;
}
.spin-levels span,
.spin-levels strong {
  display: block;
}
.spin-levels span {
  color: #90adbf;
  font-size: 10px;
}
.spin-levels strong {
  margin-top: 4px;
  color: var(--yellow);
  font-size: 20px;
}
.bonus-claim {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 28px;
  margin-top: 18px;
  padding: 27px;
  border: 1px solid #ffffff1e;
  border-radius: 18px;
  background: #061a31;
}
.bonus-claim h3 {
  margin: 0;
  font-size: 24px;
}
.bonus-claim > div > p {
  margin: 8px 0 0;
  color: #9fb9ca;
  font-size: 12px;
}
.claim-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.claim-steps div {
  padding: 13px;
  border-left: 2px solid #46ddff;
  background: #ffffff08;
  color: #b9d0dd;
  font-size: 11px;
}
.claim-steps b {
  display: block;
  margin-bottom: 4px;
  color: #fff;
}
.bonus-terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 12px;
}
.bonus-terms div {
  padding: 14px;
  border: 1px solid #ffffff17;
  border-radius: 11px;
  color: #9fb9ca;
  font-size: 10px;
  line-height: 1.5;
}
.bonus-terms strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 12px;
}
.bonus-caution {
  margin: 14px 0 0;
  color: #87a7ba;
  font-size: 10px;
}
.bonus-caution i {
  margin-right: 6px;
  color: var(--yellow);
}
@keyframes bonusGrow {
  0%,
  15% {
    transform: scaleX(0);
  }
  55%,
  85% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
@keyframes barGrow {
  0%,
  15% {
    transform: scaleX(0.08);
    transform-origin: left;
  }
  65%,
  90% {
    transform: scaleX(1);
    transform-origin: left;
  }
  100% {
    transform: scaleX(0.08);
    transform-origin: left;
  }
}
@media (max-width: 850px) {
  .bonus-road {
    grid-template-columns: 1fr 1fr;
  }
  .bonus-road:before {
    display: none;
  }
  .bonus-columns,
  .bonus-claim {
    grid-template-columns: 1fr;
  }
  .claim-steps,
  .bonus-terms {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .bonus-total {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .bonus-road,
  .claim-steps,
  .bonus-terms {
    grid-template-columns: 1fr;
  }
  .bonus-stage {
    min-height: 0;
  }
  .spin-levels {
    grid-template-columns: 1fr;
  }
  .bonus-panel,
  .bonus-claim {
    padding: 21px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-stage:after,
  .reload-scale i:after {
    animation: none;
    transform: scaleX(1);
  }
}
.bonus-road:before {
  top: 0;
  left: 3%;
  right: 3%;
}
.bonus-stage {
  min-height: 218px;
  padding-top: 24px;
}
.bonus-stage .number {
  display: none;
}
.games-section {
  position: relative;
  background: linear-gradient(180deg, #fff, #eef5f9);
  overflow: hidden;
}
.games-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 65px;
  align-items: end;
  margin-bottom: 34px;
}
.games-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: -2.2px;
}
.games-heading p {
  margin: 0;
  padding-left: 25px;
  border-left: 2px solid var(--yellow);
  color: var(--muted);
  font-size: 16px;
}
.game-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.game-categories span {
  padding: 8px 12px;
  border: 1px solid #cedde7;
  border-radius: 999px;
  background: #fff;
  color: #486276;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.game-categories span:first-child {
  border-color: #0b79ba;
  background: #0b79ba;
  color: #fff;
}
.slot-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.slot-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-radius: 17px;
  background: #071a31;
  box-shadow: 0 15px 30px #0928481d;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}
.slot-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 42px #09284830;
}
.slot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.slot-card:after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, #041326 91%);
  pointer-events: none;
}
.slot-info {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 45px 13px 13px;
}
.slot-info strong,
.slot-info span {
  display: block;
}
.slot-info strong {
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}
.slot-info span {
  margin-top: 3px;
  color: #92c8de;
  font-size: 9px;
}
.slot-tag {
  position: absolute;
  z-index: 2;
  top: 10px;
  left: 10px;
  padding: 5px 7px;
  border-radius: 6px;
  background: #ffc83de8;
  color: #07182b;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.current-shelf {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 20px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 40px #102f4b0c;
}
.current-copy span {
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.current-copy h3 {
  margin: 8px 0 11px;
  font-size: 28px;
  line-height: 1.15;
}
.current-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}
.current-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: center;
}
.current-titles span {
  padding: 9px 11px;
  border: 1px solid #dce7ef;
  border-radius: 9px;
  background: #f3f7fa;
  color: #294b66;
  font-size: 10px;
  font-weight: 800;
}
.game-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 22px;
}
.game-type {
  position: relative;
  padding: 25px 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
}
.game-type i {
  color: var(--blue);
  font-size: 21px;
}
.game-type h3 {
  margin: 15px 0 8px;
  font-size: 19px;
}
.game-type p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.game-type em {
  display: inline-block;
  margin-top: 14px;
  color: #0d78b7;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.game-rules {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  margin-top: 22px;
  padding: 31px;
  border-radius: 22px;
  background: linear-gradient(135deg, #06172f, #0b4268);
  color: #fff;
}
.game-rules h3 {
  margin: 0 0 9px;
  font-size: 27px;
}
.game-rules > div > p {
  margin: 0;
  color: #a9c5d6;
  font-size: 12px;
}
.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}
.rule-grid div {
  padding: 14px;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  background: #ffffff08;
  color: #a9c3d2;
  font-size: 10px;
  line-height: 1.55;
}
.rule-grid strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
}
.rule-grid i {
  margin-right: 7px;
  color: var(--yellow);
}
.games-note {
  margin: 14px 0 0;
  color: #7b8e9d;
  font-size: 10px;
}
@media (max-width: 1050px) {
  .slot-gallery {
    grid-template-columns: repeat(3, 1fr);
  }
  .game-types {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 850px) {
  .games-heading,
  .current-shelf,
  .game-rules {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 540px) {
  .games-heading h2 {
    letter-spacing: -1.3px;
  }
  .slot-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .game-types,
  .rule-grid {
    grid-template-columns: 1fr;
  }
  .current-shelf,
  .game-rules {
    padding: 23px;
  }
  .slot-info strong {
    font-size: 11px;
  }
}
.why-section {
  position: relative;
  overflow: hidden;
  background: #f4f8fb;
}
.why-section:before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -210px;
  top: -170px;
  border: 1px solid #0875c51f;
  border-radius: 50%;
  box-shadow:
    0 0 0 75px #0875c508,
    0 0 0 150px #0875c506;
  pointer-events: none;
}
.why-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}
.why-heading h2 {
  max-width: 650px;
  margin: 8px 0 0;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
  letter-spacing: -2px;
}
.why-heading p {
  margin: 0;
  padding-left: 25px;
  border-left: 2px solid var(--yellow);
  color: var(--muted);
  font-size: 16px;
}
.why-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: stretch;
}
.why-core {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 38px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 85% 14%, #1578ac88, transparent 32%),
    linear-gradient(145deg, #06172f, #0a3558);
  color: #fff;
  box-shadow: 0 26px 55px #09284826;
}
.why-core:after {
  content: "LN";
  position: absolute;
  right: -18px;
  bottom: -78px;
  color: #ffffff08;
  font-size: 220px;
  font-weight: 900;
  line-height: 1;
}
.why-core > div,
.why-core > p {
  position: relative;
  z-index: 1;
}
.why-mark {
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid #7de3fa69;
  border-radius: 17px;
  background: #ffffff0c;
  color: var(--yellow);
  font-size: 23px;
}
.why-core h3 {
  max-width: 430px;
  margin: 25px 0 15px;
  font-size: clamp(29px, 3.2vw, 43px);
  line-height: 1.08;
}
.why-core p {
  margin: 0;
  color: #bed3e1;
  font-size: 14px;
}
.why-core > p {
  padding-top: 22px;
  border-top: 1px solid #ffffff1b;
  color: #8fb0c3;
  font-size: 11px;
}
.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.why-item {
  position: relative;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 16px 35px #102f4b0b;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.why-item:hover {
  transform: translateY(-4px);
  border-color: #40bfe266;
}
.why-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 27px;
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}
.why-item i {
  display: flex;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  background: #e9f6fc;
  color: var(--blue);
  font-size: 17px;
}
.why-item h3 {
  margin: 16px 0 8px;
  font-size: 19px;
  line-height: 1.25;
}
.why-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.why-item.wide {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
}
.why-item.wide h3 {
  margin: 0 0 6px;
}
.why-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}
.why-strip div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border: 1px solid #dce7f0;
  border-radius: 13px;
  background: #edf5f9;
  color: #536b7d;
  font-size: 11px;
}
.why-strip i {
  color: #1193c9;
}
.why-strip strong {
  display: block;
  color: #183b59;
  font-size: 12px;
}
@media (max-width: 850px) {
  .why-heading,
  .why-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .why-heading p {
    max-width: 700px;
  }
  .why-core {
    min-height: 390px;
  }
  .why-strip {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .why-heading h2 {
    letter-spacing: -1.2px;
  }
  .why-features {
    grid-template-columns: 1fr;
  }
  .why-item.wide {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
  .why-core {
    min-height: 420px;
    padding: 28px;
  }
  .why-item {
    padding: 23px;
  }
}
.current-shelf,
.game-types {
  display: none;
}
.mechanic-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 25px;
}
.mechanic-card {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 38px #102f4b0c;
}
.mechanic-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 30%, #166897, #06172f 68%);
}
.mechanic-art:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 37px, #ffffff0b 38px 39px),
    linear-gradient(transparent, #07172f88);
}
.mini-reels {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 42px);
  gap: 5px;
  padding: 9px;
  border: 2px solid #ffc83d;
  border-radius: 13px;
  background: #07172f;
  box-shadow: 0 15px 30px #0008;
}
.mini-reels b {
  display: grid;
  height: 52px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(#fff, #dff5ff);
  color: #0875c5;
  font-size: 18px;
}
.mechanic-card:nth-child(2) .mini-reels {
  grid-template-columns: 36px 48px 31px 44px;
}
.mechanic-card:nth-child(2) .mini-reels b:nth-child(even) {
  height: 68px;
}
.mechanic-card:nth-child(3) .mechanic-art:after {
  content: "BUY";
  position: relative;
  z-index: 2;
  display: grid;
  width: 90px;
  height: 90px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffd866, #f09c1e);
  color: #081a2d;
  font-size: 21px;
  font-weight: 900;
  box-shadow:
    0 0 0 9px #ffc83d2e,
    0 18px 35px #0008;
}
.mechanic-card:nth-child(3) .mini-reels {
  display: none;
}
.mechanic-card:nth-child(4) .mini-reels b {
  border-radius: 50%;
  background: #fff;
  color: #d8273e;
}
.mechanic-copy {
  padding: 27px;
}
.mechanic-copy span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mechanic-copy h3 {
  margin: 7px 0 9px;
  font-size: 22px;
}
.mechanic-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}
.mechanic-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  margin: 15px 0 0;
  list-style: none;
}
.mechanic-copy li {
  padding: 5px 8px;
  border-radius: 6px;
  background: #eef5f9;
  color: #426179;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 850px) {
  .mechanic-showcase {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .mechanic-card {
    grid-template-columns: 1fr;
  }
  .mechanic-art {
    min-height: 180px;
  }
}
.slot-gallery .slot-card {
  aspect-ratio: 1/1;
  min-height: 0;
}
.slot-gallery .slot-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100% !important;
  aspect-ratio: auto;
  object-fit: cover;
}
.slot-gallery .slot-card:nth-child(n + 7) .slot-tag {
  display: none;
}
.slot-gallery .slot-info {
  padding: 52px 13px 12px;
  background: linear-gradient(transparent, #041326e8);
}
@media (max-width: 540px) {
  .slot-gallery .slot-card {
    aspect-ratio: 1/1;
  }
}
.wrap {
  width: min(1480px, calc(100% - 80px));
}
.games-section .wrap {
  width: min(1540px, calc(100% - 72px));
}
@media (max-width: 850px) {
  .wrap,
  .games-section .wrap {
    width: min(100% - 36px, 1540px);
  }
}
@media (max-width: 540px) {
  .wrap,
  .games-section .wrap {
    width: min(100% - 28px, 1540px);
  }
}
.mechanic-card {
  grid-template-columns: minmax(260px, 42%) 1fr;
  min-height: 270px;
}
.mechanic-art:before,
.mechanic-art:after,
.mechanic-art .mini-reels {
  display: none !important;
}
.mechanic-card:nth-child(1) .mechanic-art {
  background: #06172f url("../img/games/lucknation/sugar-rush-1000.webp")
    center/cover no-repeat;
}
.mechanic-card:nth-child(2) .mechanic-art {
  background: #06172f url("../img/games/game-9.png") center/contain
    no-repeat;
}
.mechanic-card:nth-child(3) .mechanic-art {
  background: #06172f url("../img/games/game-8.png") center/contain
    no-repeat;
}
.mechanic-card:nth-child(4) .mechanic-art {
  background: #06172f url("../img/games/roulette.png") center/cover
    no-repeat;
}
.mechanic-art:after {
  content: "" !important;
}
@media (max-width: 540px) {
  .mechanic-card {
    grid-template-columns: 1fr;
  }
  .mechanic-art {
    min-height: 240px;
  }
}
.live-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, #2b70a12b, transparent 28%), #041326;
  color: #fff;
}
.live-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 34px;
}
.live-heading .label {
  color: #71ddf5;
}
.live-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.01;
  letter-spacing: -2.2px;
}
.live-heading p {
  margin: 0;
  padding-left: 25px;
  border-left: 2px solid var(--yellow);
  color: #b6ccda;
  font-size: 16px;
}
.live-stage {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border: 1px solid #7eddf638;
  border-radius: 26px;
  background: #07172f;
  box-shadow: 0 30px 65px #0008;
}
.live-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: liveStage 14s ease-in-out infinite alternate;
}
.live-stage:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #031225ed 0, #031225b8 36%, transparent 70%),
    linear-gradient(0deg, #031225c9, transparent 45%);
}
.live-stage-copy {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 570px;
  max-width: 650px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px;
}
.live-status {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  margin-bottom: auto;
  padding: 8px 11px;
  border: 1px solid #67e2c65c;
  border-radius: 999px;
  background: #031c2bd9;
  color: #c8f7ed;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.live-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #48d6a8;
  box-shadow: 0 0 0 6px #48d6a822;
  animation: livePulse 2s ease-in-out infinite;
}
.live-stage-copy h3 {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 51px);
  line-height: 1.04;
}
.live-stage-copy p {
  margin: 0;
  color: #c0d4e0;
  font-size: 15px;
  line-height: 1.7;
}
.live-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 20px;
}
.live-flow div {
  padding: 15px;
  border: 1px solid #ffffff17;
  border-radius: 12px;
  background: #ffffff0a;
  color: #9eb8c9;
  font-size: 10px;
}
.live-flow strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
}
.live-games {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  margin-top: 20px;
}
.live-game {
  overflow: hidden;
  border: 1px solid #ffffff17;
  border-radius: 20px;
  background: #081b31;
  box-shadow: 0 20px 40px #0004;
}
.live-game-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.live-game-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.live-game:hover .live-game-image img {
  transform: scale(1.035);
}
.live-game-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 6px 9px;
  border: 1px solid #ffffff2b;
  border-radius: 7px;
  background: #041426dd;
  color: #ffd46b;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(7px);
}
.live-game-copy {
  padding: 25px;
}
.live-game-copy h3 {
  margin: 0 0 10px;
  font-size: 24px;
}
.live-game-copy > p {
  margin: 0;
  color: #a8c0cf;
  font-size: 12px;
  line-height: 1.68;
}
.bet-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 17px;
}
.bet-options span {
  padding: 6px 8px;
  border: 1px solid #ffffff18;
  border-radius: 6px;
  background: #ffffff08;
  color: #c5d7e1;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}
.live-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 17px;
  align-items: center;
  margin-top: 18px;
  padding: 18px 21px;
  border: 1px solid #e4b84b2b;
  border-radius: 14px;
  background: #ffc83d0b;
  color: #91acbd;
  font-size: 10px;
  line-height: 1.6;
}
.live-note i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #ffc83d1c;
  color: var(--yellow);
}
@keyframes liveStage {
  to {
    transform: scale(1.035);
  }
}
@keyframes livePulse {
  50% {
    opacity: 0.45;
    transform: scale(0.75);
  }
}
@media (max-width: 950px) {
  .live-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .live-stage,
  .live-stage-copy {
    min-height: 520px;
  }
  .live-games {
    grid-template-columns: 1fr;
  }
  .live-game {
    display: grid;
    grid-template-columns: 42% 1fr;
  }
  .live-game-image {
    height: auto;
    min-height: 280px;
  }
}
@media (max-width: 600px) {
  .live-stage-copy {
    padding: 28px;
  }
  .live-stage:after {
    background: linear-gradient(0deg, #031225f2, #03122573);
  }
  .live-flow {
    grid-template-columns: 1fr;
  }
  .live-game {
    grid-template-columns: 1fr;
  }
  .live-game-image {
    min-height: 230px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .live-stage > img,
  .live-status i {
    animation: none;
  }
}
.live-stage {
  min-height: 540px;
}
.live-stage > img {
  object-position: center 27%;
}
.live-stage:after {
  background:
    linear-gradient(90deg, #031225dc 0, #0312259e 34%, transparent 68%),
    linear-gradient(0deg, #031225ad, transparent 48%);
}
.live-stage-copy {
  min-height: 540px;
  max-width: 620px;
  padding: 44px;
}
.live-stage-copy h3 {
  font-size: clamp(30px, 3.25vw, 45px);
}
@media (max-width: 950px) {
  .live-stage,
  .live-stage-copy {
    min-height: 500px;
  }
}
@media (max-width: 600px) {
  .live-stage > img {
    object-position: 56% 25%;
  }
  .live-stage:after {
    background: linear-gradient(0deg, #031225eb 4%, #0312255e 75%);
  }
}
.live-stage {
  display: grid;
  grid-template-columns: minmax(430px, 0.82fr) minmax(560px, 1.18fr);
  min-height: 600px;
  background: linear-gradient(145deg, #061a31, #092f4a);
}
.live-stage > img {
  position: relative;
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  height: 600px;
  object-fit: contain;
  object-position: center;
  animation: none;
  background: #031225;
}
.live-stage:after {
  z-index: 2;
  grid-column: 2;
  grid-row: 1;
  background:
    linear-gradient(90deg, #071b32 0, transparent 18%),
    linear-gradient(0deg, #071b3266, transparent 30%);
  pointer-events: none;
}
.live-stage-copy {
  z-index: 3;
  grid-column: 1;
  grid-row: 1;
  min-height: 600px;
  max-width: none;
  padding: 46px 42px;
  background: linear-gradient(145deg, #06172f, #092b46);
}
.live-stage-copy h3 {
  font-size: clamp(31px, 3vw, 44px);
}
.live-stage-copy p {
  font-size: 14px;
}
.live-flow {
  grid-template-columns: 1fr;
}
.live-flow div {
  padding: 12px 14px;
}
@media (max-width: 1050px) {
  .live-stage {
    grid-template-columns: 1fr;
  }
  .live-stage > img {
    grid-column: 1;
    grid-row: 1;
    height: auto;
    max-height: none;
    object-fit: contain;
  }
  .live-stage:after {
    grid-column: 1;
    grid-row: 1;
    background: linear-gradient(0deg, #06172fee, transparent 55%);
  }
  .live-stage-copy {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .live-stage-copy {
    padding: 28px 22px;
  }
  .live-stage > img {
    object-position: center;
  }
}
.hero {
  background-image: url("../img/hero/lucknation-casino-sports-hero-v4.png");
  background-position: center;
  background-size: cover;
}
.hero:before {
  background: linear-gradient(
    90deg,
    rgba(4, 21, 45, 0.22) 0%,
    rgba(4, 21, 45, 0.08) 43%,
    transparent 64%
  );
}
@media (max-width: 850px) {
  .hero {
    background-position: 61% center;
  }
  .hero:before {
    background: linear-gradient(90deg, #04152de3 0, #04152dae 55%, #04152d38);
  }
}
@media (max-width: 540px) {
  .hero {
    background-position: 66% center;
  }
  .hero:before {
    background: #04152dce;
  }
}
/* ============================== JACKPOT VISUAL START ============================== */
.jackpot-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(30, 139, 204, 0.22),
      transparent 32%
    ),
    linear-gradient(135deg, #031426 0%, #06213a 52%, #031426 100%);
  color: #fff;
  padding: 112px 0;
}
.jackpot-section:before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(89, 199, 238, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 199, 238, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 18%,
    #000 82%,
    transparent
  );
}
.jackpot-section .wrap {
  position: relative;
  z-index: 1;
}
.jackpot-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 76px;
  align-items: center;
}
.jackpot-copy .label {
  color: #69d8f4;
}
.jackpot-copy h2 {
  max-width: 760px;
  margin: 14px 0 24px;
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 1.02;
  color: #fff;
}
.jackpot-copy > p {
  max-width: 760px;
  font-size: 19px;
  line-height: 1.72;
  color: #c7d8e8;
}
.jackpot-note {
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 3px solid #ffc438;
  background: rgba(255, 255, 255, 0.055);
  border-radius: 0 14px 14px 0;
  color: #eaf4fb;
  line-height: 1.6;
}
.jackpot-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  margin: auto;
  display: grid;
  place-items: center;
}
.jackpot-orbit:before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 196, 56, 0.19),
    rgba(18, 131, 193, 0.08) 42%,
    transparent 68%
  );
  filter: blur(3px);
  animation: jackpotGlow 3.4s ease-in-out infinite;
}
.jackpot-ring {
  position: absolute;
  border: 1px solid rgba(109, 214, 246, 0.34);
  border-radius: 50%;
  animation: jackpotPulse 4s ease-in-out infinite;
}
.jackpot-ring.r1 {
  inset: 37%;
}
.jackpot-ring.r2 {
  inset: 27%;
  animation-delay: 0.45s;
}
.jackpot-ring.r3 {
  inset: 17%;
  animation-delay: 0.9s;
}
.jackpot-ring.r4 {
  inset: 7%;
  animation-delay: 1.35s;
}
.jackpot-tier {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 17px;
  border: 1px solid rgba(111, 213, 245, 0.38);
  border-radius: 999px;
  background: rgba(3, 20, 38, 0.88);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.jackpot-tier span {
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffc438;
  box-shadow: 0 0 14px #ffc438;
}
.jackpot-tier.mini {
  top: 38%;
  left: 35%;
}
.jackpot-tier.minor {
  top: 21%;
  right: 12%;
}
.jackpot-tier.major {
  bottom: 19%;
  right: 2%;
}
.jackpot-tier.mega {
  bottom: 3%;
  left: 15%;
  padding: 15px 22px;
  font-size: 18px;
  border-color: #ffc438;
}
.jackpot-core {
  position: relative;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: radial-gradient(
    circle at 35% 30%,
    #31b9eb,
    #0879bd 42%,
    #063052 72%
  );
  box-shadow:
    0 0 0 10px rgba(70, 192, 235, 0.08),
    0 0 55px rgba(55, 196, 242, 0.35);
  font-weight: 900;
  line-height: 1.05;
}
.jackpot-core small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: #bdefff;
}
.jackpot-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 74px;
}
.jackpot-step {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(100, 198, 233, 0.25);
  border-radius: 22px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.085),
    rgba(255, 255, 255, 0.035)
  );
  overflow: hidden;
}
.jackpot-step:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #1ab7eb, #ffc438);
}
.jackpot-step .step-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #0b3859;
  color: #ffc438;
  font-size: 21px;
}
.jackpot-step h3 {
  margin: 21px 0 11px;
  color: #fff;
  font-size: 24px;
}
.jackpot-step p {
  margin: 0;
  color: #b9ccdc;
  line-height: 1.65;
}
.jackpot-facts {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  margin-top: 24px;
}
.jackpot-fact {
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  color: #102b46;
}
.jackpot-fact h3 {
  margin: 0 0 13px;
  font-size: 25px;
}
.jackpot-fact p {
  margin: 0;
  color: #526a7e;
  line-height: 1.68;
}
.jackpot-fact.accent {
  background: linear-gradient(135deg, #ffc438, #ffda76);
}
.jackpot-fact.accent p {
  color: #3d3521;
}
.jackpot-disclaimer {
  margin: 22px 0 0;
  color: #8da8bb;
  font-size: 14px;
  line-height: 1.55;
}
@keyframes jackpotPulse {
  0%,
  100% {
    transform: scale(0.985);
    opacity: 0.55;
  }
  50% {
    transform: scale(1.025);
    opacity: 1;
  }
}
@keyframes jackpotGlow {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
@media (max-width: 980px) {
  .jackpot-intro {
    grid-template-columns: 1fr;
  }
  .jackpot-orbit {
    width: min(100%, 520px);
  }
  .jackpot-flow {
    grid-template-columns: 1fr;
  }
  .jackpot-facts {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .jackpot-section {
    padding: 78px 0;
  }
  .jackpot-copy h2 {
    font-size: 40px;
  }
  .jackpot-copy > p {
    font-size: 17px;
  }
  .jackpot-intro {
    gap: 42px;
  }
  .jackpot-orbit {
    max-width: 390px;
  }
  .jackpot-tier {
    padding: 8px 11px;
    font-size: 11px;
  }
  .jackpot-tier.mega {
    padding: 10px 14px;
    font-size: 13px;
  }
  .jackpot-core {
    width: 88px;
    height: 88px;
  }
  .jackpot-flow {
    margin-top: 48px;
  }
  .jackpot-step,
  .jackpot-fact {
    padding: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .jackpot-ring,
  .jackpot-orbit:before {
    animation: none;
  }
}
/* ============================== JACKPOT VISUAL END ============================== */
/* ============================== JACKPOT REDESIGN START ============================== */
.jackpot-section {
  padding: 104px 0;
  background: linear-gradient(180deg, #f6f9fc 0%, #edf4f8 100%);
  color: #102b46;
}
.jackpot-section:before {
  display: none;
}
.jackpot-hero {
  position: relative;
  padding: 68px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(122deg, #061a30 0%, #092b49 58%, #0b4063 100%);
  box-shadow: 0 28px 70px rgba(9, 38, 62, 0.16);
}
.jackpot-hero:after {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -180px;
  top: -250px;
  border: 90px solid rgba(44, 191, 235, 0.09);
  border-radius: 50%;
}
.jackpot-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.jackpot-hero .label {
  color: #69d8f4;
}
.jackpot-hero h2 {
  max-width: 970px;
  margin: 14px 0 22px;
  font-size: clamp(42px, 4.4vw, 70px);
  line-height: 1.03;
  color: #fff;
}
.jackpot-hero-copy > p {
  max-width: 830px;
  margin: 0;
  color: #c8dbea;
  font-size: 19px;
  line-height: 1.7;
}
.jackpot-rise {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: end;
  height: 270px;
  margin-top: 48px;
  padding-top: 24px;
}
.jackpot-rise:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.24);
}
.rise-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: var(--h);
  padding: 24px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(
    180deg,
    rgba(38, 180, 227, 0.22),
    rgba(38, 180, 227, 0.07)
  );
  border: 1px solid rgba(105, 216, 244, 0.28);
  border-bottom: 0;
  transform-origin: bottom;
  animation: riseTier 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--d);
}
.rise-tier-mini {
  --h: 34%;
  --d: 0.05s;
}
.rise-tier-minor {
  --h: 52%;
  --d: 0.18s;
}
.rise-tier-major {
  --h: 72%;
  --d: 0.31s;
}
.rise-tier-mega {
  --h: 100%;
  --d: 0.44s;
}
.rise-tier:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.1) 48%,
    transparent 72%
  );
  transform: translateX(-110%);
  animation: riseShine 5s ease-in-out infinite;
  animation-delay: calc(var(--d) + 1s);
}
.rise-tier strong {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: clamp(24px, 2vw, 34px);
}
.rise-tier span {
  position: relative;
  z-index: 1;
  margin-top: 7px;
  color: #9cc8dc;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.rise-tier.mega {
  background: linear-gradient(
    180deg,
    rgba(255, 196, 56, 0.38),
    rgba(255, 196, 56, 0.1)
  );
  border-color: rgba(255, 196, 56, 0.72);
}
.rise-tier.mega strong {
  color: #ffd25f;
}
.jackpot-story {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 28px;
  margin-top: 30px;
}
.jackpot-article,
.jackpot-panel {
  border: 1px solid #d8e5ed;
  border-radius: 26px;
  background: #fff;
  padding: 42px;
}
.jackpot-article h3,
.jackpot-panel h3 {
  margin: 0 0 17px;
  color: #102b46;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.15;
}
.jackpot-article p,
.jackpot-panel p {
  margin: 0;
  color: #536b7f;
  font-size: 17px;
  line-height: 1.72;
}
.jackpot-article p + p {
  margin-top: 18px;
}
.jackpot-panel {
  background: #0a2945;
  border-color: #0a2945;
  color: #fff;
}
.jackpot-panel h3 {
  color: #fff;
}
.jackpot-panel p {
  color: #c0d4e3;
}
.jackpot-switch {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 23px;
  padding: 17px 18px;
  border: 1px solid rgba(105, 216, 244, 0.26);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
}
.jackpot-toggle {
  position: relative;
  width: 54px;
  height: 30px;
  border-radius: 999px;
  background: #22b8e7;
  box-shadow: 0 0 20px rgba(34, 184, 231, 0.3);
}
.jackpot-toggle:after {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  right: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
}
.jackpot-switch strong {
  font-size: 16px;
}
.jackpot-charge {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 24px;
}
.jackpot-charge strong {
  font-size: 42px;
  color: #ffc438;
}
.jackpot-charge span {
  color: #9db7c9;
  font-size: 14px;
}
.jackpot-clarity {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}
.clarity-card {
  padding: 28px;
  border: 1px solid #d8e5ed;
  border-radius: 22px;
  background: #fff;
}
.clarity-card .clarity-mark {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #1aadda;
  box-shadow: 0 0 0 7px rgba(26, 173, 218, 0.1);
  margin: 3px 0 23px;
}
.clarity-card:nth-child(2) .clarity-mark {
  background: #ffc438;
  box-shadow: 0 0 0 7px rgba(255, 196, 56, 0.15);
}
.clarity-card:nth-child(3) .clarity-mark {
  background: #0b4268;
  box-shadow: 0 0 0 7px rgba(11, 66, 104, 0.1);
}
.clarity-card h3 {
  margin: 0 0 10px;
  color: #102b46;
  font-size: 22px;
}
.clarity-card p {
  margin: 0;
  color: #5b7285;
  line-height: 1.65;
}
.jackpot-footnote {
  margin: 22px 3px 0;
  color: #718698;
  font-size: 14px;
  line-height: 1.55;
}
@keyframes riseTier {
  from {
    transform: scaleY(0.08);
    opacity: 0.25;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes riseShine {
  0%,
  65% {
    transform: translateX(-110%);
  }
  85%,
  100% {
    transform: translateX(110%);
  }
}
@media (max-width: 900px) {
  .jackpot-hero {
    padding: 46px;
  }
  .jackpot-story {
    grid-template-columns: 1fr;
  }
  .jackpot-clarity {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 620px) {
  .jackpot-section {
    padding: 72px 0;
  }
  .jackpot-hero {
    padding: 32px 22px;
    border-radius: 24px;
  }
  .jackpot-hero h2 {
    font-size: 38px;
  }
  .jackpot-hero-copy > p {
    font-size: 17px;
  }
  .jackpot-rise {
    height: 220px;
    gap: 5px;
  }
  .rise-tier {
    padding: 13px 7px;
  }
  .rise-tier strong {
    font-size: 18px;
  }
  .rise-tier span {
    font-size: 9px;
  }
  .jackpot-article,
  .jackpot-panel {
    padding: 27px 23px;
  }
  .jackpot-charge strong {
    font-size: 34px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .rise-tier,
  .rise-tier:after {
    animation: none;
  }
}
/* ============================== JACKPOT REDESIGN END ============================== */
/* ============================== JACKPOT LEVEL MOTION START ============================== */
.jackpot-section {
  padding: 118px 0 132px;
}
.jackpot-hero {
  padding: 70px 70px 62px;
}
.jackpot-levels {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: end;
  height: 340px;
  margin-top: 54px;
  padding: 30px 30px 0;
  border: 1px solid rgba(105, 216, 244, 0.27);
  border-radius: 28px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.045),
    rgba(0, 0, 0, 0.15)
  );
  overflow: hidden;
}
.jackpot-levels:before {
  content: "";
  position: absolute;
  inset: 30px 30px 0;
  background: repeating-linear-gradient(
    to top,
    rgba(124, 207, 235, 0.12) 0,
    rgba(124, 207, 235, 0.12) 1px,
    transparent 1px,
    transparent 58px
  );
}
.jackpot-level {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.level-value {
  align-self: center;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(104, 216, 244, 0.32);
  border-radius: 999px;
  background: #08243d;
  color: #bfe8f5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.level-column {
  position: relative;
  height: var(--level);
  min-height: 72px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(90, 204, 239, 0.45);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(
    180deg,
    rgba(45, 194, 234, 0.48),
    rgba(18, 111, 158, 0.18)
  );
  transform-origin: bottom;
  animation: jackpotLift 1.35s cubic-bezier(0.2, 0.78, 0.2, 1) both;
  animation-delay: var(--delay);
  overflow: hidden;
}
.level-column:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 20%,
    rgba(255, 255, 255, 0.17) 48%,
    transparent 72%
  );
  transform: translateX(-120%);
  animation: jackpotGloss 5s ease-in-out infinite;
  animation-delay: calc(var(--delay) + 1.2s);
}
.level-column:after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 9px;
  height: 3px;
  border-radius: 5px;
  background: #68ddf7;
  box-shadow: 0 0 16px #42c8ec;
  animation: jackpotBreathe 2.6s ease-in-out infinite;
  animation-delay: var(--delay);
}
.level-column strong,
.level-column span {
  position: relative;
  z-index: 1;
}
.level-column strong {
  color: #fff;
  font-size: clamp(23px, 2.1vw, 34px);
}
.level-column span {
  margin-top: 5px;
  color: #b9dbea;
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.jackpot-level.mega .level-column {
  border-color: rgba(255, 196, 56, 0.72);
  background: linear-gradient(
    180deg,
    rgba(255, 196, 56, 0.55),
    rgba(145, 93, 10, 0.2)
  );
}
.jackpot-level.mega .level-column:after {
  background: #ffd158;
  box-shadow: 0 0 18px #ffc438;
}
.jackpot-level.mega .level-value {
  border-color: rgba(255, 196, 56, 0.55);
  color: #ffd66d;
}
.jackpot-story {
  margin-top: 34px;
}
.jackpot-article,
.jackpot-panel {
  padding: 48px;
}
.clarity-card {
  min-height: 238px;
  padding: 34px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.clarity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(17, 55, 80, 0.1);
}
@keyframes jackpotLift {
  from {
    transform: scaleY(0.06);
    opacity: 0.25;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes jackpotGloss {
  0%,
  68% {
    transform: translateX(-120%);
  }
  92%,
  100% {
    transform: translateX(120%);
  }
}
@keyframes jackpotBreathe {
  0%,
  100% {
    opacity: 0.55;
    transform: scaleX(0.82);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@media (max-width: 760px) {
  .jackpot-hero {
    padding: 42px 24px;
  }
  .jackpot-levels {
    height: 285px;
    padding: 22px 12px 0;
    gap: 8px;
  }
  .level-column {
    padding: 17px 8px;
  }
  .level-column strong {
    font-size: 20px;
  }
  .level-column span {
    font-size: 8px;
  }
  .level-value {
    font-size: 8px;
    padding: 6px 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .level-column,
  .level-column:before,
  .level-column:after {
    animation: none;
  }
}
/* ============================== JACKPOT LEVEL MOTION END ============================== */
/* ============================== MOBILE EXPERIENCE START ============================== */
.mobile-experience {
  position: relative;
  padding: 118px 0 126px;
  background: linear-gradient(180deg, #071a30 0%, #092942 100%);
  color: #fff;
  overflow: hidden;
}
.mobile-experience:before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  left: -260px;
  bottom: -320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 182, 225, 0.2), transparent 67%);
}
.mobile-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: 64px;
  align-items: center;
}
.mobile-copy .label {
  color: #67d7f3;
}
.mobile-copy h2 {
  max-width: 680px;
  margin: 13px 0 24px;
  color: #fff;
  font-size: clamp(42px, 4.4vw, 68px);
  line-height: 1.02;
}
.mobile-copy > p {
  max-width: 690px;
  margin: 0;
  color: #bfd2df;
  font-size: 18px;
  line-height: 1.72;
}
.mobile-copy > p + p {
  margin-top: 18px;
}
.mobile-visual {
  position: relative;
}
.mobile-visual img {
  display: block;
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.36);
}
.mobile-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(102, 214, 243, 0.28);
  border-radius: 28px;
  pointer-events: none;
}
.mobile-browser-badge {
  position: absolute;
  left: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(103, 216, 245, 0.35);
  border-radius: 15px;
  background: rgba(5, 25, 44, 0.92);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  color: #fff;
  font-weight: 800;
}
.mobile-browser-badge i {
  color: #ffc438;
  font-size: 20px;
}
.mobile-benefits {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
}
.mobile-benefit {
  padding: 27px 24px;
  border: 1px solid rgba(108, 203, 233, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
  transition:
    transform 0.25s ease,
    background 0.25s ease;
}
.mobile-benefit:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.09);
}
.mobile-benefit i {
  color: #ffc438;
  font-size: 22px;
}
.mobile-benefit h3 {
  margin: 18px 0 9px;
  color: #fff;
  font-size: 20px;
}
.mobile-benefit p {
  margin: 0;
  color: #aac2d1;
  font-size: 13px;
  line-height: 1.62;
}
.mobile-practical {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.mobile-practical article {
  padding: 34px;
  border-radius: 22px;
  background: #fff;
  color: #102b46;
}
.mobile-practical article:last-child {
  background: linear-gradient(135deg, #ffc438, #ffda78);
}
.mobile-practical h3 {
  margin: 0 0 12px;
  font-size: 25px;
}
.mobile-practical p {
  margin: 0;
  color: #5c7284;
  line-height: 1.68;
}
.mobile-practical article:last-child p {
  color: #463a22;
}
@media (max-width: 980px) {
  .mobile-layout {
    grid-template-columns: 1fr;
  }
  .mobile-visual {
    max-width: 760px;
  }
  .mobile-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .mobile-experience {
    padding: 78px 0 88px;
  }
  .mobile-layout {
    gap: 40px;
  }
  .mobile-copy h2 {
    font-size: 40px;
  }
  .mobile-copy > p {
    font-size: 16px;
  }
  .mobile-browser-badge {
    left: 12px;
    bottom: 12px;
    font-size: 12px;
  }
  .mobile-benefits,
  .mobile-practical {
    grid-template-columns: 1fr;
  }
  .mobile-benefits {
    margin-top: 34px;
  }
  .mobile-benefit,
  .mobile-practical article {
    padding: 24px;
  }
}
/* ============================== MOBILE EXPERIENCE END ============================== */
/* ============================== MOBILE COMPOSITION FIX START ============================== */
.mobile-experience {
  padding: 110px 0 122px;
  background: linear-gradient(180deg, #f8fbfd, #edf4f8);
  color: #102b46;
}
.mobile-experience:before {
  display: none;
}
.mobile-layout {
  display: block;
}
.mobile-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 40px;
}
.mobile-copy .label {
  grid-column: 1/-1;
  color: #087fbd;
  margin-bottom: -46px;
}
.mobile-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #102b46;
  font-size: clamp(42px, 4.2vw, 64px);
  line-height: 1.04;
}
.mobile-copy > p {
  max-width: none;
  margin: 0;
  color: #597084;
  font-size: 16px;
  line-height: 1.7;
}
.mobile-copy > p + p {
  margin-top: 16px;
}
.mobile-visual {
  height: 560px;
  overflow: hidden;
  border-radius: 30px;
  background: #041629;
  box-shadow: 0 26px 65px rgba(15, 48, 71, 0.18);
}
.mobile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  border-radius: 0;
  box-shadow: none;
}
.mobile-visual:after {
  border-color: #c9dce7;
  border-radius: 30px;
}
.mobile-browser-badge {
  left: 34px;
  bottom: 28px;
  background: rgba(5, 25, 44, 0.9);
}
.mobile-benefits {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}
.mobile-benefit {
  background: #fff;
  border-color: #d6e4ec;
  color: #102b46;
  box-shadow: 0 12px 30px rgba(16, 47, 75, 0.045);
}
.mobile-benefit:hover {
  background: #fff;
  box-shadow: 0 20px 40px rgba(16, 47, 75, 0.1);
}
.mobile-benefit h3 {
  color: #102b46;
}
.mobile-benefit p {
  color: #617789;
}
.mobile-practical article {
  border: 1px solid #d6e4ec;
}
.mobile-practical article:first-child {
  background: #092b48;
  color: #fff;
  border-color: #092b48;
}
.mobile-practical article:first-child h3 {
  color: #fff;
}
.mobile-practical article:first-child p {
  color: #bfd1df;
}
@media (max-width: 980px) {
  .mobile-copy {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .mobile-copy .label {
    grid-column: auto;
    margin-bottom: 0;
  }
  .mobile-visual {
    height: auto;
  }
  .mobile-visual img {
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 620px) {
  .mobile-experience {
    padding: 76px 0 86px;
  }
  .mobile-copy h2 {
    font-size: 38px;
  }
  .mobile-visual {
    border-radius: 22px;
  }
  .mobile-browser-badge {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }
  .mobile-benefits {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-practical {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 440px) {
  .mobile-benefits {
    grid-template-columns: 1fr;
  }
}
/* ============================== MOBILE COMPOSITION FIX END ============================== */
/* ============================== MOBILE IMAGE RESTORE START ============================== */
.mobile-visual {
  height: auto !important;
  aspect-ratio: auto;
  background: transparent;
}
.mobile-visual img {
  display: block;
  width: 100%;
  height: auto !important;
  object-fit: contain !important;
  object-position: center;
}
.mobile-browser-badge {
  left: 28px;
  bottom: 24px;
}
/* ============================== MOBILE IMAGE RESTORE END ============================== */
/* ============================== MOBILE COMPACT START ============================== */
.mobile-experience {
  padding: 88px 0 94px;
}
.mobile-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 52px;
  align-items: center;
}
.mobile-copy {
  display: block;
  margin: 0;
}
.mobile-copy .label {
  margin: 0 0 12px;
}
.mobile-copy h2 {
  max-width: 720px;
  margin: 0 0 22px;
  font-size: clamp(38px, 3.7vw, 56px);
}
.mobile-copy > p {
  font-size: 15px;
  line-height: 1.68;
}
.mobile-copy > p + p {
  margin-top: 14px;
}
.mobile-visual {
  width: 100%;
  max-width: 650px;
  justify-self: end;
  border-radius: 24px;
  box-shadow: 0 20px 48px rgba(15, 48, 71, 0.16);
}
.mobile-visual img {
  border-radius: 24px;
}
.mobile-visual:after {
  border-radius: 24px;
}
.mobile-browser-badge {
  left: 16px;
  bottom: 15px;
  padding: 11px 13px;
  font-size: 11px;
}
.mobile-browser-badge i {
  font-size: 16px;
}
.mobile-benefits {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 34px;
}
.mobile-benefit {
  min-height: auto;
  padding: 20px 18px;
}
.mobile-benefit i {
  font-size: 18px;
}
.mobile-benefit h3 {
  margin: 13px 0 6px;
  font-size: 16px;
}
.mobile-benefit p {
  font-size: 11px;
  line-height: 1.5;
}
.mobile-practical {
  display: none;
}
@media (max-width: 900px) {
  .mobile-layout {
    grid-template-columns: 1fr;
  }
  .mobile-visual {
    justify-self: start;
    max-width: 720px;
  }
  .mobile-benefits {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 520px) {
  .mobile-experience {
    padding: 68px 0 74px;
  }
  .mobile-copy h2 {
    font-size: 36px;
  }
  .mobile-benefits {
    grid-template-columns: 1fr;
  }
  .mobile-browser-badge {
    position: static;
    margin-top: 10px;
    background: #092b48;
  }
  .mobile-visual {
    box-shadow: none;
  }
}
/* ============================== PAYMENTS START ============================== */
.payment-section {
  padding: 116px 0 126px;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(255, 196, 56, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #f7fafc, #edf4f8);
  color: #142d45;
}
.payment-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
}
.payment-heading h2 {
  max-width: 790px;
  margin: 10px 0 0;
  font-size: clamp(42px, 4.5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.035em;
}
.payment-intro {
  padding-left: 28px;
  border-left: 2px solid #e2aa32;
}
.payment-intro p {
  margin: 0;
  color: #607486;
  font-size: 15px;
  line-height: 1.75;
}
.payment-intro p + p {
  margin-top: 12px;
}
.payment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 50px;
  padding: 8px;
  border: 1px solid #d5e2ea;
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(18, 51, 77, 0.07);
}
.payment-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  border: 0;
  border-radius: 15px;
  background: #edf3f7;
  color: #5d7182;
  font-weight: 850;
  cursor: pointer;
}
.payment-tabs button.is-active {
  background: linear-gradient(105deg, #09243d, #0c496c);
  color: #fff;
  box-shadow: 0 12px 24px rgba(10, 48, 76, 0.2);
}
.payment-tabs i {
  color: #ffc438;
}
.payment-panel {
  margin-top: 16px;
  padding: 40px;
  border: 1px solid #d8e4eb;
  border-radius: 29px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(20, 53, 78, 0.07);
}
.payment-panel[hidden] {
  display: none;
}
.payment-panel-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: end;
  margin-bottom: 28px;
}
.payment-panel-heading span,
.decline-box > div > span {
  color: #9c650c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.payment-panel-heading h3 {
  margin: 7px 0 0;
  font-size: 34px;
  line-height: 1.12;
}
.payment-panel-heading > p {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid #e2aa32;
  color: #657888;
  font-size: 13px;
  line-height: 1.7;
}
.deposit-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.deposit-methods article {
  padding: 20px;
  border: 1px solid #dce6ed;
  border-radius: 20px;
  background: #f7f9fb;
}
.deposit-methods article.featured-method {
  border-color: #f1bd35;
  box-shadow: inset 0 3px #ffcb3e;
}
.method-logo {
  display: flex;
  height: 70px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 17px;
  padding: 13px;
  border-radius: 14px;
  background: linear-gradient(120deg, #09243d, #105778);
}
.method-logo img {
  max-width: 112px;
  max-height: 42px;
}
.interac-logo {
  background: linear-gradient(120deg, #09243d, #105778);
}
.interac-logo img {
  max-width: 122px;
  max-height: 48px;
}
.card-logos img:first-child {
  filter: brightness(0) invert(1);
}
.card-logos img:last-child {
  width: 50px;
}
.bank-logo img {
  filter: brightness(0) invert(1);
}
.crypto-logos img {
  width: 38px;
  height: 38px;
}
.deposit-methods h4 {
  margin: 0;
  font-size: 18px;
}
.deposit-methods article > p {
  margin: 5px 0 16px;
  color: #778998;
  font-size: 11px;
}
.deposit-methods dl {
  margin: 0;
}
.deposit-methods dl > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid #dfe7ed;
  font-size: 10px;
}
.deposit-methods dt {
  color: #8493a0;
}
.deposit-methods dd {
  margin: 0;
  color: #294258;
  font-weight: 850;
  text-align: right;
}
.deposit-guidance {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.deposit-guidance p {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 16px;
  border: 1px solid #dce6ed;
  border-radius: 16px;
  color: #718391;
  font-size: 10px;
  line-height: 1.5;
}
.deposit-guidance i {
  display: grid;
  place-items: center;
  width: 43px;
  height: 43px;
  border-radius: 12px;
  background: #fff0c8;
  color: #9b650d;
}
.deposit-guidance strong {
  display: block;
  color: #18354e;
  font-size: 12px;
}
.withdrawal-limit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.withdrawal-limit-strip article {
  padding: 24px;
  border: 1px solid #dce6ed;
  border-radius: 19px;
  background: linear-gradient(145deg, #f8fafb, #edf3f7);
}
.withdrawal-limit-strip i {
  color: #b97811;
  font-size: 20px;
}
.withdrawal-limit-strip span {
  display: block;
  margin-top: 17px;
  color: #718391;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}
.withdrawal-limit-strip strong {
  display: block;
  margin-top: 4px;
  font-size: 27px;
}
.withdrawal-limit-strip p {
  margin: 7px 0 0;
  color: #7f909e;
  font-size: 10px;
  line-height: 1.5;
}
.withdrawal-route {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
  padding: 28px;
  border-radius: 23px;
  background: #092b48;
}
.withdrawal-route article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
}
.withdrawal-route article > i {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 15px;
  background: rgba(255, 205, 92, 0.12);
  color: #ffd066;
}
.withdrawal-route span {
  color: #efbd54;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}
.withdrawal-route h4 {
  margin: 5px 0 7px;
  color: #fff;
  font-size: 16px;
}
.withdrawal-route p {
  margin: 0;
  color: rgba(224, 237, 247, 0.62);
  font-size: 10px;
  line-height: 1.55;
}
.decline-box {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 38px;
  margin-top: 14px;
  padding: 28px;
  border: 1px solid #ead7aa;
  border-radius: 22px;
  background: #fff9e9;
}
.decline-box h3 {
  margin: 7px 0 0;
  font-size: 24px;
  line-height: 1.2;
}
.decline-box ul {
  columns: 2;
  gap: 32px;
  margin: 0;
  padding-left: 20px;
  color: #657788;
  font-size: 11px;
  line-height: 1.6;
}
.decline-box li {
  break-inside: avoid;
  margin-bottom: 8px;
}
.payment-note {
  display: flex;
  gap: 10px;
  margin: 16px 0 0;
  padding: 15px 18px;
  border-radius: 15px;
  background: #e7eff4;
  color: #687b8a;
  font-size: 11px;
  line-height: 1.55;
}
.payment-note i {
  color: #a96f10;
}
.interac-logo img {
  width: 190px;
  max-width: 88%;
  max-height: 58px;
}
.interac-wordmark {
  position: relative;
  color: #ffc438;
  font-size: 31px;
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
}
.interac-wordmark > span {
  position: absolute;
  right: -13px;
  top: -8px;
  font-size: 12px;
}
.crypto-logos {
  gap: 20px;
}
.crypto-logos > span,
.withdrawal-crypto > span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
}
.crypto-logos > span img,
.withdrawal-crypto > span img {
  width: 34px;
  height: 34px;
}
.crypto-logos b,
.withdrawal-crypto b {
  font-size: 12px;
  letter-spacing: 0.04em;
}
.withdrawal-method-heading {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 18px;
}
.withdrawal-method-heading span,
.withdrawal-limit-heading > span {
  color: #9c650c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.withdrawal-method-heading h3,
.withdrawal-limit-heading h3 {
  margin: 6px 0 0;
  font-size: 25px;
}
.withdrawal-method-heading p {
  margin: 0;
  color: #657888;
  font-size: 12px;
  line-height: 1.65;
}
.withdrawal-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.withdrawal-methods article {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  align-items: center;
  padding: 18px;
  border: 1px solid #dce6ed;
  border-radius: 19px;
  background: #f7f9fb;
}
.withdrawal-logo {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(120deg, #09243d, #105778);
}
.withdrawal-logo img {
  max-width: 115px;
  max-height: 43px;
}
.interac-withdrawal {
  background: linear-gradient(120deg, #09243d, #105778);
}
.interac-withdrawal img {
  width: 155px;
  max-width: 92%;
  max-height: 56px;
}
.withdrawal-cards img:first-child,
.withdrawal-bank img {
  filter: brightness(0) invert(1);
}
.withdrawal-cards img:last-child {
  width: 52px;
}
.withdrawal-crypto {
  display: flex;
  gap: 9px;
  padding: 10px 8px;
}
.withdrawal-crypto > span {
  min-width: 48px;
  flex: 1;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
  padding: 8px 4px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
}
.withdrawal-crypto > span img {
  width: 27px;
  height: 27px;
}
.withdrawal-crypto b {
  font-size: 10px;
}
.withdrawal-methods h4 {
  margin: 0 0 7px;
  font-size: 19px;
}
.withdrawal-methods p {
  margin: 0;
  color: #6e8190;
  font-size: 11px;
  line-height: 1.55;
}
.withdrawal-limit-heading {
  display: grid;
  grid-template-columns: auto 1fr 1.25fr;
  gap: 22px;
  align-items: center;
  margin: 28px 0 14px;
  padding-top: 24px;
  border-top: 1px solid #dce6ed;
}
.withdrawal-limit-heading h3 {
  margin: 0;
}
.withdrawal-limit-heading p {
  margin: 0;
  color: #687b8a;
  font-size: 11px;
  line-height: 1.55;
}
@media (max-width: 1050px) {
  .payment-heading,
  .payment-panel-heading {
    grid-template-columns: 1fr;
  }
  .deposit-methods,
  .withdrawal-limit-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .withdrawal-route {
    grid-template-columns: 1fr;
  }
  .withdrawal-method-heading,
  .withdrawal-limit-heading {
    grid-template-columns: 1fr;
  }
  .withdrawal-methods {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .payment-section {
    padding: 78px 0;
  }
  .payment-tabs,
  .deposit-methods,
  .deposit-guidance,
  .withdrawal-limit-strip,
  .decline-box {
    grid-template-columns: 1fr;
  }
  .payment-panel {
    padding: 25px 19px;
  }
  .decline-box ul {
    columns: 1;
  }
  .withdrawal-methods article {
    grid-template-columns: 1fr;
  }
}
/* ============================== PAYMENTS END ============================== */

/* ============================== GET STARTED START ============================== */
.getting-started {
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(
      circle at 86% 18%,
      rgba(24, 155, 201, 0.15),
      transparent 27%
    ),
    linear-gradient(135deg, #06192d 0%, #09253c 56%, #0b3148 100%);
  color: #fff;
}
.start-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}
.start-heading .label {
  color: #6edff1;
}
.start-heading h2 {
  max-width: 700px;
  margin: 10px 0 0;
  font-size: clamp(37px, 4.1vw, 62px);
  line-height: 1.02;
  letter-spacing: -2.2px;
}
.start-heading > p {
  margin: 0;
  padding: 4px 0 4px 28px;
  border-left: 2px solid #ffc33b;
  color: #c4d4df;
  font-size: 17px;
  line-height: 1.72;
}
.start-board {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, 0.7fr);
  gap: 24px;
  align-items: start;
}
.start-route {
  position: relative;
  padding: 18px 28px 18px 0;
}
.route-line {
  position: absolute;
  top: 43px;
  bottom: 43px;
  left: 28px;
  width: 2px;
  overflow: hidden;
  background: rgba(126, 187, 210, 0.24);
}
.route-line span {
  position: absolute;
  top: -90px;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(transparent, #73e5f2, #ffc33b, transparent);
  filter: drop-shadow(0 0 8px #4dd9ef);
  animation: routePulse 4.8s ease-in-out infinite;
}
.route-stop {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 23px;
  padding: 24px 0;
}
.route-stop + .route-stop {
  border-top: 1px solid rgba(130, 180, 201, 0.14);
}
.route-marker {
  position: relative;
  z-index: 2;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(104, 215, 238, 0.5);
  border-radius: 50%;
  background: #0b2a42;
  color: #76e4f3;
  box-shadow: 0 0 0 8px #08243a;
  transition: 0.3s ease;
}
.route-stop:hover .route-marker {
  transform: scale(1.07);
  border-color: #ffc33b;
  color: #ffc33b;
  box-shadow:
    0 0 0 8px #08243a,
    0 0 28px rgba(255, 195, 59, 0.22);
}
.route-copy > span {
  color: #68d9ed;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.route-copy h3 {
  margin: 7px 0 9px;
  font-size: 24px;
  line-height: 1.18;
}
.route-copy p {
  margin: 0;
  color: #b9cbd7;
  font-size: 15px;
  line-height: 1.7;
}
.start-checklist {
  position: sticky;
  top: 102px;
  padding: 31px;
  border: 1px solid rgba(109, 203, 225, 0.34);
  border-radius: 28px;
  background: linear-gradient(
    150deg,
    rgba(17, 56, 81, 0.96),
    rgba(6, 27, 46, 0.96)
  );
  box-shadow: 0 26px 70px rgba(0, 5, 15, 0.28);
}
.readiness-orbit {
  position: relative;
  display: grid;
  width: 104px;
  height: 104px;
  margin: 0 0 25px auto;
  place-items: center;
}
.readiness-orbit .orbit-ring {
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(110, 223, 241, 0.36);
  border-top-color: #ffc33b;
  border-radius: 50%;
  animation: orbitSpin 8s linear infinite;
}
.readiness-orbit .orbit-dot {
  position: absolute;
  inset: 0;
  animation: orbitSpin 4.5s linear infinite;
}
.readiness-orbit .orbit-dot::before {
  position: absolute;
  top: 4px;
  left: 48px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #71e4f3;
  box-shadow: 0 0 16px #71e4f3;
  content: "";
}
.readiness-orbit div {
  text-align: center;
}
.readiness-orbit strong {
  display: block;
  color: #ffc33b;
  font-size: 19px;
}
.readiness-orbit small {
  color: #a9c1d0;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.checklist-label {
  color: #6edff1;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.start-checklist h3 {
  margin: 8px 0 22px;
  font-size: 29px;
  line-height: 1.12;
}
.start-checklist ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.start-checklist li {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 11px;
  padding: 13px 0;
  border-top: 1px solid rgba(136, 183, 200, 0.16);
  color: #b6cad6;
  font-size: 12px;
  line-height: 1.45;
}
.start-checklist li i {
  color: #ffc33b;
}
.start-checklist li strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 14px;
}
.start-note {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  margin-top: 20px;
  padding: 16px;
  border-radius: 15px;
  background: rgba(2, 18, 32, 0.52);
  color: #9eb7c6;
}
.start-note i {
  color: #6edff1;
}
.start-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.55;
}
.start-foundation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(109, 203, 225, 0.28);
  border-radius: 22px;
  background: rgba(6, 25, 44, 0.45);
}
.start-foundation > div {
  padding: 22px 25px;
}
.start-foundation > div + div {
  border-left: 1px solid rgba(109, 203, 225, 0.2);
}
.start-foundation span {
  display: block;
  color: #6edff1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.start-foundation strong {
  display: block;
  margin: 5px 0;
  font-size: 18px;
}
.start-foundation small {
  color: #9eb5c3;
  font-size: 11px;
}
.affiliate-info {
  position: relative;
  display: grid;
  grid-template-columns: 150px minmax(300px, 0.9fr) minmax(430px, 1.15fr);
  gap: 30px;
  align-items: center;
  margin-top: 24px;
  padding: 29px 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 195, 59, 0.3);
  border-radius: 22px;
  background: linear-gradient(
    110deg,
    rgba(20, 58, 82, 0.92),
    rgba(7, 29, 49, 0.92)
  );
}
.affiliate-info::after {
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(110, 223, 241, 0.13);
  border-radius: 50%;
  content: "";
}
.affiliate-emblem {
  position: relative;
  width: 138px;
  height: 104px;
}
.affiliate-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(110, 223, 241, 0.5);
  border-radius: 50%;
  background: #09243d;
  color: #6edff1;
}
.node-main {
  top: 24px;
  left: 45px;
  width: 58px;
  height: 58px;
  border-color: #ffc33b;
  color: #ffc33b;
  font-size: 20px;
  box-shadow: 0 0 28px rgba(255, 195, 59, 0.15);
}
.node-site {
  top: 2px;
  left: 2px;
  width: 38px;
  height: 38px;
  font-size: 12px;
}
.node-audience {
  right: 0;
  bottom: 2px;
  width: 40px;
  height: 40px;
  font-size: 12px;
}
.affiliate-connector {
  position: absolute;
  z-index: 1;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, #6edff1, #ffc33b);
}
.connector-one {
  top: 37px;
  left: 31px;
  width: 38px;
  transform: rotate(27deg);
}
.connector-two {
  top: 69px;
  left: 92px;
  width: 38px;
  transform: rotate(24deg);
}
.affiliate-copy > span {
  color: #6edff1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.affiliate-copy h3 {
  margin: 7px 0 9px;
  font-size: 25px;
  line-height: 1.15;
}
.affiliate-copy p {
  margin: 0;
  color: #b8cbd7;
  font-size: 13px;
  line-height: 1.65;
}
.affiliate-facts {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}
.affiliate-facts > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(2, 18, 32, 0.38);
  color: #9fb8c7;
  font-size: 10px;
  line-height: 1.45;
}
.affiliate-facts i {
  margin-top: 2px;
  color: #ffc33b;
}
.affiliate-facts strong {
  display: block;
  margin-bottom: 1px;
  color: #fff;
  font-size: 12px;
}
@keyframes routePulse {
  0% {
    top: -90px;
  }
  70%,
  100% {
    top: 100%;
  }
}
@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .route-line span,
  .readiness-orbit .orbit-ring,
  .readiness-orbit .orbit-dot {
    animation: none;
  }
}
@media (max-width: 1050px) {
  .start-heading,
  .start-board {
    grid-template-columns: 1fr;
  }
  .start-heading {
    gap: 24px;
  }
  .start-heading > p {
    max-width: 760px;
  }
  .start-checklist {
    position: relative;
    top: auto;
  }
  .readiness-orbit {
    float: right;
    margin: -8px 0 10px 20px;
  }
  .affiliate-info {
    grid-template-columns: 130px 1fr;
  }
  .affiliate-facts {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  .getting-started {
    padding: 74px 0;
  }
  .start-heading h2 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }
  .start-heading > p {
    min-width: 0;
    font-size: 15px;
  }
  .start-route {
    padding-right: 0;
  }
  .route-stop {
    grid-template-columns: 46px 1fr;
    gap: 17px;
  }
  .route-marker {
    width: 46px;
    height: 46px;
    box-shadow: 0 0 0 6px #08243a;
  }
  .route-line {
    left: 22px;
  }
  .route-copy h3 {
    font-size: 21px;
  }
  .route-copy p {
    font-size: 14px;
  }
  .start-checklist {
    padding: 24px;
  }
  .start-foundation {
    grid-template-columns: 1fr;
  }
  .start-foundation > div + div {
    border-top: 1px solid rgba(109, 203, 225, 0.2);
    border-left: 0;
  }
  .affiliate-info {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .affiliate-emblem {
    height: 84px;
    margin: 0 auto;
  }
  .affiliate-facts {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}
/* ============================== GET STARTED END ============================== */

/* ============================== SPORTS START ============================== */
.sports-section {
  overflow: hidden;
  padding: 94px 0;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(26, 142, 190, 0.16),
      transparent 24%
    ),
    linear-gradient(180deg, #f4f8fb 0%, #eaf2f7 100%);
}
.sports-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}
.sports-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(38px, 4.4vw, 61px);
  line-height: 1.02;
  letter-spacing: -2.2px;
}
.sports-heading > p {
  margin: 0;
  padding-left: 26px;
  border-left: 2px solid #ffc33b;
  color: #5c7182;
  font-size: 16px;
  line-height: 1.72;
}
.sports-hero {
  position: relative;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border: 1px solid #224763;
  border-radius: 27px;
  background: #06172f;
  box-shadow: 0 26px 60px rgba(12, 38, 59, 0.2);
}
.sports-hero > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.sports-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(2, 16, 30, 0.9) 0%,
    rgba(2, 16, 30, 0.56) 32%,
    transparent 65%
  );
  content: "";
  pointer-events: none;
}
.sports-hero-copy {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 42px;
  width: min(445px, 42%);
  transform: translateY(-50%);
  color: #fff;
}
.sports-live {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #83e7f3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.sports-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #40d7a4;
  box-shadow: 0 0 14px #40d7a4;
  animation: sportsBlink 1.8s ease-in-out infinite;
}
.sports-hero-copy h3 {
  margin: 10px 0 12px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.04;
  letter-spacing: -1.3px;
}
.sports-hero-copy > p {
  margin: 0;
  color: #c5d6e1;
  font-size: 13px;
  line-height: 1.65;
}
.sport-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.sport-pills span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 9px;
  border: 1px solid rgba(126, 220, 238, 0.3);
  border-radius: 20px;
  background: rgba(4, 27, 47, 0.67);
  font-size: 9px;
  font-weight: 800;
}
.sport-pills i {
  color: #ffc33b;
}
.sports-mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}
.sports-mode-card {
  position: relative;
  min-height: 340px;
  padding: 36px;
  overflow: hidden;
  border: 1px solid #d4e1e9;
  border-radius: 23px;
  background: #fff;
}
.sports-mode-card > span,
.bet-structure-heading > span,
.market-library-head span,
.sports-photo-card div > span,
.sports-feature-row article > span,
.sports-rules span {
  color: #0875c5;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sports-mode-card h3 {
  max-width: 520px;
  margin: 8px 0 13px;
  font-size: 28px;
  line-height: 1.12;
}
.sports-mode-card p {
  max-width: 650px;
  margin: 0;
  color: #637789;
  font-size: 13px;
  line-height: 1.68;
}
.market-demo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 27px;
}
.market-demo div {
  padding: 12px;
  border: 1px solid #d7e3eb;
  border-radius: 11px;
  background: #f4f8fb;
}
.market-demo small {
  display: block;
  color: #718393;
  font-size: 9px;
}
.market-demo strong {
  color: #0c4165;
  font-size: 18px;
}
.live-card {
  background: linear-gradient(140deg, #09243d, #0d4664);
  color: #fff;
}
.live-card > span {
  color: #77e2f1;
}
.live-card p {
  color: #bdd0dc;
}
.live-score {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 27px;
  padding: 14px 17px;
  border: 1px solid rgba(112, 221, 238, 0.3);
  border-radius: 13px;
  background: rgba(2, 18, 32, 0.45);
}
.live-score b {
  color: #43d8a5;
  font-size: 10px;
  letter-spacing: 1.3px;
}
.live-score span {
  margin-right: auto;
  color: #9cb9c9;
  font-size: 11px;
}
.live-score strong {
  color: #fff;
  font-size: 24px;
}
.live-score i {
  color: #ffc33b;
  font-style: normal;
}
.bet-structure {
  margin-top: 24px;
  padding: 38px;
  border: 1px solid #d4e1e9;
  border-radius: 23px;
  background: #fff;
}
.bet-structure-heading {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 38px;
  align-items: end;
}
.bet-structure-heading > span {
  grid-column: 1 / -1;
  margin-bottom: -29px;
}
.bet-structure-heading h3 {
  margin: 0;
  font-size: 30px;
  line-height: 1.13;
}
.bet-structure-heading p {
  margin: 0;
  color: #627789;
  font-size: 13px;
  line-height: 1.65;
}
.bet-structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}
.bet-structure-grid article {
  padding: 23px;
  border-radius: 16px;
  background: #f2f7fa;
}
.bet-structure-grid article > span {
  color: #0875c5;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.bet-structure-grid h4 {
  margin: 5px 0 8px;
  font-size: 18px;
}
.bet-structure-grid p {
  margin: 0;
  color: #687c8d;
  font-size: 11px;
  line-height: 1.6;
}
.bet-symbol {
  display: flex;
  gap: 5px;
  align-items: center;
  height: 24px;
  margin-bottom: 17px;
}
.bet-symbol i {
  display: block;
  width: 16px;
  height: 16px;
  border: 3px solid #0d789f;
  border-radius: 50%;
  background: #fff;
}
.single-symbol i {
  border-color: #ffc33b;
}
.combo-symbol i + i,
.builder-symbol i + i {
  position: relative;
}
.combo-symbol i + i::before,
.builder-symbol i + i::before {
  position: absolute;
  top: 5px;
  right: 13px;
  width: 8px;
  height: 2px;
  background: #0d789f;
  content: "";
}
.builder-symbol i {
  border-radius: 4px;
}
.market-library {
  margin-top: 24px;
  padding: 38px;
  border-radius: 23px;
  background: #09243d;
  color: #fff;
}
.market-library-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: end;
}
.market-library-head span {
  color: #6edff1;
}
.market-library-head h3 {
  margin: 7px 0 0;
  font-size: 30px;
  line-height: 1.12;
}
.market-library-head > p {
  margin: 0;
  color: #b5c9d5;
  font-size: 12px;
  line-height: 1.65;
}
.market-library-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(111, 195, 219, 0.2);
  border-radius: 17px;
  background: rgba(111, 195, 219, 0.2);
}
.market-library-grid article {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 13px;
  padding: 20px;
  background: #0b2a43;
}
.market-library-grid i {
  margin-top: 3px;
  color: #ffc33b;
  font-size: 19px;
}
.market-library-grid strong {
  font-size: 15px;
}
.market-library-grid p {
  margin: 3px 0 0;
  color: #a9bfcd;
  font-size: 10px;
  line-height: 1.55;
}
.sports-feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.sports-feature-row article {
  padding: 25px 22px;
  border: 1px solid #d4e1e9;
  border-radius: 18px;
  background: #fff;
}
.sports-feature-row article > i {
  display: block;
  margin-bottom: 18px;
  color: #ffc33b;
  font-size: 23px;
}
.sports-feature-row h3 {
  margin: 5px 0 8px;
  font-size: 18px;
  line-height: 1.18;
}
.sports-feature-row p {
  margin: 0;
  color: #687c8d;
  font-size: 10px;
  line-height: 1.58;
}
.sports-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}
.sports-photo-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: #06172f;
}
.sports-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sports-photo-card::after {
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, rgba(3, 18, 34, 0.96));
  content: "";
}
.sports-photo-card > div {
  position: absolute;
  z-index: 2;
  right: 27px;
  bottom: 25px;
  left: 27px;
  color: #fff;
}
.sports-photo-card div > span {
  color: #74e0f0;
}
.sports-photo-card h3 {
  margin: 6px 0 8px;
  font-size: 24px;
}
.sports-photo-card p {
  margin: 0;
  color: #c0d1dc;
  font-size: 11px;
  line-height: 1.58;
}
.sports-rules {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 35px;
  margin-top: 24px;
  padding: 32px;
  border: 1px solid #d2e0e8;
  border-radius: 21px;
  background: #fff;
}
.sports-rules h3 {
  margin: 7px 0 0;
  font-size: 26px;
  line-height: 1.15;
}
.sports-rules ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sports-rules li {
  color: #6b7f90;
  font-size: 10px;
  line-height: 1.5;
}
.sports-rules strong {
  display: block;
  color: #102641;
  font-size: 12px;
}
.sports-note {
  margin: 18px 0 0;
  color: #667b8b;
  font-size: 10px;
}
.sports-note i {
  margin-right: 7px;
  color: #0875c5;
}
@keyframes sportsBlink {
  50% {
    opacity: 0.35;
  }
}
@media (max-width: 1050px) {
  .sports-heading,
  .bet-structure-heading,
  .market-library-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bet-structure-heading > span {
    grid-column: auto;
    margin-bottom: -10px;
  }
  .sports-feature-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .sports-hero-copy {
    width: 48%;
  }
}
@media (max-width: 760px) {
  .sports-section {
    padding: 74px 0;
  }
  .sports-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .sports-heading > p {
    min-width: 0;
  }
  .sports-hero {
    aspect-ratio: auto;
    min-height: 620px;
    background: #06172f;
  }
  .sports-hero > img {
    height: auto;
    object-fit: contain;
  }
  .sports-hero::after {
    background: linear-gradient(
      0deg,
      rgba(2, 16, 30, 0.97) 0%,
      rgba(2, 16, 30, 0.76) 50%,
      transparent 82%
    );
  }
  .sports-hero-copy {
    top: auto;
    right: 22px;
    bottom: 25px;
    left: 22px;
    width: auto;
    transform: none;
  }
  .sports-mode-grid,
  .bet-structure-grid,
  .market-library-grid,
  .sports-editorial,
  .sports-rules {
    grid-template-columns: 1fr;
  }
  .sports-feature-row {
    grid-template-columns: 1fr;
  }
  .bet-structure,
  .market-library {
    padding: 26px 21px;
  }
  .sports-rules ul {
    grid-template-columns: 1fr;
  }
  .sports-photo-card {
    min-height: 460px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sports-live i {
    animation: none;
  }
}
/* ============================== SPORTS END ============================== */

/* ============================== ACCOUNT SUPPORT START ============================== */
.account-support {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  background:
    radial-gradient(
      circle at 83% 15%,
      rgba(21, 170, 216, 0.16),
      transparent 28%
    ),
    radial-gradient(
      circle at 12% 92%,
      rgba(255, 195, 59, 0.09),
      transparent 24%
    ),
    #061a2e;
  color: #fff;
}
.account-support:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(110, 223, 241, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 223, 241, 0.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}
.account-support .wrap {
  position: relative;
  z-index: 1;
}
.support-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 38px;
}
.support-heading .label {
  color: #6edff1;
}
.support-heading h2 {
  max-width: 650px;
  margin: 10px 0 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
  letter-spacing: -2.7px;
}
.support-heading-copy {
  padding-left: 28px;
  border-left: 2px solid #ffc33b;
}
.support-heading-copy p {
  margin: 0;
  color: #b9cedb;
  font-size: 15px;
  line-height: 1.72;
}
.support-heading-copy p + p {
  margin-top: 13px;
}
.support-console {
  overflow: hidden;
  border: 1px solid rgba(110, 223, 241, 0.24);
  border-radius: 24px;
  background: rgba(5, 27, 47, 0.82);
  box-shadow: 0 28px 65px rgba(0, 7, 16, 0.28);
  backdrop-filter: blur(12px);
}
.support-console-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 17px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #dcecf4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.support-console-head span i {
  margin-right: 8px;
  color: #ffc33b;
}
.support-console-head strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6edff1;
  font-size: 10px;
  letter-spacing: 1px;
}
.support-console-head strong i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #35d39a;
  box-shadow: 0 0 0 5px rgba(53, 211, 154, 0.12);
  animation: supportPulse 2.2s ease-in-out infinite;
}
.support-trail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.support-trail article {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  min-height: 188px;
  padding: 27px 20px;
}
.support-trail article:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.support-trail article:not(:last-child):after {
  content: "";
  position: absolute;
  top: 47px;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  border-top: 2px solid #ffc33b;
  border-right: 2px solid #ffc33b;
  transform: rotate(45deg);
}
.trail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(110, 223, 241, 0.28);
  border-radius: 12px;
  background: rgba(18, 91, 123, 0.3);
  color: #6edff1;
}
.support-trail small {
  display: block;
  margin-bottom: 5px;
  color: #6edff1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.support-trail strong {
  display: block;
  color: #fff;
  font-size: 15px;
}
.support-trail p {
  margin: 8px 0 0;
  color: #a9c2d1;
  font-size: 12px;
  line-height: 1.58;
}
.support-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}
.support-case {
  position: relative;
  overflow: hidden;
  padding: 29px 27px 27px;
  border: 1px solid rgba(110, 223, 241, 0.18);
  border-radius: 20px;
  background: linear-gradient(
    155deg,
    rgba(16, 54, 80, 0.95),
    rgba(5, 28, 49, 0.95)
  );
}
.support-case:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #21b8e2, #6edff1);
}
.support-case.play-case:before {
  background: linear-gradient(90deg, #ffc33b, #ffda76);
}
.support-case.bet-case:before {
  background: linear-gradient(90deg, #35d39a, #6edff1);
}
.case-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #6edff1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}
.play-case .case-top {
  color: #ffc33b;
}
.bet-case .case-top {
  color: #58dcae;
}
.case-top i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
}
.support-case h3 {
  margin: 18px 0 12px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}
.support-case > p {
  margin: 0;
  color: #b8cbd7;
  font-size: 13px;
  line-height: 1.7;
}
.support-case ul {
  display: grid;
  gap: 9px;
  margin: 20px 0 0;
  padding: 17px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  list-style: none;
}
.support-case li {
  color: #a9c2d1;
  font-size: 11px;
  line-height: 1.5;
}
.support-case li strong {
  color: #fff;
}
.security-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 42px;
  align-items: center;
  margin-top: 22px;
  padding: 37px 40px;
  border: 1px solid rgba(255, 195, 59, 0.22);
  border-radius: 22px;
  background: linear-gradient(
    120deg,
    rgba(8, 35, 58, 0.98),
    rgba(12, 55, 78, 0.92)
  );
}
.security-copy > span {
  color: #ffc33b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.security-copy h3 {
  margin: 8px 0 13px;
  color: #fff;
  font-size: 31px;
}
.security-copy p {
  margin: 0;
  color: #b8cbd7;
  font-size: 13px;
  line-height: 1.72;
}
.security-copy p + p {
  margin-top: 11px;
}
.security-signals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.security-signals > div {
  display: flex;
  gap: 10px;
  min-height: 92px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 13px;
  background: rgba(2, 20, 36, 0.48);
}
.security-signals i {
  margin-top: 2px;
  color: #ffc33b;
}
.security-signals strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 12px;
}
.security-signals span {
  color: #9eb8c8;
  font-size: 10px;
  line-height: 1.45;
}
.support-note {
  display: flex;
  gap: 10px;
  margin: 22px 0 0;
  color: #8faaba;
  font-size: 11px;
  line-height: 1.55;
}
.support-note i {
  margin-top: 3px;
  color: #6edff1;
}
@keyframes supportPulse {
  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}
@media (max-width: 980px) {
  .support-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .support-heading-copy {
    max-width: 760px;
  }
  .support-trail {
    grid-template-columns: 1fr 1fr;
  }
  .support-trail article:nth-child(2) {
    border-right: 0;
  }
  .support-trail article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .support-trail article:nth-child(2):after {
    display: none;
  }
  .support-cases {
    grid-template-columns: 1fr;
  }
  .security-panel {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
@media (max-width: 620px) {
  .account-support {
    padding: 70px 0;
  }
  .support-heading h2 {
    font-size: 40px;
    letter-spacing: -1.5px;
  }
  .support-heading-copy {
    padding-left: 18px;
  }
  .support-console-head strong {
    display: none;
  }
  .support-trail {
    grid-template-columns: 1fr;
  }
  .support-trail article {
    min-height: 0;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .support-trail article:last-child {
    border-bottom: 0;
  }
  .support-trail article:after {
    display: none;
  }
  .support-case {
    padding: 25px 21px;
  }
  .security-panel {
    padding: 28px 22px;
  }
  .security-signals {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .support-console-head strong i {
    animation: none;
  }
}
/* ============================== ACCOUNT SUPPORT END ============================== */

/* ============================== FAQ START ============================== */
.faq {
  position: relative;
  padding: 94px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 8% 14%,
      rgba(31, 154, 201, 0.12),
      transparent 24%
    ),
    linear-gradient(180deg, #f5f9fc, #edf4f8);
}
.faq::before {
  position: absolute;
  top: 34px;
  right: -90px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(8, 117, 197, 0.09);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(8, 117, 197, 0.025),
    0 0 0 86px rgba(8, 117, 197, 0.018);
  content: "";
}
.faq-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.95fr);
  gap: 65px;
  align-items: end;
  margin-bottom: 42px;
}
.faq-heading h2 {
  max-width: 690px;
  margin: 8px 0 0;
  font-size: clamp(37px, 4.2vw, 58px);
  line-height: 1.03;
  letter-spacing: -2px;
}
.faq-heading > p {
  margin: 0;
  padding: 3px 0 3px 26px;
  border-left: 2px solid #ffc33b;
  color: #617687;
  font-size: 15px;
  line-height: 1.72;
}
.faq-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.faq-column {
  display: grid;
  gap: 13px;
}
.faq .faq-column details {
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d5e2ea;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 27px rgba(17, 48, 73, 0.045);
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
.faq .faq-column details:hover {
  transform: translateY(-1px);
  border-color: #b8d7e5;
  box-shadow: 0 15px 35px rgba(17, 48, 73, 0.08);
}
.faq .faq-column details[open] {
  border-color: #86c8dd;
  box-shadow: 0 16px 38px rgba(14, 75, 108, 0.09);
}
.faq .faq-column summary {
  position: relative;
  display: block;
  padding: 21px 58px 21px 21px;
  color: #102641;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}
.faq .faq-column summary::-webkit-details-marker {
  display: none;
}
.faq .faq-column summary::before,
.faq .faq-column summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 15px;
  height: 2px;
  background: #0875c5;
  content: "";
  transition: transform 0.25s ease;
}
.faq .faq-column summary::after {
  transform: rotate(90deg);
}
.faq .faq-column details[open] summary::after {
  transform: rotate(0);
}
.faq .faq-column summary span {
  display: grid;
  grid-template-columns: 27px 1fr;
  gap: 10px;
  align-items: center;
}
.faq .faq-column summary i {
  color: #0875c5;
  font-size: 15px;
  text-align: center;
}
.faq .faq-column details[open] summary i {
  color: #d99500;
}
.faq-answer {
  margin: 0 21px;
  padding: 0 0 21px 37px;
  border-top: 1px solid #e4edf2;
}
.faq .faq-answer p {
  margin: 17px 0 0;
  color: #637788;
  font-size: 12px;
  line-height: 1.68;
}
@media (max-width: 900px) {
  .faq-heading {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .faq-heading > p {
    max-width: 720px;
  }
}
@media (max-width: 720px) {
  .faq {
    padding: 74px 0 82px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-heading h2 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }
  .faq .faq-column summary {
    padding: 19px 52px 19px 17px;
    font-size: 15px;
  }
  .faq-answer {
    margin: 0 17px;
    padding-left: 37px;
  }
}
/* ============================== FAQ END ============================== */

/* ============================== LEGAL PAGES START ============================== */
.legal-page {
  padding-top: 72px;
  background: #edf4f8;
  color: #102641;
}
.legal-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: 72px;
  background: rgba(3, 18, 37, 0.98);
  box-shadow: 0 8px 28px rgba(0, 12, 27, 0.25);
}
.legal-header-inner {
  display: flex;
  height: 72px;
  align-items: center;
  gap: 30px;
}
.legal-home {
  display: block;
  margin-right: auto;
}
.legal-home img {
  display: block;
  width: 245px;
  height: auto;
}
.legal-header nav {
  display: flex;
  gap: 6px;
}
.legal-header nav a {
  padding: 9px 10px;
  border-radius: 7px;
  color: #c8dbe8;
  font-size: 11px;
  font-weight: 800;
  text-decoration: none;
}
.legal-header nav a:hover {
  background: #ffffff0d;
  color: #fff;
}
.legal-hero {
  position: relative;
  padding: 84px 0 72px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(25, 139, 190, 0.3),
      transparent 26%
    ),
    linear-gradient(135deg, #031426, #0b3450);
  color: #fff;
}
.legal-hero::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(109, 222, 240, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(109, 222, 240, 0.04),
    0 0 0 96px rgba(109, 222, 240, 0.025);
  content: "";
}
.legal-hero .wrap {
  position: relative;
  z-index: 1;
}
.legal-hero span {
  color: #6edff1;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.legal-hero h1 {
  max-width: 790px;
  margin: 9px 0 12px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -2.8px;
}
.legal-hero p {
  max-width: 690px;
  margin: 0 0 20px;
  color: #c3d5df;
  font-size: 16px;
}
.legal-hero small {
  display: inline-block;
  padding: 7px 10px;
  border: 1px solid rgba(110, 223, 241, 0.28);
  border-radius: 18px;
  color: #a9c5d4;
  font-size: 9px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  padding-top: 54px;
  padding-bottom: 70px;
}
.legal-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 4px;
  padding: 20px;
  border: 1px solid #d3e1e9;
  border-radius: 18px;
  background: #fff;
}
.legal-aside strong {
  margin: 0 9px 10px;
  color: #0875c5;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.legal-aside a {
  padding: 9px;
  border-radius: 8px;
  color: #597082;
  font-size: 11px;
  text-decoration: none;
}
.legal-aside a:hover,
.legal-aside a[aria-current="page"] {
  background: #eaf5fa;
  color: #075b8a;
  font-weight: 800;
}
.legal-article {
  display: grid;
  gap: 15px;
}
.legal-article section {
  padding: 30px 34px;
  border: 1px solid #d4e2ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 44, 67, 0.035);
}
.legal-article h2 {
  margin: 0 0 11px;
  font-size: 24px;
  line-height: 1.18;
}
.legal-article p,
.legal-article li {
  color: #607586;
  font-size: 13px;
  line-height: 1.72;
}
.legal-article p {
  margin: 0;
}
.legal-article ul {
  margin: 0;
  padding-left: 20px;
  columns: 2;
  column-gap: 35px;
}
.legal-footer {
  padding: 42px 0 20px;
  background: #031225;
  color: #a9c2d1;
}
.legal-footer > .wrap:first-child {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 50px;
}
.legal-footer img {
  display: block;
  width: 210px;
  height: auto;
}
.legal-footer p {
  max-width: 400px;
  margin: 12px 0 0;
  font-size: 11px;
}
.legal-footer nav {
  display: grid;
  align-content: start;
  gap: 7px;
}
.legal-footer a {
  color: #c2d6e2;
  font-size: 10px;
  text-decoration: none;
}
.legal-footer a:hover {
  color: #fff;
}
.legal-footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #ffffff17;
  font-size: 9px;
}
@media (max-width: 850px) {
  .legal-header nav {
    display: none;
  }
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .legal-aside {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-aside strong {
    grid-column: 1 / -1;
  }
  .legal-footer > .wrap:first-child {
    grid-template-columns: 1fr 1fr;
  }
  .legal-footer > .wrap:first-child > div {
    grid-column: 1 / -1;
  }
}
@media (max-width: 540px) {
  .legal-home img {
    width: 205px;
  }
  .legal-hero {
    padding: 65px 0 58px;
  }
  .legal-hero h1 {
    font-size: 47px;
  }
  .legal-article section {
    padding: 24px 21px;
  }
  .legal-article ul {
    columns: 1;
  }
  .legal-footer > .wrap:first-child {
    grid-template-columns: 1fr;
  }
  .legal-footer > .wrap:first-child > div {
    grid-column: auto;
  }
}
/* ============================== LEGAL PAGES END ============================== */
