/* free 100 casino mobile-first system */
:root {
  font-size: 62.5%;
  --va1d-bg: #121212;
  --va1d-panel: #1f1f1f;
  --va1d-panel-soft: #2b2b2b;
  --va1d-primary: #ffa500;
  --va1d-secondary: #0097a7;
  --va1d-gold: #d4af37;
  --va1d-olive: #bdb76b;
  --va1d-text: #f5f5ee;
  --va1d-muted: #cccccc;
  --va1d-line: rgba(212, 175, 55, .26);
  --va1d-shadow: 0 1.6rem 4rem rgba(0, 0, 0, .38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: var(--va1d-text);
  background: radial-gradient(circle at top left, rgba(0, 151, 167, .28), transparent 32rem), linear-gradient(145deg, #0d0d0d, #252525 50%, #151515);
}
body.va1d-lock { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.va1d-page {
  width: 100%;
  max-width: 43rem;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  background: linear-gradient(180deg, rgba(58,58,58,.98), rgba(18,18,18,.98));
  box-shadow: 0 0 4.8rem rgba(0,0,0,.55);
}
.va1d-main { padding: 7.4rem 1.2rem 2.4rem; }
.va1d-container { width: 100%; margin: 0 auto; }
.va1d-wrapper { display: flex; flex-direction: column; gap: 1.4rem; }
.va1d-grid { display: grid; gap: 1.2rem; }

.va1d-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 43rem;
  min-height: 6.4rem;
  padding: .8rem 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  background: rgba(18, 18, 18, .96);
  border-bottom: .1rem solid var(--va1d-line);
  backdrop-filter: blur(1.4rem);
}
.va1d-brand { display: flex; align-items: center; gap: .7rem; min-width: 0; flex: 1; text-decoration: none; }
.va1d-logo { width: 3.2rem; height: 3.2rem; border-radius: 1rem; box-shadow: 0 0 1.8rem rgba(255,165,0,.35); }
.va1d-brand-text { display: flex; flex-direction: column; min-width: 0; }
.va1d-brand-title { font-size: 1.45rem; font-weight: 900; color: var(--va1d-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.va1d-brand-sub { font-size: 1rem; color: var(--va1d-muted); }
.va1d-header-actions { display: flex; align-items: center; gap: .5rem; }
.va1d-btn {
  min-height: 4.4rem;
  min-width: 4.4rem;
  border: 0;
  border-radius: 1.4rem;
  padding: .9rem 1.2rem;
  font-weight: 900;
  color: #141414;
  background: linear-gradient(135deg, var(--va1d-primary), var(--va1d-gold));
  box-shadow: 0 .8rem 2rem rgba(255, 165, 0, .25);
  cursor: pointer;
  transition: transform .18s ease, filter .18s ease;
}
.va1d-btn:hover, .va1d-btn:focus { transform: translateY(-.1rem) scale(1.02); filter: brightness(1.08); }
.va1d-btn:active { transform: scale(.96); }
.va1d-btn.va1d-btn-ghost { background: rgba(0,151,167,.15); color: var(--va1d-text); border: .1rem solid rgba(0,151,167,.55); box-shadow: none; }
.va1d-btn.va1d-btn-small { min-height: 3.8rem; padding: .7rem .9rem; font-size: 1.2rem; }
.va1d-menu-toggle { width: 4.4rem; height: 4.4rem; display: inline-flex; align-items: center; justify-content: center; font-size: 2.2rem; }
.va1d-desktop-nav { display: none; }

.va1d-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(0,0,0,.62);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
}
.va1d-menu-overlay.va1d-open { opacity: 1; pointer-events: auto; }
.va1d-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  width: min(84vw, 34rem);
  height: 100vh;
  padding: 2rem 1.4rem;
  background: linear-gradient(180deg, #202020, #111);
  border-left: .1rem solid var(--va1d-line);
  transform: translateX(105%);
  transition: transform .25s ease;
  overflow-y: auto;
}
.va1d-mobile-menu.va1d-open { transform: translateX(0); }
.va1d-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; }
.va1d-menu-title { color: var(--va1d-gold); font-size: 1.8rem; font-weight: 900; }
.va1d-menu-links { display: grid; gap: .8rem; }
.va1d-menu-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-height: 4.8rem;
  padding: 1rem 1.1rem;
  border-radius: 1.4rem;
  background: rgba(255,255,255,.05);
  border: .1rem solid rgba(255,255,255,.08);
  color: var(--va1d-text);
  text-decoration: none;
  font-weight: 800;
}

.va1d-hero { position: relative; border-radius: 2.2rem; overflow: hidden; border: .1rem solid var(--va1d-line); box-shadow: var(--va1d-shadow); }
.va1d-slide { display: none; position: relative; min-height: 18rem; cursor: pointer; }
.va1d-slide.va1d-active { display: block; }
.va1d-slide img { width: 100%; height: 19.6rem; object-fit: cover; filter: saturate(1.08) contrast(1.05); }
.va1d-slide-copy { position: absolute; inset: auto 1rem 1rem 1rem; padding: 1rem; border-radius: 1.6rem; background: rgba(0,0,0,.62); backdrop-filter: blur(.8rem); }
.va1d-slide-copy strong { color: var(--va1d-primary); display: block; font-size: 1.8rem; line-height: 2.2rem; }
.va1d-slide-copy span { color: var(--va1d-muted); font-size: 1.25rem; }
.va1d-dots { position: absolute; top: 1rem; right: 1rem; display: flex; gap: .5rem; }
.va1d-dot { width: .9rem; height: .9rem; border-radius: 50%; border: .1rem solid #fff; background: rgba(255,255,255,.32); }
.va1d-dot.va1d-active { background: var(--va1d-primary); border-color: var(--va1d-primary); }

.va1d-section { margin-top: 1.6rem; padding: 1.4rem; border-radius: 2rem; background: rgba(31,31,31,.92); border: .1rem solid rgba(255,255,255,.08); box-shadow: 0 1rem 3rem rgba(0,0,0,.22); }
.va1d-section-alt { background: linear-gradient(145deg, rgba(0,151,167,.2), rgba(31,31,31,.95)); }
.va1d-eyebrow { color: var(--va1d-olive); font-size: 1.1rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 900; }
.va1d-title { margin: .4rem 0 1rem; color: #fff7cf; font-size: 2.4rem; line-height: 2.9rem; font-weight: 950; }
.va1d-h2 { margin: 0 0 1rem; color: var(--va1d-primary); font-size: 2rem; line-height: 2.5rem; }
.va1d-h3 { margin: 1rem 0 .6rem; color: var(--va1d-gold); font-size: 1.6rem; line-height: 2.1rem; }
.va1d-text { color: var(--va1d-muted); line-height: 2.35rem; margin: 0 0 1rem; }
.va1d-lead { color: #f4f4e4; line-height: 2.45rem; font-size: 1.6rem; }
.va1d-link { color: var(--va1d-primary); font-weight: 900; text-decoration: underline; text-underline-offset: .3rem; }
.va1d-promo-link { color: #141414; background: var(--va1d-primary); padding: .15rem .45rem; border-radius: .6rem; font-weight: 950; text-decoration: none; cursor: pointer; }
.va1d-cta-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.va1d-card { padding: 1.2rem; border-radius: 1.6rem; background: rgba(255,255,255,.06); border: .1rem solid rgba(255,255,255,.08); }
.va1d-card strong { color: #fff; }
.va1d-kpi-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
.va1d-kpi { text-align: center; padding: 1rem; border-radius: 1.4rem; background: linear-gradient(145deg, rgba(212,175,55,.18), rgba(0,151,167,.12)); }
.va1d-kpi b { display: block; color: var(--va1d-primary); font-size: 2rem; line-height: 2.4rem; }
.va1d-kpi span { color: var(--va1d-muted); font-size: 1.15rem; }

.va1d-game-category { margin-top: 1.2rem; }
.va1d-game-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: .8rem; }
.va1d-game-head h3 { margin: 0; color: var(--va1d-gold); font-size: 1.65rem; }
.va1d-game-head span { color: var(--va1d-muted); font-size: 1.1rem; }
.va1d-game-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .85rem; }
.va1d-game-item { min-width: 0; text-decoration: none; color: var(--va1d-text); text-align: center; cursor: pointer; }
.va1d-game-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 1.2rem; border: .1rem solid rgba(255,255,255,.13); box-shadow: 0 .7rem 1.4rem rgba(0,0,0,.26); }
.va1d-game-item span { display: block; margin-top: .45rem; font-size: 1.05rem; line-height: 1.35rem; color: var(--va1d-muted); overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.va1d-game-item:hover span { color: var(--va1d-primary); }

.va1d-list { margin: 0; padding-left: 1.8rem; color: var(--va1d-muted); }
.va1d-list li { margin: .6rem 0; line-height: 2.2rem; }
.va1d-steps { counter-reset: va1dStep; display: grid; gap: 1rem; }
.va1d-step { position: relative; padding-left: 4.2rem; }
.va1d-step:before { counter-increment: va1dStep; content: counter(va1dStep); position: absolute; left: 0; top: .2rem; width: 3rem; height: 3rem; display: grid; place-items: center; border-radius: 50%; background: var(--va1d-primary); color: #111; font-weight: 950; }
.va1d-review { border-left: .35rem solid var(--va1d-secondary); }
.va1d-badge { display: inline-flex; align-items: center; gap: .4rem; padding: .45rem .7rem; border-radius: 99rem; background: rgba(0,151,167,.18); color: #d9fbff; font-size: 1.1rem; font-weight: 800; }
.va1d-payments { display: flex; flex-wrap: wrap; gap: .7rem; }
.va1d-payment { padding: .75rem 1rem; border-radius: 1.2rem; background: rgba(255,255,255,.08); color: var(--va1d-muted); font-weight: 800; }

.va1d-footer { padding: 2rem 1.2rem 8.4rem; background: #101010; border-top: .1rem solid var(--va1d-line); }
.va1d-footer-logo { display: flex; align-items: center; gap: .8rem; color: var(--va1d-primary); font-weight: 950; font-size: 1.7rem; }
.va1d-footer-text { color: var(--va1d-muted); line-height: 2.3rem; }
.va1d-footer-links { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.1rem 0; }
.va1d-footer-links a { color: var(--va1d-muted); text-decoration: none; padding: .65rem .85rem; border-radius: 1rem; background: rgba(255,255,255,.06); }
.va1d-footer-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .8rem; margin: 1rem 0; }
.va1d-copy { color: #999; font-size: 1.15rem; }

.va1d-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 100%;
  max-width: 43rem;
  height: 6.2rem;
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  background: #181818;
  border-top: .1rem solid rgba(212,175,55,.38);
  box-shadow: 0 -1rem 2.8rem rgba(0,0,0,.5);
}
.va1d-bottom-item {
  flex: 1;
  min-width: 6rem;
  min-height: 6rem;
  border: 0;
  background: transparent;
  color: var(--va1d-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  font-size: 1.05rem;
  font-weight: 850;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease, background .18s ease;
}
.va1d-bottom-item i, .va1d-bottom-item .material-icons, .va1d-bottom-item ion-icon { font-size: 2.4rem; line-height: 2.4rem; }
.va1d-bottom-item:hover, .va1d-bottom-item:focus, .va1d-bottom-item.va1d-active { color: var(--va1d-primary); background: linear-gradient(180deg, rgba(255,165,0,.16), transparent); }
.va1d-bottom-item:active { transform: scale(.94); }
.va1d-two-tone { color: var(--va1d-gold); text-shadow: .1rem .1rem 0 var(--va1d-secondary); }
.va1d-pill { display:inline-flex; align-items:center; min-height:4.4rem; padding:.9rem 1.1rem; border-radius:1.4rem; background:rgba(212,175,55,.15); color:var(--va1d-primary); font-weight:900; text-decoration:none; cursor:pointer; }

@media (min-width: 769px) {
  .va1d-page, .va1d-header, .va1d-bottom-nav { max-width: 100%; }
  .va1d-page { max-width: none; }
  .va1d-header { padding: 1rem 4vw; }
  .va1d-main { max-width: 118rem; margin: 0 auto; padding-top: 8.4rem; }
  .va1d-desktop-nav { display: flex; align-items: center; gap: 1rem; }
  .va1d-desktop-nav a { color: var(--va1d-muted); text-decoration: none; font-weight: 800; }
  .va1d-menu-toggle { display: none; }
  .va1d-bottom-nav { display: none; }
  .va1d-game-grid { grid-template-columns: repeat(8, minmax(0,1fr)); }
  .va1d-kpi-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .va1d-footer { padding-bottom: 2.4rem; }
}

@media (max-width: 768px) {
  .va1d-main { padding-bottom: 8rem; }
}
