/* ============================================================
   airon paly - style-f44f.css
   Global stylesheet (shared by every page on airon-paly.click).
   All custom classes use the `vff5-` prefix.
   Palette: #141414 (bg) | #0097A7 (brand) | #C0C0C0 (text)
   Mobile-first, max main width 430px.
   Comments in English.
   ============================================================ */

:root {
  --vff5-bg: #141414;
  --vff5-bg-alt: #1d1d1d;
  --vff5-bg-soft: #232323;
  --vff5-primary: #0097A7;
  --vff5-primary-dark: #006b78;
  --vff5-primary-soft: #00b4c8;
  --vff5-silver: #C0C0C0;
  --vff5-text: #f3f4f5;
  --vff5-text-muted: #9aa0a4;
  --vff5-gold: #e0b341;
  --vff5-success: #2ecc71;
  --vff5-danger: #ff5a5f;
  --vff5-shadow: 0 6px 24px rgba(0, 0, 0, .45);
  --vff5-radius: 12px;
  --vff5-radius-sm: 8px;
  --vff5-header-h: 56px;
  --vff5-bottomnav-h: 62px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Segoe UI", "Helvetica Neue", Roboto, Arial, sans-serif;
  background: var(--vff5-bg);
  color: var(--vff5-text);
  line-height: 1.5;
  font-size: 1.5rem;
  overflow-x: hidden;
}
a { color: var(--vff5-primary-soft); text-decoration: none; }
a:hover { color: var(--vff5-silver); }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ---- Layout ---- */
.vff5-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
.vff5-wrapper { width: 100%; min-height: 100vh; }
.vff5-section { padding: 2.4rem 0; }
.vff5-section-alt { background: var(--vff5-bg-alt); }

/* ---- Header ---- */
.vff5-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--vff5-header-h);
  background: rgba(20, 20, 20, .96);
  border-bottom: 1px solid rgba(0, 151, 167, .35);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.vff5-header-inner {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.vff5-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex: 1;
  min-width: 0;
}
.vff5-logo img { width: 28px; height: 28px; border-radius: 6px; }
.vff5-logo-text {
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--vff5-text);
  letter-spacing: .3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vff5-logo-text b { color: var(--vff5-primary-soft); }

.vff5-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  padding: .8rem 1.2rem;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 700;
  min-height: 36px;
  transition: transform .15s ease, opacity .15s ease;
}
.vff5-btn:active { transform: scale(.96); }
.vff5-btn-primary {
  background: linear-gradient(135deg, var(--vff5-primary-soft), var(--vff5-primary));
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 151, 167, .45);
}
.vff5-btn-ghost {
  background: transparent;
  border: 1px solid var(--vff5-silver);
  color: var(--vff5-silver);
}
.vff5-btn-gold {
  background: linear-gradient(135deg, var(--vff5-gold), #b8860b);
  color: #1a1a1a;
}

.vff5-menu-toggle {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 2rem;
  color: var(--vff5-primary-soft);
  border-radius: 8px;
}

/* ---- Mobile menu drawer ---- */
.vff5-mobile-menu {
  position: fixed;
  top: var(--vff5-header-h); right: 0;
  width: 78%; max-width: 320px;
  height: calc(100vh - var(--vff5-header-h));
  background: var(--vff5-bg-alt);
  border-left: 1px solid rgba(0, 151, 167, .3);
  transform: translateX(100%);
  transition: transform .25s ease;
  z-index: 9999;
  padding: 1.6rem 1.2rem;
  overflow-y: auto;
}
.vff5-mobile-menu.vff5-menu-open { transform: translateX(0); }
.vff5-mobile-menu h4 {
  font-size: 1.3rem;
  color: var(--vff5-text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 1.2rem 0 .6rem;
}
.vff5-mobile-menu a {
  display: block;
  padding: 1rem .6rem;
  border-bottom: 1px solid rgba(192, 192, 192, .12);
  color: var(--vff5-text);
  font-size: 1.45rem;
  font-weight: 600;
}
.vff5-mobile-menu a:hover { color: var(--vff5-primary-soft); padding-left: 1rem; }
.vff5-menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, .55);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.vff5-menu-overlay.vff5-menu-open { opacity: 1; pointer-events: auto; }

/* ---- Main spacing for fixed header / bottom nav ---- */
main { padding-top: calc(var(--vff5-header-h) + .8rem); padding-bottom: 1rem; }

/* ---- Hero carousel ---- */
.vff5-hero {
  position: relative;
  border-radius: var(--vff5-radius);
  overflow: hidden;
  box-shadow: var(--vff5-shadow);
  aspect-ratio: 16 / 9;
}
.vff5-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}
.vff5-hero-slide.vff5-active { opacity: 1; }
.vff5-hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.vff5-hero-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 2.6rem;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  color: #fff;
}
.vff5-hero-caption h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: .3rem; }
.vff5-hero-caption p { font-size: 1.25rem; color: var(--vff5-silver); }
.vff5-hero-dots {
  position: absolute; bottom: 1rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: .6rem;
}
.vff5-hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.4);
}
.vff5-hero-dot.vff5-active { background: var(--vff5-primary-soft); width: 22px; border-radius: 4px; }

/* ---- Section headings ---- */
.vff5-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.2rem;
}
.vff5-section-title {
  font-size: 1.8rem; font-weight: 800; color: var(--vff5-text);
  display: flex; align-items: center; gap: .6rem;
}
.vff5-section-title i { color: var(--vff5-primary-soft); }
.vff5-section-more { font-size: 1.2rem; color: var(--vff5-primary-soft); }

/* ---- Game grid ---- */
.vff5-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .8rem;
}
.vff5-game-card {
  background: var(--vff5-bg-alt);
  border-radius: var(--vff5-radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  border: 1px solid rgba(192,192,192,.06);
}
.vff5-game-card:active { transform: scale(.95); }
.vff5-game-card img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  background: #0c0c0c;
}
.vff5-game-name {
  padding: .5rem .4rem;
  font-size: 1.05rem;
  text-align: center;
  color: var(--vff5-silver);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  font-weight: 600;
}

/* ---- Filter tabs (decorative only) ---- */
.vff5-filter-row {
  display: flex; gap: .6rem; overflow-x: auto;
  padding-bottom: .4rem; margin-bottom: 1rem;
}
.vff5-filter-tab {
  padding: .5rem 1rem; border-radius: 999px;
  background: var(--vff5-bg-alt);
  color: var(--vff5-silver);
  font-size: 1.2rem; font-weight: 600;
  white-space: nowrap;
  border: 1px solid transparent;
}
.vff5-filter-tab.vff5-active {
  background: var(--vff5-primary);
  color: #fff;
}

/* ---- Category badge ---- */
.vff5-cat-badge {
  display: inline-block;
  padding: .3rem .9rem;
  border-radius: 999px;
  background: rgba(0, 151, 167, .15);
  color: var(--vff5-primary-soft);
  font-size: 1.15rem; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .8rem;
}

/* ---- Cards / panels ---- */
.vff5-card {
  background: var(--vff5-bg-alt);
  border-radius: var(--vff5-radius);
  padding: 1.6rem;
  box-shadow: var(--vff5-shadow);
  border: 1px solid rgba(192,192,192,.06);
}
.vff5-card h3 {
  font-size: 1.5rem; color: var(--vff5-text); margin-bottom: .6rem;
  display: flex; align-items: center; gap: .5rem;
}
.vff5-card h3 i { color: var(--vff5-primary-soft); }
.vff5-card p { color: var(--vff5-text-muted); font-size: 1.3rem; }
.vff5-card + .vff5-card { margin-top: 1rem; }

/* ---- Feature list ---- */
.vff5-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
}
.vff5-feature {
  background: var(--vff5-bg-alt);
  padding: 1.2rem;
  border-radius: var(--vff5-radius-sm);
  text-align: center;
  border: 1px solid rgba(0,151,167,.15);
}
.vff5-feature i { font-size: 2.4rem; color: var(--vff5-primary-soft); margin-bottom: .4rem; }
.vff5-feature b { display: block; font-size: 1.25rem; color: var(--vff5-text); }
.vff5-feature span { font-size: 1.1rem; color: var(--vff5-text-muted); }

/* ---- RTP bar ---- */
.vff5-rtp-row { margin-bottom: .9rem; }
.vff5-rtp-top {
  display: flex; justify-content: space-between;
  font-size: 1.2rem; margin-bottom: .3rem;
}
.vff5-rtp-top b { color: var(--vff5-text); }
.vff5-rtp-top span { color: var(--vff5-gold); font-weight: 700; }
.vff5-rtp-bar {
  height: 8px; border-radius: 4px;
  background: rgba(192,192,192,.15);
  overflow: hidden;
}
.vff5-rtp-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--vff5-primary), var(--vff5-primary-soft));
}

/* ---- Testimonial ---- */
.vff5-testimonial {
  background: var(--vff5-bg-alt);
  border-radius: var(--vff5-radius-sm);
  padding: 1.2rem;
  border-left: 3px solid var(--vff5-primary);
  margin-bottom: .8rem;
}
.vff5-testimonial p { font-size: 1.25rem; color: var(--vff5-text); margin-bottom: .5rem; }
.vff5-testimonial small { color: var(--vff5-text-muted); }
.vff5-stars { color: var(--vff5-gold); font-size: 1.2rem; letter-spacing: 2px; }

/* ---- Payment pills ---- */
.vff5-pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.vff5-pill {
  padding: .5rem 1rem; border-radius: 999px;
  background: var(--vff5-bg-soft);
  color: var(--vff5-silver);
  font-size: 1.15rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
}

/* ---- Winners ticker ---- */
.vff5-winner {
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem; border-radius: var(--vff5-radius-sm);
  background: var(--vff5-bg-alt); margin-bottom: .5rem;
}
.vff5-winner img { width: 36px; height: 36px; border-radius: 50%; }
.vff5-winner b { color: var(--vff5-text); font-size: 1.25rem; }
.vff5-winner small { color: var(--vff5-text-muted); }
.vff5-winner .vff5-amt { margin-left: auto; color: var(--vff5-success); font-weight: 800; }

/* ---- CTA banner ---- */
.vff5-cta {
  background: linear-gradient(135deg, var(--vff5-primary-dark), var(--vff5-primary));
  border-radius: var(--vff5-radius);
  padding: 1.8rem;
  text-align: center;
  color: #fff;
}
.vff5-cta h3 { font-size: 1.8rem; margin-bottom: .4rem; }
.vff5-cta p { color: rgba(255,255,255,.85); font-size: 1.25rem; margin-bottom: 1rem; }

/* ---- Promo inline link ---- */
.vff5-promo-link {
  color: var(--vff5-primary-soft);
  font-weight: 800;
  border-bottom: 2px solid var(--vff5-primary);
}

/* ---- FAQ ---- */
.vff5-faq { border-bottom: 1px solid rgba(192,192,192,.12); padding: 1rem 0; }
.vff5-faq h4 { font-size: 1.35rem; color: var(--vff5-text); margin-bottom: .4rem; }
.vff5-faq p { color: var(--vff5-text-muted); font-size: 1.25rem; }

/* ---- Steps ---- */
.vff5-step {
  display: flex; gap: 1rem; margin-bottom: 1rem;
}
.vff5-step-num {
  flex: 0 0 32px; height: 32px; border-radius: 50%;
  background: var(--vff5-primary);
  color: #fff; font-weight: 800; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
}
.vff5-step-body b { color: var(--vff5-text); display: block; font-size: 1.3rem; }
.vff5-step-body span { color: var(--vff5-text-muted); font-size: 1.2rem; }

/* ---- Footer ---- */
.vff5-footer {
  background: #0c0c0c;
  border-top: 1px solid rgba(0,151,167,.25);
  padding: 2.4rem 0 calc(var(--vff5-bottomnav-h) + 1.4rem);
  margin-top: 2rem;
}
.vff5-footer h4 {
  color: var(--vff5-silver); font-size: 1.3rem;
  text-transform: uppercase; letter-spacing: .08em;
  margin: 1.4rem 0 .6rem;
}
.vff5-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1rem; }
.vff5-footer-links a {
  color: var(--vff5-text-muted); font-size: 1.2rem;
}
.vff5-footer-links a:hover { color: var(--vff5-primary-soft); }
.vff5-footer-brand p { color: var(--vff5-text-muted); font-size: 1.2rem; margin-top: .6rem; }
.vff5-footer-copy {
  margin-top: 1.4rem; padding-top: 1rem;
  border-top: 1px solid rgba(192,192,192,.1);
  color: var(--vff5-text-muted); font-size: 1.1rem; text-align: center;
}

/* ---- Mobile bottom nav ---- */
.vff5-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--vff5-bottomnav-h);
  background: rgba(12, 12, 12, .98);
  border-top: 1px solid rgba(0, 151, 167, .35);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
}
.vff5-bottomnav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--vff5-silver);
  font-size: 1rem;
  font-weight: 600;
  min-width: 60px;
  min-height: 60px;
  transition: color .15s ease, transform .15s ease;
  position: relative;
}
.vff5-bottomnav a i { font-size: 2.2rem; }
.vff5-bottomnav a:active { transform: scale(.92); }
.vff5-bottomnav a:hover { color: var(--vff5-primary-soft); }
.vff5-bottomnav a.vff5-active { color: var(--vff5-primary-soft); }
.vff5-bottomnav a.vff5-active::before {
  content: ""; position: absolute; top: 0;
  width: 28px; height: 3px; border-radius: 0 0 4px 4px;
  background: var(--vff5-primary-soft);
}
.vff5-bottomnav .vff5-nav-promo {
  color: var(--vff5-gold);
}

/* ---- Reveal animation ---- */
.vff5-reveal { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.vff5-reveal.vff5-inview { opacity: 1; transform: none; }

/* ---- Utilities ---- */
.vff5-text-center { text-align: center; }
.vff5-mt-1 { margin-top: 1rem; }
.vff5-mt-2 { margin-top: 2rem; }
.vff5-mb-1 { margin-bottom: 1rem; }
.vff5-hidden { display: none !important; }
.vff5-lead { font-size: 1.35rem; color: var(--vff5-silver); }

/* ---- Desktop: hide bottom nav, widen container ---- */
@media (min-width: 769px) {
  .vff5-bottomnav { display: none; }
  body { padding-bottom: 0; }
  .vff5-container { max-width: 430px; }
}
@media (max-width: 768px) {
  main { padding-bottom: calc(var(--vff5-bottomnav-h) + 1.2rem); }
}
