: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 a,
.menu-button {
  border: 0;
  background: transparent;
  color: #d9e9f4;
  font: 700 13px Arial;
  padding: 12px 7px;
  border-radius: 7px;
  cursor: pointer;
  text-decoration: none;
}
.nav a:hover,
.nav a:focus-visible {
  background: #ffffff13;
  color: #fff;
}
.menu-button {
  display: none;
  font-size: 21px;
}
.menu-toggle {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.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;
}

/* ============================== LOLO ABOUT EXPANDED START ============================== */
.about-intro {
  margin-bottom: 58px;
}
.about-lead {
  font-size: 18px !important;
  color: #28435e !important;
}
.about-visual {
  overflow: visible;
}
.about-image {
  object-position: center;
}
.about-visual-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
  max-width: calc(100% - 32px);
}
.about-visual-note span {
  padding: 7px 11px;
  border: 1px solid rgba(118, 226, 249, 0.28);
  border-radius: 999px;
  background: rgba(4, 21, 45, 0.9);
  color: #eaf9ff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(0, 11, 29, 0.28);
  backdrop-filter: blur(8px);
}
.about-platform {
  padding: 54px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 8%, rgba(70, 221, 255, 0.15), transparent 30%),
    linear-gradient(135deg, #06172f, #0a2b50);
  color: #fff;
  box-shadow: 0 26px 60px rgba(6, 23, 47, 0.2);
}
.about-platform-head {
  margin-bottom: 30px;
}
.about-platform-head .label {
  color: #76e2f9;
}
.about-platform-head h3 {
  margin: 8px 0 13px;
  font-size: clamp(29px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -1.4px;
}
.about-platform-head p {
  margin: 0;
  color: #c8dce9;
  font-size: 16px;
}
.about-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.about-category-card {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.about-category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(118, 226, 249, 0.4);
  background: rgba(255, 255, 255, 0.095);
}
.about-category-card-wide {
  grid-column: 1 / -1;
}
.about-category-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 200, 61, 0.32);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 200, 61, 0.18), rgba(8, 117, 197, 0.18));
  color: var(--yellow);
  font-size: 25px;
  box-shadow: 0 12px 24px rgba(0, 9, 25, 0.22);
}
.about-category-copy h3 {
  margin: 1px 0 8px;
  font-size: 21px;
  line-height: 1.2;
}
.about-category-copy p {
  margin: 0;
  color: #c8dce9;
  font-size: 14px;
}
.about-game-examples {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 14px;
}
.about-game-examples span {
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(70, 221, 255, 0.1);
  color: #aeefff;
  font-size: 11px;
  font-weight: 800;
}
.about-discovery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 24px;
  margin-top: 28px;
}
.about-discovery-copy,
.about-provider-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(19, 47, 75, 0.08);
}
.about-discovery-copy h3,
.about-provider-panel h3 {
  margin: 8px 0 12px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.8px;
}
.about-discovery-copy > p,
.about-provider-panel > p {
  margin: 0;
  color: var(--muted);
}
.about-discovery-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.about-discovery-item {
  display: grid;
  grid-template-columns: 45px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 15px;
  border-radius: 13px;
  background: var(--pale);
}
.about-discovery-item > i {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #e1f6fd;
  color: var(--blue);
  font-size: 18px;
}
.about-discovery-item strong,
.about-discovery-item span {
  display: block;
}
.about-discovery-item strong {
  color: var(--ink);
  font-size: 15px;
}
.about-discovery-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.about-provider-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(70, 221, 255, 0.17), transparent 38%),
    #fff;
}
.about-provider-kicker {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.about-provider-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 20px;
}
.about-provider-cloud span {
  padding: 8px 11px;
  border: 1px solid #cfe3ef;
  border-radius: 9px;
  background: #f5fafc;
  color: #173b5d;
  font-size: 12px;
  font-weight: 800;
}
.about-experience {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.about-experience-card {
  padding: 25px 21px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(19, 47, 75, 0.06);
}
.about-experience-card > i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #e2f7fd, #edf3ff);
  color: var(--blue);
  font-size: 20px;
}
.about-experience-card h3 {
  margin: 16px 0 8px;
  font-size: 17px;
  line-height: 1.25;
}
.about-experience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .about-platform {
    padding: 38px;
  }
  .about-discovery {
    grid-template-columns: 1fr;
  }
  .about-experience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 700px) {
  .about-intro {
    margin-bottom: 42px;
  }
  .about-platform {
    padding: 28px 20px;
    border-radius: 20px;
  }
  .about-category-grid {
    grid-template-columns: 1fr;
  }
  .about-category-card-wide {
    grid-column: auto;
  }
  .about-discovery-copy,
  .about-provider-panel {
    padding: 26px 21px;
  }
}
@media (max-width: 540px) {
  .about-category-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 16px;
  }
  .about-category-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    font-size: 21px;
  }
  .about-experience {
    grid-template-columns: 1fr;
  }
  .about-visual-note {
    display: none;
  }
}
/* ============================== LOLO ABOUT EXPANDED END ============================== */
@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);
}
/* ============================== ACCOUNT START ============================== */
.account-section{position:relative;overflow:hidden;padding:110px 0;background:linear-gradient(rgba(11,50,77,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(11,50,77,.035) 1px,transparent 1px),#f7fbfd;background-size:58px 58px;color:#102641}
.account-section::before{content:"";position:absolute;width:520px;height:520px;right:-260px;top:-260px;border:1px solid rgba(14,146,199,.15);border-radius:50%;box-shadow:0 0 0 70px rgba(14,146,199,.025),0 0 0 140px rgba(14,146,199,.02)}
.account-heading{position:relative;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(380px,.8fr);gap:70px;align-items:end;margin-bottom:45px}
.account-heading .label,.account-card-title .label,.account-upload .label{color:#087fbd}
.account-heading h2{max-width:880px;margin:10px 0 0;font-size:clamp(43px,5vw,72px);line-height:.98;letter-spacing:-2.7px}
.account-heading>p{margin:0;padding-left:27px;border-left:3px solid #ffc33b;color:#5e7385;font-size:16px;line-height:1.75}
.account-path{position:relative;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px;margin-bottom:20px}
.account-path article{min-height:245px;padding:27px;border:1px solid #cfdee7;border-radius:22px;background:rgba(255,255,255,.94);box-shadow:0 12px 30px rgba(8,48,73,.055)}
.account-icon{display:grid;width:54px;height:54px;margin-bottom:35px;place-items:center;border-radius:16px;background:#e3f4fa;color:#0789c5;font-size:19px}
.account-path article:nth-child(even) .account-icon{background:#fff2ce;color:#b87500}
.account-path h3{margin:0 0 11px;font-size:20px;line-height:1.15}.account-path p{margin:0;color:#607687;font-size:13px;line-height:1.68}
.account-details{position:relative;display:grid;grid-template-columns:minmax(0,1.5fr) minmax(330px,.72fr);gap:20px}
.account-documents,.account-upload{border-radius:28px}.account-documents{padding:38px;background:linear-gradient(145deg,#061a31,#0a3853);color:#fff}
.account-card-title{display:flex;gap:18px;align-items:center;margin-bottom:30px}.account-card-title>span{display:grid;width:58px;height:58px;flex:0 0 58px;place-items:center;border:1px solid rgba(112,226,243,.3);border-radius:17px;color:#70e2f3;font-size:20px}.account-card-title h3{margin:7px 0 0;font-size:30px;line-height:1.05}
.document-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px}.document-grid>div{padding:24px;border:1px solid rgba(130,199,219,.18);border-radius:18px;background:rgba(255,255,255,.055)}.document-grid>div>i{color:#ffc33b;font-size:19px}.document-grid h4{margin:18px 0 9px;font-size:17px}.document-grid p{margin:0;color:#b8cbd7;font-size:12px;line-height:1.65}
.account-upload{padding:38px;border:1px solid #d1e0e8;background:#fff;box-shadow:0 18px 40px rgba(8,48,73,.07)}.account-upload h3{margin:9px 0 25px;font-size:29px;line-height:1.08}.account-upload ul{display:grid;gap:16px;margin:0;padding:0;list-style:none}.account-upload li{display:flex;gap:12px;color:#5d7283;font-size:12px;line-height:1.58}.account-upload li i{display:grid;width:23px;height:23px;flex:0 0 23px;place-items:center;border-radius:50%;background:#e4f5f9;color:#0789c5;font-size:9px}
.account-note{display:flex;gap:12px;margin:25px 0 0;padding-top:22px;border-top:1px solid #dbe7ed;color:#284a61;font-size:11px;font-weight:750;line-height:1.55}.account-note i{color:#e8a90b;margin-top:2px}
@media(max-width:1100px){.account-path{grid-template-columns:repeat(2,minmax(0,1fr))}.account-details{grid-template-columns:1fr}}
@media(max-width:820px){.account-section{padding:80px 0}.account-heading{grid-template-columns:1fr;gap:25px}.document-grid{grid-template-columns:1fr}}
@media(max-width:560px){.account-heading h2{font-size:40px;letter-spacing:-1.6px}.account-heading>p{padding-left:18px;font-size:14px}.account-path{grid-template-columns:1fr}.account-path article{min-height:0}.account-documents,.account-upload{padding:27px}.account-card-title h3,.account-upload h3{font-size:25px}}
/* ============================== ACCOUNT END ============================== */
/* ============================== FAQ AND FOOTER START ============================== */
.lolo-faq {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  background:
    radial-gradient(circle at 92% 14%, rgba(31, 172, 217, 0.13), transparent 25%),
    linear-gradient(180deg, #f8fbfd 0%, #edf5f9 100%);
  color: #102641;
}
.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 44px;
}
.faq-heading .label { color: #0878bd; }
.faq-heading h2 {
  max-width: 790px;
  margin: 10px 0 0;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 1;
  letter-spacing: -2.5px;
}
.faq-heading > p {
  margin: 0;
  padding: 5px 0 5px 28px;
  border-left: 3px solid #ffc33b;
  color: #5f7485;
  font-size: 16px;
  line-height: 1.72;
}
.faq-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  overflow: hidden;
  border: 1px solid #cfdee7;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 9px 25px rgba(15, 48, 69, 0.04);
}
.faq-list summary {
  display: flex;
  min-height: 76px;
  padding: 22px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #102641;
  font-size: 16px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span {
  display: flex;
  align-items: center;
  gap: 15px;
}
.faq-list summary span i {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: #e7f5fa;
  color: #0786c5;
}
.faq-list summary > i {
  color: #ffc33b;
  transition: transform 0.25s ease;
}
.faq-list details[open] summary > i { transform: rotate(45deg); }
.faq-list details p {
  margin: 0;
  padding: 0 25px 24px 78px;
  color: #617788;
  font-size: 13px;
  line-height: 1.7;
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 0 0 28px;
  background:
    radial-gradient(circle at 12% 32%, rgba(26, 159, 205, 0.13), transparent 27%),
    linear-gradient(145deg, #020e1e, #061a31 58%, #082c42);
  color: #b9cddd;
}
.site-footer::after {
  position: absolute;
  right: -240px;
  bottom: -430px;
  width: 720px;
  height: 720px;
  border: 1px solid rgba(112, 226, 243, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.site-footer .wrap { position: relative; z-index: 1; }
.footer-feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(255, 195, 59, 0.27);
  border-top: 0;
  border-radius: 0 0 24px 24px;
  background: rgba(12, 49, 72, 0.8);
}
.footer-feature-band > div {
  display: grid;
  grid-template-columns: 49px 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px 25px;
}
.footer-feature-band > div + div { border-left: 1px solid rgba(126, 200, 221, 0.17); }
.footer-feature-icon {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 195, 59, 0.14);
  color: #ffc33b;
}
.footer-feature-band span:last-child {
  color: #9fb9c8;
  font-size: 10px;
  line-height: 1.45;
}
.footer-feature-band strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: 48px;
  padding: 62px 0 45px;
}
.footer-home { display: inline-block; }
.footer-logo { display: block; width: 255px; height: auto; }
.legal-copy {
  max-width: 410px;
  margin: 20px 0 0;
  color: #9fb8c8;
  font-size: 12px;
  line-height: 1.7;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.footer-badges span {
  padding: 7px 10px;
  border: 1px solid rgba(126, 200, 221, 0.18);
  border-radius: 20px;
  background: rgba(11, 48, 70, 0.45);
  color: #aec6d4;
  font-size: 9px;
}
.footer-badges i,
.footer-badges strong { color: #ffc33b; }
.footer-nav {
  display: grid;
  align-content: start;
  gap: 9px;
}
.footer-nav h2 {
  margin: 5px 0 12px;
  color: #70e2f3;
  font-size: 10px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}
.footer-nav a {
  color: #c4d7e3;
  font-size: 11px;
  line-height: 1.35;
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-nav a:hover {
  color: #fff;
  transform: translateX(3px);
}
.legal-links a { color: #d8e6ee; }
.footer-responsibility {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 17px;
  align-items: center;
  padding: 20px 23px;
  border: 1px solid rgba(255, 195, 59, 0.24);
  border-radius: 18px;
  background: rgba(4, 24, 42, 0.67);
}
.footer-responsibility > i {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 195, 59, 0.14);
  color: #ffc33b;
}
.footer-responsibility p {
  margin: 0;
  color: #9fb7c6;
  font-size: 10px;
  line-height: 1.55;
}
.footer-responsibility strong { color: #fff; }
.footer-bottom {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 21px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #7894a5;
  font-size: 9px;
}
@media (max-width: 1050px) {
  .faq-heading { grid-template-columns: 1fr; }
  .faq-heading { gap: 24px; }
  .footer-feature-band { grid-template-columns: 1fr; }
  .footer-feature-band > div + div {
    border-top: 1px solid rgba(126, 200, 221, 0.17);
    border-left: 0;
  }
  .footer-inner { grid-template-columns: 1.3fr repeat(2, 0.7fr); }
  .footer-inner .legal-links { grid-column: 2 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner .legal-links h2 { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .lolo-faq { padding: 76px 0; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-heading h2 { font-size: 39px; letter-spacing: -1.5px; }
  .faq-heading > p { padding-left: 20px; font-size: 14px; }
  .faq-list summary { padding: 19px; font-size: 14px; }
  .faq-list details p { padding: 0 20px 21px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 34px 24px; }
  .footer-brand-block { grid-column: 1 / -1; }
  .footer-inner .legal-links { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}
@media (max-width: 480px) {
  .footer-inner,
  .footer-inner .legal-links { grid-template-columns: 1fr; }
  .footer-responsibility { grid-template-columns: 1fr; }
}
 /* ============================== FAQ AND FOOTER END ============================== */
@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;
  }
  .menu-toggle:checked ~ .nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .nav a {
    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;
  }
}
/* ============================== LOLO BONUSES START ============================== */
.bonus-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 8% 16%, rgba(70, 221, 255, 0.14), transparent 25%),
    radial-gradient(circle at 92% 48%, rgba(255, 200, 61, 0.12), transparent 27%),
    linear-gradient(145deg, #031126 0%, #061c39 48%, #082d50 100%);
  color: #fff;
}
.bonus-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
  pointer-events: none;
}
.bonus-section .wrap {
  position: relative;
  z-index: 2;
  padding-top: 82px;
  padding-bottom: 82px;
}
.bonus-section .label,
.bonus-eyebrow {
  color: #76e2f9;
}
.bonus-heading {
  max-width: 890px;
  margin-bottom: 36px;
}
.bonus-heading h2 {
  color: #fff;
}
.bonus-heading p {
  color: #bdd2e0 !important;
}
.bonus-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(118, 226, 249, 0.13);
  border-radius: 50%;
  pointer-events: none;
}
.bonus-orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 22px rgba(255, 200, 61, 0.85);
}
.bonus-orbit-one {
  top: 170px;
  right: -260px;
  width: 600px;
  height: 600px;
  animation: loloBonusOrbit 18s linear infinite;
}
.bonus-orbit-two {
  left: -240px;
  bottom: 300px;
  width: 480px;
  height: 480px;
  animation: loloBonusOrbit 24s linear infinite reverse;
}
.bonus-ticker {
  position: relative;
  z-index: 3;
  width: 100%;
  overflow: hidden;
  border-block: 1px solid rgba(118, 226, 249, 0.18);
  background: rgba(3, 15, 34, 0.94);
}
.bonus-ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: loloBonusTicker 34s linear infinite;
}
.bonus-ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 27px;
  color: #d8eaf5;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  white-space: nowrap;
}
.bonus-ticker-track span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 26px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 12px rgba(255, 200, 61, 0.7);
}
.bonus-ticker-track i {
  color: #76e2f9;
}
.bonus-ticker-reverse .bonus-ticker-track {
  animation-direction: reverse;
  animation-duration: 39s;
}
.bonus-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.bonus-feature {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 385px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 55px rgba(0, 8, 25, 0.3);
  backdrop-filter: blur(12px);
}
.bonus-feature::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
}
.bonus-feature-welcome::before {
  background: linear-gradient(145deg, rgba(8, 117, 197, 0.3), transparent 58%);
}
.bonus-feature-crypto::before {
  background: linear-gradient(145deg, rgba(255, 200, 61, 0.19), transparent 58%);
}
.bonus-feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.bonus-icon,
.bonus-extra-icon,
.bonus-sports-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: none;
  border: 1px solid rgba(118, 226, 249, 0.3);
  border-radius: 17px;
  background: linear-gradient(145deg, rgba(70, 221, 255, 0.18), rgba(255, 200, 61, 0.13));
  color: var(--yellow);
  font-size: 23px;
  box-shadow: 0 12px 25px rgba(0, 8, 24, 0.24);
}
.bonus-badge {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(3, 16, 36, 0.55);
  color: #d6e8f3;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.bonus-feature-copy {
  margin-top: 30px;
}
.bonus-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}
.bonus-feature h3 {
  margin: 8px 0 15px;
  font-size: clamp(26px, 3.4vw, 43px);
  line-height: 1.05;
  letter-spacing: -1.2px;
}
.bonus-feature h3 strong,
.bonus-feature h3 small {
  display: block;
}
.bonus-feature h3 strong {
  color: var(--yellow);
}
.bonus-feature h3 small {
  margin-top: 7px;
  color: #fff;
  font-size: 0.55em;
  letter-spacing: 0;
}
.bonus-feature p {
  margin: 0;
  color: #b9cfdd;
  font-size: 14px;
}
.bonus-feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}
.bonus-feature-tags span {
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(118, 226, 249, 0.1);
  color: #aeefff;
  font-size: 10px;
  font-weight: 900;
}
.bonus-feature-glow {
  position: absolute;
  z-index: -1;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(70, 221, 255, 0.14);
  filter: blur(12px);
  animation: loloBonusGlow 5s ease-in-out infinite;
}
.bonus-feature-crypto .bonus-feature-glow {
  background: rgba(255, 200, 61, 0.14);
  animation-delay: -2.5s;
}
.bonus-weekly {
  margin-top: 68px;
}
.bonus-block-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  gap: 50px;
  align-items: end;
  margin-bottom: 28px;
}
.bonus-block-heading h3 {
  margin: 8px 0 0;
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.08;
  letter-spacing: -1.3px;
}
.bonus-block-heading > p {
  margin: 0;
  padding-left: 22px;
  border-left: 2px solid var(--yellow);
  color: #b9cfdd;
  font-size: 14px;
}
.bonus-week-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}
.bonus-day {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(3, 18, 40, 0.72);
}
.bonus-day::after {
  content: "";
  position: absolute;
  inset: auto 20px 0;
  height: 3px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, #46ddff, #ffc83d);
  transform-origin: left;
  animation: loloBonusLine 5.5s ease-in-out infinite;
}
.bonus-day:nth-child(2)::after { animation-delay: -0.7s; }
.bonus-day:nth-child(3)::after { animation-delay: -1.4s; }
.bonus-day:nth-child(4)::after { animation-delay: -2.1s; }
.bonus-day:nth-child(5)::after { animation-delay: -2.8s; }
.bonus-day:nth-child(6)::after { animation-delay: -3.5s; }
.bonus-day:nth-child(7)::after { animation-delay: -4.2s; }
.bonus-day:last-child {
  grid-column: span 2;
}
.bonus-day-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 23px;
}
.bonus-day-head span {
  color: #76e2f9;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.bonus-day-head i {
  color: var(--yellow);
  font-size: 19px;
}
.bonus-day > strong {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}
.bonus-day > p {
  margin: 10px 0 18px;
  color: #a9c1d0;
  font-size: 12px;
}
.bonus-day-type {
  display: inline-block;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(70, 221, 255, 0.09);
  color: #9beaff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.bonus-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 58px;
}
.bonus-extra {
  padding: 27px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.055);
}
.bonus-extra-copy > span {
  display: block;
  margin-top: 19px;
  color: #76e2f9;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.bonus-extra h3 {
  margin: 7px 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.bonus-extra p {
  margin: 0;
  color: #abc3d2;
  font-size: 12px;
}
.bonus-meter {
  height: 5px;
  margin-top: 22px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.08);
}
.bonus-meter span {
  display: block;
  width: 76%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #46ddff, #ffc83d);
  transform-origin: left;
  animation: loloBonusMeter 4.8s ease-in-out infinite;
}
.bonus-sports-strip,
.bonus-activation {
  margin-top: 28px;
  padding: 34px;
  border-radius: 22px;
}
.bonus-sports-strip {
  border: 1px solid rgba(255, 200, 61, 0.2);
  background: linear-gradient(130deg, rgba(255, 200, 61, 0.1), rgba(8, 117, 197, 0.13));
}
.bonus-sports-intro {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 25px;
}
.bonus-sports-intro h3,
.bonus-activation-copy h3 {
  margin: 5px 0 0;
  font-size: 27px;
}
.bonus-sports-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.bonus-sports-features > div {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  column-gap: 11px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(3, 18, 39, 0.47);
}
.bonus-sports-features i {
  grid-row: span 2;
  color: var(--yellow);
  font-size: 18px;
  text-align: center;
}
.bonus-sports-features strong,
.bonus-sports-features span {
  display: block;
}
.bonus-sports-features strong { font-size: 13px; }
.bonus-sports-features span { color: #a7c0d0; font-size: 10px; }
.bonus-activation {
  border: 1px solid rgba(118, 226, 249, 0.17);
  background: #03152d;
}
.bonus-activation-copy {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  max-width: 830px;
}
.bonus-activation-copy p {
  margin: 9px 0 0;
  color: #a9c1d0;
  font-size: 13px;
}
.bonus-activation-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 13px;
  align-items: center;
  margin-top: 28px;
}
.bonus-activation-flow > div {
  min-height: 135px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}
.bonus-activation-flow > div > i { color: var(--yellow); font-size: 18px; }
.bonus-activation-flow strong,
.bonus-activation-flow span { display: block; }
.bonus-activation-flow strong { margin-top: 10px; font-size: 14px; }
.bonus-activation-flow span { margin-top: 4px; color: #9fb9ca; font-size: 10px; line-height: 1.45; }
.bonus-flow-arrow { color: #5a829e; font-size: 13px; }
.bonus-terms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}
.bonus-terms > div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
}
.bonus-terms i { color: #76e2f9; font-size: 17px; }
.bonus-terms strong,
.bonus-terms span { display: block; }
.bonus-terms strong { margin: 10px 0 5px; color: #fff; font-size: 12px; }
.bonus-terms span { color: #93adbe; font-size: 10px; line-height: 1.5; }
.bonus-caution { margin: 15px 0 0; color: #839fb2; font-size: 10px; }
.bonus-caution i { margin-right: 6px; color: var(--yellow); }
@keyframes loloBonusTicker { to { transform: translateX(-50%); } }
@keyframes loloBonusOrbit { to { transform: rotate(360deg); } }
@keyframes loloBonusGlow {
  0%, 100% { transform: scale(0.85); opacity: 0.55; }
  50% { transform: scale(1.12); opacity: 1; }
}
@keyframes loloBonusLine {
  0%, 100% { transform: scaleX(0.2); opacity: 0.45; }
  50% { transform: scaleX(1); opacity: 1; }
}
@keyframes loloBonusMeter {
  0%, 100% { transform: scaleX(0.2); }
  50% { transform: scaleX(1); }
}
@media (max-width: 980px) {
  .bonus-week-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-day:last-child { grid-column: auto; }
  .bonus-extra-grid { grid-template-columns: 1fr 1fr; }
  .bonus-extra:last-child { grid-column: 1 / -1; }
  .bonus-sports-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-activation-flow { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bonus-flow-arrow { display: none; }
}
@media (max-width: 720px) {
  .bonus-section .wrap { padding-top: 64px; padding-bottom: 64px; }
  .bonus-feature-grid,
  .bonus-block-heading,
  .bonus-extra-grid { grid-template-columns: 1fr; }
  .bonus-extra:last-child { grid-column: auto; }
  .bonus-block-heading { gap: 18px; }
  .bonus-block-heading > p { padding-left: 16px; }
  .bonus-feature { min-height: 0; padding: 27px 22px; }
  .bonus-sports-strip,
  .bonus-activation { padding: 26px 21px; }
  .bonus-terms { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .bonus-week-grid,
  .bonus-sports-features,
  .bonus-activation-flow,
  .bonus-terms { grid-template-columns: 1fr; }
  .bonus-day { min-height: 0; }
  .bonus-sports-intro { align-items: flex-start; }
  .bonus-sports-intro h3,
  .bonus-activation-copy h3 { font-size: 22px; }
  .bonus-activation-copy { grid-template-columns: 1fr; }
  .bonus-ticker-track span { padding-inline: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .bonus-ticker-track,
  .bonus-orbit,
  .bonus-feature-glow,
  .bonus-day::after,
  .bonus-meter span { animation: none; }
  .bonus-day::after,
  .bonus-meter span { transform: scaleX(1); }
}
/* ============================== LOLO BONUSES END ============================== */
.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/lolo/sweet-bonanza-candyland.jpg")
    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 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image: url("../img/hero/lolo-casino-sports-hero.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(4, 21, 45, 0.98) 0%,
    rgba(4, 21, 45, 0.9) 28%,
    rgba(4, 21, 45, 0.48) 51%,
    rgba(4, 21, 45, 0.08) 72%
  );
}
@media (max-width: 850px) {
  .hero {
    background-position: 63% center;
  }
  .hero:before {
    z-index: -1;
    background: linear-gradient(90deg, #04152df5 0, #04152dd4 58%, #04152d73);
  }
}
@media (max-width: 540px) {
  .hero {
    background-position: 68% center;
  }
  .hero:before {
    background: #04152de0;
  }
}
/* ============================== 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: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.mobile-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 28px 34px rgba(8, 39, 63, 0.24));
}
.mobile-visual:after {
  display: none;
}
.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 ============================== */

/* ============================== LOLO VIP START ============================== */
.lolo-vip {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 193, 56, 0.17), transparent 27%),
    radial-gradient(circle at 92% 88%, rgba(59, 208, 234, 0.13), transparent 29%),
    linear-gradient(145deg, #06172b 0%, #09233b 54%, #0b3148 100%);
  color: #fff;
}
.lolo-vip::before,
.lolo-vip::after {
  position: absolute;
  border: 1px solid rgba(255, 196, 61, 0.15);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.lolo-vip::before {
  top: -290px;
  left: -180px;
  width: 620px;
  height: 620px;
}
.lolo-vip::after {
  right: -230px;
  bottom: -360px;
  width: 760px;
  height: 760px;
}
.lolo-vip .wrap {
  position: relative;
  z-index: 1;
}
.vip-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: 74px;
  align-items: end;
  margin-bottom: 48px;
}
.vip-heading .label,
.vip-path .label {
  color: #70e2f3;
}
.vip-heading h2 {
  max-width: 760px;
  margin: 11px 0 0;
  font-size: clamp(42px, 4.9vw, 72px);
  line-height: 0.98;
  letter-spacing: -2.8px;
}
.vip-heading > p {
  margin: 0;
  padding: 7px 0 7px 29px;
  border-left: 3px solid #ffc33b;
  color: #c1d3df;
  font-size: 17px;
  line-height: 1.75;
}
.vip-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.vip-feature {
  position: relative;
  min-height: 315px;
  padding: 35px 36px 34px 130px;
  overflow: hidden;
  border: 1px solid rgba(126, 200, 221, 0.24);
  border-radius: 28px;
  background: linear-gradient(140deg, rgba(19, 58, 84, 0.94), rgba(5, 27, 47, 0.96));
  box-shadow: 0 22px 55px rgba(0, 7, 19, 0.2);
}
.vip-feature::after {
  position: absolute;
  right: -55px;
  bottom: -80px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(112, 226, 243, 0.11);
  border-radius: 50%;
  content: "";
}
.vip-feature-icon {
  position: absolute;
  top: 36px;
  left: 35px;
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(255, 195, 59, 0.5);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 195, 59, 0.2), rgba(112, 226, 243, 0.12));
  color: #ffc33b;
  font-size: 25px;
  box-shadow: 0 14px 32px rgba(0, 7, 19, 0.22);
}
.vip-feature-label {
  color: #70e2f3;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.vip-feature h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 10px 0 15px;
  font-size: 28px;
  line-height: 1.12;
}
.vip-feature p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #b8cbd7;
  font-size: 15px;
  line-height: 1.72;
}
.vip-feature--manager,
.vip-feature--offers {
  background: linear-gradient(140deg, rgba(21, 67, 94, 0.96), rgba(7, 32, 54, 0.97));
}
.vip-path {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.55fr);
  gap: 40px;
  margin-top: 22px;
  padding: 39px;
  border: 1px solid rgba(255, 195, 59, 0.28);
  border-radius: 28px;
  background: rgba(3, 20, 37, 0.68);
}
.vip-path-intro h3 {
  margin: 9px 0 13px;
  font-size: 32px;
  line-height: 1.08;
}
.vip-path-intro p {
  margin: 0;
  color: #b2c7d4;
  font-size: 14px;
  line-height: 1.7;
}
.vip-path-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.vip-path-steps article {
  position: relative;
  padding: 24px 21px;
  border: 1px solid rgba(126, 200, 221, 0.2);
  border-radius: 20px;
  background: rgba(18, 57, 82, 0.58);
}
.vip-path-steps article > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 13px;
  background: #ffc33b;
  color: #071a2e;
  font-size: 16px;
}
.vip-path-steps h4 {
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.2;
}
.vip-path-steps p {
  margin: 0;
  color: #a9c1cf;
  font-size: 12px;
  line-height: 1.6;
}
.vip-clarity {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.5fr);
  gap: 28px;
  align-items: center;
  margin-top: 22px;
  padding: 25px 29px;
  border: 1px solid rgba(112, 226, 243, 0.25);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(19, 63, 88, 0.84), rgba(7, 30, 50, 0.84));
}
.vip-clarity-title {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  color: #a9c0cf;
  font-size: 12px;
  line-height: 1.45;
}
.vip-clarity-title > i {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  background: rgba(255, 195, 59, 0.16);
  color: #ffc33b;
  font-size: 19px;
}
.vip-clarity-title strong {
  display: block;
  margin-bottom: 2px;
  color: #fff;
  font-size: 16px;
}
.vip-clarity-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}
.vip-clarity-points span {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: #b9cdd8;
  font-size: 11px;
  line-height: 1.45;
}
.vip-clarity-points i {
  margin-top: 2px;
  color: #70e2f3;
}
@media (max-width: 1050px) {
  .vip-heading,
  .vip-path,
  .vip-clarity {
    grid-template-columns: 1fr;
  }
  .vip-heading {
    gap: 26px;
  }
  .vip-heading > p {
    max-width: 820px;
  }
}
@media (max-width: 760px) {
  .lolo-vip {
    padding: 76px 0;
  }
  .vip-heading h2 {
    font-size: 40px;
    letter-spacing: -1.7px;
  }
  .vip-heading > p {
    padding-left: 20px;
    font-size: 15px;
  }
  .vip-feature-grid,
  .vip-path-steps,
  .vip-clarity-points {
    grid-template-columns: 1fr;
  }
  .vip-feature {
    min-height: 0;
    padding: 28px;
  }
  .vip-feature-icon {
    position: static;
    margin-bottom: 22px;
  }
  .vip-path {
    padding: 27px;
  }
  .vip-clarity {
    padding: 23px;
  }
}
/* ============================== LOLO VIP END ============================== */

/* Legacy onboarding styles removed. */

/* ============================== 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 ============================== */

/* ============================== 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-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 55px;
  align-items: center;
}
.legal-hero-mark {
  display: grid;
  width: 150px;
  height: 150px;
  place-items: center;
  border: 1px solid rgba(255, 195, 59, 0.38);
  border-radius: 40px;
  background: linear-gradient(145deg, rgba(255, 195, 59, 0.18), rgba(112, 226, 243, 0.1));
  color: #ffc33b;
  font-size: 55px;
  transform: rotate(5deg);
}
.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-aside .legal-back {
  margin-top: 11px;
  padding-top: 15px;
  border-top: 1px solid #dce7ed;
  color: #0878bd;
  font-weight: 800;
}
.legal-aside .legal-back i { margin-right: 6px; }
.legal-article {
  display: grid;
  gap: 15px;
}
.legal-article section {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 20px;
  padding: 30px 34px;
  border: 1px solid #d4e2ea;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(12, 44, 67, 0.035);
}
.legal-section-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 15px;
  background: #e8f5fa;
  color: #0786c5;
  font-size: 18px;
}
.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 nav strong {
  margin-bottom: 4px;
  color: #70e2f3;
  font-size: 9px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.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;
  }
  .legal-hero-grid { grid-template-columns: 1fr; }
  .legal-hero-mark { display: none; }
}
@media (max-width: 540px) {
  .legal-home img {
    width: 205px;
  }
  .legal-hero {
    padding: 65px 0 58px;
  }
  .legal-hero h1 {
    font-size: 47px;
  }
  .legal-article section {
    grid-template-columns: 1fr;
    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 ============================== */

/* Lolo payments */
.lolo-payments {
  padding: 112px 0;
  color: #102642;
  background:
    radial-gradient(circle at 8% 8%, rgba(34, 181, 226, .12), transparent 28%),
    linear-gradient(180deg, #f8fbfe 0%, #eef5f9 100%);
}
.lolo-payments .label { color: #0878bd; }
.lolo-payments__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: 76px;
  align-items: end;
  margin-bottom: 34px;
}
.lolo-payments__heading h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.lolo-payments__heading p,
.lolo-payments__group-copy {
  color: #597086;
  font-size: 18px;
  line-height: 1.75;
}
.lolo-payments__heading p + p { margin-top: 14px; }
.lolo-payments__availability {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
  padding: 18px 22px;
  border: 1px solid #bfdae7;
  border-radius: 18px;
  color: #33556f;
  background: rgba(255,255,255,.82);
}
.lolo-payments__availability i { color: #0aa6d6; font-size: 22px; }
.lolo-payments__availability strong { color: #102642; margin-right: 8px; }
.lolo-payments__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lolo-payments__group {
  padding: 34px;
  border: 1px solid #c8dce8;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(15, 48, 78, .09);
}
.lolo-payments__group > header { display: flex; gap: 17px; align-items: center; margin-bottom: 18px; }
.lolo-payments__group > header > div > span {
  color: #0983bf; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
}
.lolo-payments__group h3 { margin: 3px 0 0; font-size: 31px; }
.lolo-payments__group-icon {
  display: grid; place-items: center; width: 58px; height: 58px; flex: 0 0 58px;
  border-radius: 17px; color: #061b34; font-size: 21px; background: #ffc438;
}
.lolo-payments__group--withdraw .lolo-payments__group-icon { color: #fff; background: #0787c9; }
.lolo-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 23px 0; }
.lolo-method {
  display: flex; align-items: center; gap: 13px; min-height: 82px; padding: 14px;
  border: 1px solid #d7e5ed; border-radius: 16px; background: #f7fafc;
}
.lolo-method > span:last-child { display: grid; gap: 5px; }
.lolo-method strong { color: #102642; font-size: 15px; line-height: 1.25; }
.lolo-method small { color: #587087; font-size: 13px; font-weight: 700; }
.lolo-method__icon, .lolo-method__logos {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  width: 58px; min-width: 58px; min-height: 46px; padding: 7px;
  border-radius: 12px; color: #087fbd; font-size: 22px; background: #e4f5fb;
}
.lolo-method__logos img { max-width: 28px; max-height: 25px; object-fit: contain; }
.lolo-method--crypto { grid-column: 1 / -1; }
.lolo-method--crypto {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 18px;
  padding: 18px;
}
.payment-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  min-width: 92px;
  height: 52px;
  border-radius: 12px;
  font-style: normal;
  line-height: 1;
}
.payment-brand--jeton {
  color: #fff;
  background: #ec245d;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.03em;
}
.payment-brand--cashlib {
  color: #fff;
  background: #ef5a28;
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -.055em;
}
.payment-brand--apple {
  gap: 5px;
  color: #fff;
  background: #111;
  font-size: 22px;
}
.payment-brand--apple b { font-size: 17px; }
.payment-brand--google {
  gap: 5px;
  color: #3c4043;
  background: #fff;
  border: 1px solid #d7dde4;
}
.payment-brand--google b {
  color: #4285f4;
  font-size: 25px;
  font-weight: 900;
}
.payment-brand--google em { font-size: 18px; font-weight: 700; font-style: normal; }
.lolo-method__logos--dark {
  width: 104px;
  min-width: 104px;
  background: #102945;
}
.lolo-method__logos--dark img { max-width: 92px; max-height: 34px; }
.crypto-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: 8px;
}
.crypto-brand-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 6px 8px;
  border-radius: 10px;
  background: #102945;
}
.crypto-brand-grid img {
  width: 108px;
  height: 36px;
  max-width: 100%;
  object-fit: contain;
}
.lolo-payment-rules__grid i, .lolo-limits__grid i { color: #ffc438; font-size: 21px; }
.lolo-payments__networks {
  display: flex; gap: 12px; margin: 0; padding: 16px 18px; border-radius: 15px;
  color: #47637a; font-size: 14px; line-height: 1.6; background: #edf7fa;
}
.lolo-payments__networks i { margin-top: 4px; color: #0787c9; }
.lolo-limits {
  margin-top: 28px; padding: 38px; border-radius: 30px; color: #fff;
  background: linear-gradient(125deg, #061b34, #0b4267);
}
.lolo-limits header { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 25px; }
.lolo-limits h3 { max-width: 720px; margin: 8px 0 0; font-size: clamp(30px, 3vw, 46px); line-height: 1.08; }
.lolo-limits .label { color: #62d9f2; }
.lolo-limits__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.lolo-limits__grid article { padding: 21px; border: 1px solid rgba(135,207,235,.22); border-radius: 18px; background: rgba(255,255,255,.055); }
.lolo-limits__grid span { display: block; margin: 14px 0 6px; color: #9fc4d8; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.lolo-limits__grid strong { display: block; min-height: 58px; font-size: 25px; line-height: 1.12; }
.lolo-limits__grid p { margin: 10px 0 0; color: #afcad9; font-size: 14px; line-height: 1.55; }
.lolo-limits__note { display: flex; gap: 12px; margin: 22px 0 0; color: #c2d8e4; line-height: 1.6; }
.lolo-limits__note i { margin-top: 5px; color: #62d9f2; }
.lolo-payment-rules { display: grid; grid-template-columns: .75fr 1.25fr; gap: 32px; margin-top: 28px; padding: 38px; border: 1px solid #c8dce8; border-radius: 30px; background: #fff; }
.lolo-payment-rules__intro h3 { margin: 12px 0 18px; font-size: 39px; line-height: 1.1; }
.lolo-payment-rules__intro p { color: #597086; line-height: 1.7; }
.lolo-payment-rules__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lolo-payment-rules__grid article { padding: 21px; border-radius: 18px; background: #f2f7fa; }
.lolo-payment-rules__grid h4 { margin: 13px 0 8px; font-size: 17px; line-height: 1.3; }
.lolo-payment-rules__grid p { color: #587087; font-size: 14px; line-height: 1.58; }
.lolo-payment-alert { margin-top: 28px; padding: 38px; border-radius: 30px; color: #fff; background: #0a1d35; }
.lolo-payment-alert__title { display: flex; gap: 18px; align-items: center; margin-bottom: 25px; }
.lolo-payment-alert__title > i { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; color: #071b32; font-size: 24px; background: #ffc438; }
.lolo-payment-alert__title span { color: #62d9f2; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lolo-payment-alert__title h3 { margin: 5px 0 0; font-size: 31px; }
.lolo-payment-alert__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; }
.lolo-payment-alert__grid article { padding: 20px; border: 1px solid #29445f; border-radius: 17px; background: #102945; }
.lolo-payment-alert__grid h4 { margin: 0 0 9px; color: #fff; font-size: 17px; }
.lolo-payment-alert__grid p { color: #aac3d3; font-size: 14px; line-height: 1.58; }
.lolo-payment-alert__foot { display: flex; gap: 12px; margin-top: 20px; padding: 17px 19px; border-radius: 15px; color: #d8e8f0; background: rgba(98,217,242,.09); }
.lolo-payment-alert__foot i { margin-top: 4px; color: #62d9f2; }
@media (max-width: 1100px) {
  .lolo-payments__heading, .lolo-payment-rules { grid-template-columns: 1fr; gap: 28px; }
  .lolo-limits__grid, .lolo-payment-alert__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .lolo-payments { padding: 78px 0; }
  .lolo-payments__heading, .lolo-payments__columns { grid-template-columns: 1fr; }
  .lolo-payments__heading { gap: 24px; }
  .lolo-payments__group, .lolo-limits, .lolo-payment-rules, .lolo-payment-alert { padding: 24px; border-radius: 22px; }
  .lolo-limits__grid, .lolo-payment-alert__grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lolo-methods, .lolo-payment-rules__grid { grid-template-columns: 1fr; }
  .lolo-method--crypto { grid-column: auto; }
  .lolo-method--crypto { grid-template-columns: 1fr; }
  .crypto-brand-grid { grid-template-columns: 1fr 1fr; }
  .lolo-payments__availability, .lolo-limits__note, .lolo-payment-alert__foot { align-items: flex-start; }
  .lolo-payments__heading h2 { font-size: 40px; }
  .lolo-limits header { display: block; }
}

/* Lolo UK sportsbook */
.lolo-sports {
  padding: 112px 0;
  color: #102642;
  background:
    radial-gradient(circle at 90% 12%, rgba(255,196,56,.12), transparent 25%),
    linear-gradient(180deg, #f7fafc 0%, #eef5f9 100%);
}
.lolo-sports .label { color: #087fc0; }
.lolo-sports__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(400px, .9fr);
  gap: 72px;
  align-items: end;
  margin-bottom: 38px;
}
.lolo-sports__heading h2 {
  max-width: 900px;
  margin: 14px 0 0;
  font-size: clamp(45px, 5.2vw, 80px);
  line-height: 1;
  letter-spacing: -.05em;
}
.lolo-sports__heading p {
  color: #587086;
  font-size: 18px;
  line-height: 1.75;
}
.lolo-sports__heading p + p { margin-top: 14px; }
.lolo-sports-hero {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  border-radius: 34px;
  background: #06182e;
  box-shadow: 0 28px 70px rgba(6,31,56,.2);
}
.lolo-sports-hero > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lolo-sports-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3,18,35,.98) 0%, rgba(3,18,35,.88) 28%, rgba(3,18,35,.22) 64%, rgba(3,18,35,.05));
}
.lolo-sports-hero__copy {
  position: relative;
  z-index: 2;
  width: min(610px, 52%);
  padding: 72px 0 68px 64px;
  color: #fff;
}
.lolo-sports-hero__copy h3 {
  margin: 22px 0 20px;
  font-size: clamp(39px, 4vw, 62px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.lolo-sports-hero__copy > p { color: #bed2df; font-size: 17px; line-height: 1.7; }
.lolo-sports-hero__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.lolo-sports-hero__pills span {
  display: flex; gap: 7px; align-items: center; padding: 9px 12px;
  border: 1px solid rgba(121,209,236,.25); border-radius: 999px;
  color: #d9eff7; font-size: 12px; font-weight: 800; background: rgba(10,54,80,.72);
}
.lolo-sports-hero__pills i { color: #ffc438; }
.lolo-sports-nav { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 24px 0; }
.lolo-sports-nav article {
  display: grid; grid-template-columns: 44px 1fr; column-gap: 12px; align-items: center;
  padding: 18px; border: 1px solid #c9dce7; border-radius: 17px; background: #fff;
}
.lolo-sports-nav i { grid-row: 1 / 3; display: grid; place-items: center; width: 44px; height: 44px; border-radius: 13px; color: #0787c9; background: #e5f5fa; }
.lolo-sports-nav strong { font-size: 15px; }
.lolo-sports-nav span { color: #668095; font-size: 12px; }
.lolo-sports-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lolo-sports-modes > article {
  padding: 38px; border: 1px solid #c8dce8; border-radius: 28px; background: #fff;
}
.lolo-sports-modes > article.lolo-sports-modes__live { color: #fff; border: 0; background: linear-gradient(135deg,#071c34,#0a486e); }
.lolo-sports-modes__tag { display: flex; gap: 8px; align-items: center; color: #087fc0; font-size: 13px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.lolo-sports-modes__live .lolo-sports-modes__tag { color: #62d9f2; }
.lolo-sports-modes h3 { margin: 15px 0 14px; font-size: 34px; line-height: 1.12; }
.lolo-sports-modes p { color: #587086; line-height: 1.7; }
.lolo-sports-modes__live p { color: #b7cedb; }
.lolo-odds-demo { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 23px; }
.lolo-odds-demo span { display: grid; gap: 5px; padding: 14px; border-radius: 12px; background: #eef5f9; }
.lolo-odds-demo small { color: #678097; font-weight: 700; }
.lolo-odds-demo strong { font-size: 20px; }
.lolo-live-board { display: flex; gap: 12px; align-items: center; margin-top: 23px; padding: 17px; border: 1px solid rgba(98,217,242,.25); border-radius: 14px; background: rgba(255,255,255,.06); }
.lolo-live-board b { padding: 6px 8px; border-radius: 7px; color: #fff; font-size: 11px; background: #ef3d62; }
.lolo-live-board span, .lolo-live-board small { color: #9fc3d5; }
.lolo-live-board strong { font-size: 24px; }
.lolo-live-board small { margin-left: auto; }
.lolo-bet-types, .lolo-market-guide, .lolo-uk-sports, .lolo-sports-tools, .lolo-sports-rules {
  margin-top: 24px; padding: 44px; border-radius: 30px;
}
.lolo-bet-types, .lolo-sports-tools { color: #fff; background: #071d36; }
.lolo-bet-types > header, .lolo-uk-sports > header {
  display: grid; grid-template-columns: 1fr .85fr; gap: 55px; align-items: end; margin-bottom: 28px;
}
.lolo-bet-types h3, .lolo-market-guide h3, .lolo-uk-sports h3, .lolo-sports-tools h3, .lolo-sports-rules h3 {
  margin: 10px 0 0; font-size: clamp(34px,3.7vw,52px); line-height: 1.05; letter-spacing: -.035em;
}
.lolo-bet-types header p { color: #acc5d4; line-height: 1.7; }
.lolo-bet-types .label, .lolo-sports-tools .label { color: #62d9f2; }
.lolo-bet-types__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.lolo-bet-types__grid article { display: flex; gap: 15px; padding: 22px; border: 1px solid #294761; border-radius: 18px; background: #102b47; }
.lolo-bet-icon { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; border-radius: 14px; color: #071d36; background: #ffc438; }
.lolo-bet-types__grid strong { color: #62d9f2; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.lolo-bet-types__grid h4 { margin: 6px 0 9px; color: #fff; font-size: 18px; }
.lolo-bet-types__grid p { color: #a9c1d0; font-size: 14px; line-height: 1.58; }
.lolo-market-guide {
  display: block;
  border: 0;
  color: #fff;
  background: linear-gradient(135deg, #08213b, #0b4669);
}
.lolo-market-guide__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .85fr);
  gap: 55px;
  align-items: end;
  margin-bottom: 28px;
}
.lolo-market-guide__intro .label { color: #62d9f2; }
.lolo-market-guide__intro p { margin: 0; color: #b8cfdb; line-height: 1.7; }
.lolo-market-guide__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.lolo-market-guide__grid article {
  min-height: 215px;
  padding: 22px;
  border: 1px solid rgba(122, 200, 228, .22);
  border-radius: 17px;
  background: rgba(255, 255, 255, .06);
}
.lolo-market-guide__grid i { color: #ffc438; font-size: 21px; }
.lolo-market-guide__grid h4 { margin: 16px 0 9px; color: #fff; font-size: 18px; line-height: 1.25; }
.lolo-market-guide__grid p { color: #b5cbd8; font-size: 14px; line-height: 1.58; }
.lolo-uk-sports { border: 1px solid #c8dce8; background: #fff; }
.lolo-uk-sports > header > p { color: #5d7489; line-height: 1.7; }
.lolo-uk-sports__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; }
.lolo-uk-sports__grid article { min-height: 255px; padding: 23px; border-radius: 18px; background: #eff5f8; }
.lolo-uk-sports__grid article.lolo-uk-sports__football { color: #fff; background: linear-gradient(135deg,#0a3b5e,#087fbd); }
.lolo-uk-sports__grid i { color: #ffc438; font-size: 24px; }
.lolo-uk-sports__grid span { display: block; margin-top: 23px; color: #0787c9; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.lolo-uk-sports__football span { color: #62d9f2; }
.lolo-uk-sports__grid h4 { margin: 8px 0 10px; font-size: 20px; line-height: 1.25; }
.lolo-uk-sports__grid p { color: #5b7388; font-size: 14px; line-height: 1.58; }
.lolo-uk-sports__football p { color: #c5dae5; }
.lolo-sports-tools__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin-top: 26px; }
.lolo-sports-tools__grid article { padding: 22px; border: 1px solid #294761; border-radius: 18px; background: #102b47; }
.lolo-sports-tools__grid i { color: #ffc438; font-size: 21px; }
.lolo-sports-tools__grid h4 { margin: 14px 0 8px; font-size: 19px; }
.lolo-sports-tools__grid p { color: #a9c2d0; font-size: 14px; line-height: 1.58; }
.lolo-sports-rules { display: block; border: 0; color: #fff; background: linear-gradient(135deg, #071d36, #0a4163); }
.lolo-sports-rules__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, .8fr);
  gap: 55px;
  align-items: end;
  margin-bottom: 28px;
}
.lolo-sports-rules__intro .label { color: #62d9f2; }
.lolo-sports-rules__intro p { margin: 0; color: #b6cedb; line-height: 1.7; }
.lolo-sports-rules__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.lolo-sports-rules__list article {
  display: flex;
  gap: 15px;
  min-height: 205px;
  padding: 22px;
  border: 1px solid rgba(124, 200, 228, .22);
  border-radius: 17px;
  background: rgba(255,255,255,.06);
}
.lolo-sports-rules__list i { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 42px; border-radius: 12px; color: #071d36; background: #ffc438; }
.lolo-sports-rules__list h4 { margin: 0 0 9px; color: #fff; font-size: 18px; line-height: 1.25; }
.lolo-sports-rules__list p { color: #b5cbd8; font-size: 14px; line-height: 1.58; }
.lolo-sports__note { display: flex; gap: 12px; margin: 22px 0 0; padding: 17px 19px; border-radius: 15px; color: #49677d; line-height: 1.6; background: #e4f1f6; }
.lolo-sports__note i { margin-top: 5px; color: #0787c9; }
@media (max-width: 1150px) {
  .lolo-sports__heading { grid-template-columns: 1fr; gap: 28px; }
  .lolo-market-guide__intro { grid-template-columns: 1fr; gap: 22px; }
  .lolo-market-guide__grid { grid-template-columns: 1fr 1fr; }
  .lolo-sports-rules__intro { grid-template-columns: 1fr; gap: 22px; }
  .lolo-sports-rules__list { grid-template-columns: 1fr 1fr; }
  .lolo-sports-nav, .lolo-uk-sports__grid { grid-template-columns: repeat(2,1fr); }
  .lolo-bet-types__grid, .lolo-sports-tools__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .lolo-sports { padding: 78px 0; }
  .lolo-sports-hero { min-height: 720px; }
  .lolo-sports-hero::after { background: linear-gradient(180deg,rgba(3,18,35,.35),rgba(3,18,35,.98) 58%); }
  .lolo-sports-hero__copy { position: absolute; inset: auto 0 0; width: auto; padding: 34px 26px; }
  .lolo-sports-modes, .lolo-bet-types > header, .lolo-uk-sports > header { grid-template-columns: 1fr; gap: 22px; }
  .lolo-bet-types, .lolo-market-guide, .lolo-uk-sports, .lolo-sports-tools, .lolo-sports-rules { padding: 27px; border-radius: 23px; }
}
@media (max-width: 590px) {
  .lolo-sports__heading h2 { font-size: 42px; }
  .lolo-sports-nav, .lolo-bet-types__grid, .lolo-market-guide__grid, .lolo-uk-sports__grid, .lolo-sports-tools__grid, .lolo-sports-rules__list { grid-template-columns: 1fr; }
  .lolo-sports-modes > article { padding: 26px; }
  .lolo-live-board { flex-wrap: wrap; }
  .lolo-live-board small { width: 100%; margin: 0; }
}
