/* nino gaming ph - mobile-first styles */
:root {
  --v7be-primary: #FFB74D;
  --v7be-accent: #FA8072;
  --v7be-brown: #A0522D;
  --v7be-pink: #DB7093;
  --v7be-bg: #0F0F23;
  --v7be-bg2: #1a1a35;
  --v7be-bg3: #252548;
  --v7be-text: #fff8f0;
  --v7be-muted: #c9b8a8;
  --v7be-card: #181832;
  --v7be-border: rgba(255, 183, 77, 0.22);
  --v7be-radius: 1.2rem;
  --v7be-shadow: 0 0.6rem 1.8rem rgba(0, 0, 0, 0.35);
  --v7be-header-h: 5.6rem;
  --v7be-bottom-h: 6.2rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  font-size: 1.4rem;
  line-height: 1.5rem;
  background: var(--v7be-bg);
  color: var(--v7be-text);
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--v7be-primary); text-decoration: none; }
a:hover { color: var(--v7be-accent); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.v7be-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* Layout */
.v7be-wrapper { width: 100%; min-height: 100vh; }
.v7be-container { width: 100%; padding: 0 1.4rem; }
.v7be-main { padding-top: calc(var(--v7be-header-h) + 1rem); padding-bottom: 8.5rem; }
.v7be-section { margin-bottom: 2.4rem; }
.v7be-section-title {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: var(--v7be-primary);
  margin-bottom: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.v7be-section-sub {
  color: var(--v7be-muted);
  font-size: 1.3rem;
  line-height: 1.8rem;
  margin-bottom: 1.4rem;
}
.v7be-text-link {
  color: var(--v7be-primary);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

/* Header */
.v7be-header {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--v7be-header-h);
  background: linear-gradient(180deg, #16162e 0%, #121228 100%);
  border-bottom: 1px solid var(--v7be-border);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 1.2rem;
  gap: 0.8rem;
}
.v7be-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex: 1;
  min-width: 0;
}
.v7be-logo img {
  width: 3rem; height: 3rem;
  border-radius: 0.8rem;
  border: 1px solid var(--v7be-border);
}
.v7be-logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--v7be-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.v7be-header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.v7be-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 4.4rem;
  min-width: 4.4rem;
  padding: 0 1.2rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.v7be-btn:active { transform: scale(0.96); }
.v7be-btn-primary {
  background: linear-gradient(135deg, var(--v7be-primary), #ff9a2e);
  color: #1a1208;
  box-shadow: 0 0.4rem 1.2rem rgba(255, 183, 77, 0.35);
}
.v7be-btn-secondary {
  background: linear-gradient(135deg, var(--v7be-pink), var(--v7be-accent));
  color: #fff;
  box-shadow: 0 0.4rem 1.2rem rgba(219, 112, 147, 0.3);
}
.v7be-btn-outline {
  border: 1px solid var(--v7be-primary);
  color: var(--v7be-primary);
  background: rgba(255, 183, 77, 0.08);
}
.v7be-btn-block { width: 100%; }
.v7be-btn-lg { min-height: 4.8rem; font-size: 1.4rem; padding: 0 1.8rem; }
.v7be-menu-toggle {
  width: 4.4rem; height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--v7be-primary);
  font-size: 2.2rem;
  border-radius: 1rem;
  background: rgba(255, 183, 77, 0.08);
}

/* Mobile menu */
.v7be-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease;
}
.v7be-overlay-show { opacity: 1; visibility: visible; }
.v7be-mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: min(82vw, 320px);
  height: 100%;
  background: linear-gradient(180deg, #1b1b36, #121228);
  z-index: 9999;
  transform: translateX(105%);
  transition: transform 0.28s ease;
  padding: 2rem 1.6rem 8rem;
  overflow-y: auto;
  border-left: 1px solid var(--v7be-border);
}
.v7be-menu-open { transform: translateX(0); }
.v7be-menu-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem;
}
.v7be-menu-head h3 { color: var(--v7be-primary); font-size: 1.6rem; }
.v7be-menu-close {
  width: 4.4rem; height: 4.4rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--v7be-accent); font-size: 2.4rem;
}
.v7be-menu-list { display: flex; flex-direction: column; gap: 0.4rem; }
.v7be-menu-list a {
  display: flex; align-items: center; gap: 1rem;
  min-height: 4.8rem;
  padding: 0 1.2rem;
  border-radius: 1rem;
  color: var(--v7be-text);
  font-size: 1.4rem;
  font-weight: 600;
  background: rgba(255,255,255,0.03);
  border: 1px solid transparent;
}
.v7be-menu-list a:hover,
.v7be-menu-list a:active {
  border-color: var(--v7be-border);
  background: rgba(255, 183, 77, 0.08);
  color: var(--v7be-primary);
}
.v7be-menu-list a i, .v7be-menu-list a .material-icons { font-size: 2rem; width: 2.4rem; text-align: center; }

/* Hero carousel */
.v7be-carousel {
  position: relative;
  border-radius: var(--v7be-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--v7be-shadow);
  aspect-ratio: 16 / 9;
  background: var(--v7be-bg2);
}
.v7be-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 0.45s ease;
  cursor: pointer;
}
.v7be-slide-active { opacity: 1; z-index: 1; }
.v7be-slide img { width: 100%; height: 100%; object-fit: cover; }
.v7be-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1.2rem 2.8rem;
  background: linear-gradient(transparent, rgba(15,15,35,0.92));
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  z-index: 2;
}
.v7be-dots {
  position: absolute; bottom: 0.8rem; left: 0; right: 0;
  display: flex; justify-content: center; gap: 0.6rem;
  z-index: 3;
}
.v7be-dot {
  width: 0.8rem; height: 0.8rem; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  transition: all 0.2s ease;
}
.v7be-dot-active {
  background: var(--v7be-primary);
  width: 1.8rem;
  border-radius: 999px;
}

/* Hero title */
.v7be-hero-title {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 800;
  color: var(--v7be-text);
  margin-bottom: 1rem;
  text-align: center;
}
.v7be-hero-title span { color: var(--v7be-primary); }
.v7be-hero-desc {
  font-size: 1.35rem;
  line-height: 2rem;
  color: var(--v7be-muted);
  margin-bottom: 1.6rem;
  text-align: center;
}
.v7be-cta-row {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Cards & content */
.v7be-card {
  background: var(--v7be-card);
  border: 1px solid var(--v7be-border);
  border-radius: var(--v7be-radius);
  padding: 1.6rem;
  margin-bottom: 1.4rem;
  box-shadow: var(--v7be-shadow);
}
.v7be-card h3 {
  font-size: 1.5rem;
  line-height: 2rem;
  color: var(--v7be-primary);
  margin-bottom: 0.8rem;
}
.v7be-card p, .v7be-prose p {
  font-size: 1.35rem;
  line-height: 2rem;
  color: var(--v7be-muted);
  margin-bottom: 1rem;
}
.v7be-prose p:last-child { margin-bottom: 0; }
.v7be-list { margin: 0.8rem 0 1.2rem; }
.v7be-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  line-height: 2rem;
  color: var(--v7be-muted);
}
.v7be-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.65rem;
  width: 0.7rem; height: 0.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--v7be-primary), var(--v7be-pink));
}
.v7be-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.v7be-stat {
  background: var(--v7be-bg3);
  border-radius: 1rem;
  padding: 1.2rem;
  text-align: center;
  border: 1px solid var(--v7be-border);
}
.v7be-stat strong {
  display: block;
  font-size: 1.8rem;
  color: var(--v7be-primary);
  margin-bottom: 0.3rem;
}
.v7be-stat span {
  font-size: 1.1rem;
  color: var(--v7be-muted);
}

/* Games */
.v7be-cat-head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 1.8rem 0 1rem;
}
.v7be-cat-head h2 {
  font-size: 1.7rem;
  line-height: 2.2rem;
  color: var(--v7be-primary);
  font-weight: 700;
}
.v7be-cat-icon {
  width: 3.4rem; height: 3.4rem;
  border-radius: 1rem;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,183,77,0.2), rgba(219,112,147,0.18));
  color: var(--v7be-primary);
  font-size: 1.8rem;
}
.v7be-game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 0.6rem;
}
.v7be-game-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s ease;
  min-width: 0;
}
.v7be-game-item:active { transform: scale(0.95); }
.v7be-game-item img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 1rem;
  object-fit: cover;
  border: 1px solid var(--v7be-border);
  background: var(--v7be-bg2);
  box-shadow: 0 0.3rem 0.8rem rgba(0,0,0,0.25);
}
.v7be-game-item span {
  display: block;
  width: 100%;
  margin-top: 0.4rem;
  font-size: 1rem;
  line-height: 1.3rem;
  text-align: center;
  color: var(--v7be-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

/* FAQ */
.v7be-faq-item {
  background: var(--v7be-card);
  border: 1px solid var(--v7be-border);
  border-radius: 1rem;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.v7be-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 1.2rem 1.4rem;
  text-align: left;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--v7be-text);
}
.v7be-faq-q i { color: var(--v7be-primary); transition: transform 0.2s ease; }
.v7be-faq-open .v7be-faq-q i { transform: rotate(180deg); }
.v7be-faq-a {
  display: none;
  padding: 0 1.4rem 1.4rem;
  font-size: 1.3rem;
  line-height: 1.9rem;
  color: var(--v7be-muted);
}
.v7be-faq-open .v7be-faq-a { display: block; }

/* Features / badges */
.v7be-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.v7be-feature {
  background: var(--v7be-card);
  border: 1px solid var(--v7be-border);
  border-radius: 1.2rem;
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.v7be-feature i, .v7be-feature .material-icons {
  font-size: 2.4rem;
  color: var(--v7be-primary);
  margin-bottom: 0.6rem;
  display: inline-block;
}
.v7be-feature h3 {
  font-size: 1.3rem;
  color: var(--v7be-text);
  margin-bottom: 0.4rem;
}
.v7be-feature p {
  font-size: 1.15rem;
  line-height: 1.6rem;
  color: var(--v7be-muted);
  margin: 0;
}

/* Winners / payments / testimonials */
.v7be-winner-row, .v7be-pay-row {
  display: flex;
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  -webkit-overflow-scrolling: touch;
}
.v7be-winner, .v7be-pay {
  flex: 0 0 auto;
  min-width: 12rem;
  background: var(--v7be-bg3);
  border: 1px solid var(--v7be-border);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}
.v7be-winner strong { color: var(--v7be-primary); display: block; font-size: 1.4rem; }
.v7be-winner span, .v7be-pay span {
  font-size: 1.1rem;
  color: var(--v7be-muted);
}
.v7be-pay i {
  font-size: 2.2rem;
  color: var(--v7be-accent);
  margin-bottom: 0.4rem;
  display: block;
}
.v7be-testimonial {
  background: linear-gradient(135deg, rgba(255,183,77,0.08), rgba(219,112,147,0.08));
  border-left: 3px solid var(--v7be-primary);
  border-radius: 0 1rem 1rem 0;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1rem;
}
.v7be-testimonial p {
  font-size: 1.3rem;
  line-height: 1.9rem;
  color: var(--v7be-text);
  margin-bottom: 0.6rem;
  font-style: italic;
}
.v7be-testimonial cite {
  font-size: 1.15rem;
  color: var(--v7be-primary);
  font-style: normal;
  font-weight: 700;
}

/* App CTA */
.v7be-app-cta {
  background: linear-gradient(145deg, #241a3a, #1a1230 50%, #2a1a28);
  border: 1px solid var(--v7be-pink);
  border-radius: 1.4rem;
  padding: 2rem 1.6rem;
  text-align: center;
  margin-bottom: 2rem;
}
.v7be-app-cta h2 {
  font-size: 1.8rem;
  color: var(--v7be-primary);
  margin-bottom: 0.8rem;
}
.v7be-app-cta p {
  font-size: 1.3rem;
  line-height: 1.9rem;
  color: var(--v7be-muted);
  margin-bottom: 1.4rem;
}

/* Footer */
.v7be-footer {
  background: #0b0b18;
  border-top: 1px solid var(--v7be-border);
  padding: 2.4rem 1.4rem 2rem;
  margin-bottom: 0;
}
.v7be-footer-brand {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v7be-primary);
  margin-bottom: 0.8rem;
}
.v7be-footer-desc {
  font-size: 1.25rem;
  line-height: 1.85rem;
  color: var(--v7be-muted);
  margin-bottom: 1.4rem;
}
.v7be-footer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.6rem;
}
.v7be-footer-btns .v7be-btn {
  min-height: 4rem;
  font-size: 1.15rem;
  padding: 0 1.1rem;
}
.v7be-footer-links h4 {
  font-size: 1.35rem;
  color: var(--v7be-text);
  margin: 1.2rem 0 0.8rem;
}
.v7be-footer-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
}
.v7be-footer-links a {
  font-size: 1.25rem;
  color: var(--v7be-muted);
  font-weight: 600;
}
.v7be-footer-links a:hover { color: var(--v7be-primary); }
.v7be-copyright {
  margin-top: 1.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 1.15rem;
  color: #7a6f66;
  text-align: center;
  line-height: 1.7rem;
}

/* Bottom nav */
.v7be-bottom-nav {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--v7be-bottom-h);
  background: linear-gradient(0deg, #140f24 0%, #1c1630 100%);
  border-top: 1px solid rgba(255, 183, 77, 0.28);
  box-shadow: 0 -0.4rem 1.6rem rgba(0,0,0,0.4);
  z-index: 1000;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 0.4rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.v7be-bnav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 6rem;
  min-height: 6rem;
  gap: 0.25rem;
  color: var(--v7be-muted);
  transition: color 0.15s ease, transform 0.15s ease;
  border-radius: 1rem;
}
.v7be-bnav-item i,
.v7be-bnav-item .material-icons,
.v7be-bnav-item ion-icon {
  font-size: 2.2rem;
  line-height: 1;
}
.v7be-bnav-item .material-icons { font-size: 2.4rem; }
.v7be-bnav-item span {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2rem;
}
.v7be-bnav-item:active { transform: scale(0.92); }
.v7be-bnav-active {
  color: var(--v7be-primary);
  background: rgba(255, 183, 77, 0.1);
}
.v7be-bnav-promo {
  color: var(--v7be-accent);
}
.v7be-bnav-promo:active,
.v7be-bnav-item:hover { color: var(--v7be-primary); }

/* RTP table */
.v7be-rtp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.2rem;
  margin: 1rem 0;
}
.v7be-rtp-table th,
.v7be-rtp-table td {
  padding: 0.9rem 0.7rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: left;
}
.v7be-rtp-table th {
  color: var(--v7be-primary);
  font-weight: 700;
  background: rgba(255,183,77,0.06);
}
.v7be-rtp-table td { color: var(--v7be-muted); }
.v7be-rtp-table tr:last-child td { border-bottom: none; }

/* Highlight strip */
.v7be-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(90deg, rgba(160,82,45,0.25), rgba(255,183,77,0.12));
  border: 1px solid var(--v7be-border);
  border-radius: 1.2rem;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
}
.v7be-strip i { font-size: 2.4rem; color: var(--v7be-primary); }
.v7be-strip p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  color: var(--v7be-text);
  margin: 0;
}

/* Desktop */
@media (min-width: 769px) {
  .v7be-bottom-nav { display: none; }
  .v7be-main { padding-bottom: 3rem; }
  body { max-width: 430px; box-shadow: 0 0 4rem rgba(0,0,0,0.5); }
}

@media (max-width: 360px) {
  .v7be-game-grid { grid-template-columns: repeat(3, 1fr); }
  .v7be-logo-text { font-size: 1.2rem; }
  .v7be-btn { padding: 0 0.9rem; font-size: 1.1rem; }
}
