/* ============================================================
 * nino gaming apk - theme stylesheet
 * All custom classes use the v3c8- prefix.
 * Palette: #20B2AA (teal) | #262626 (charcoal) | #006400 (deep green)
 *          #ADFF2F (lime accent) | #5D5D5D (slate)
 * Mobile-first: max 430px primary, scales up to desktop.
 * ============================================================ */

:root {
  --v3c8-primary: #20B2AA;
  --v3c8-bg: #262626;
  --v3c8-deep: #006400;
  --v3c8-accent: #ADFF2F;
  --v3c8-slate: #5D5D5D;
  --v3c8-text: #f4f7f5;
  --v3c8-muted: #b9c2bf;
  --v3c8-card: #1f1f1f;
  --v3c8-card2: #303030;
  --v3c8-border: #3a3a3a;
  --v3c8-radius: 14px;
  --v3c8-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
}

* { box-sizing: border-box; }

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--v3c8-bg);
  color: var(--v3c8-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5rem;
  min-height: 100vh;
  background-image:
    radial-gradient(circle at 12% 8%, rgba(32, 178, 170, 0.18), transparent 42%),
    radial-gradient(circle at 88% 22%, rgba(0, 100, 0, 0.22), transparent 48%);
}

img { max-width: 100%; display: block; }

a { color: var(--v3c8-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 { margin: 0 0 0.6em; line-height: 1.25; color: #fff; }
h1 { font-size: 2.2rem; }
h2 { font-size: 1.95rem; }
h3 { font-size: 1.7rem; }
h4 { font-size: 1.45rem; }
p { margin: 0 0 1em; }

.v3c8-container {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 0 1.2rem;
}
@media (min-width: 768px) {
  .v3c8-container { max-width: 960px; padding: 0 2rem; }
}

/* ---------- Header ---------- */
.v3c8-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #1c1c1c 0%, #262626 100%);
  border-bottom: 1px solid var(--v3c8-border);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
.v3c8-header-inner {
  max-width: 430px;
  margin: 0 auto;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}
@media (min-width: 768px) {
  .v3c8-header-inner { max-width: 960px; }
}
.v3c8-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.45rem;
}
.v3c8-brand img { width: 28px; height: 28px; border-radius: 6px; }
.v3c8-brand small { display: block; font-size: 1rem; color: var(--v3c8-primary); font-weight: 500; }

.v3c8-header-actions { display: flex; align-items: center; gap: 0.45rem; }
.v3c8-menu-toggle {
  background: transparent;
  border: 1px solid var(--v3c8-border);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.v3c8-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 1.3rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  min-height: 40px;
}
.v3c8-btn:hover { transform: translateY(-1px); text-decoration: none; }
.v3c8-btn-primary {
  background: linear-gradient(135deg, var(--v3c8-deep), var(--v3c8-primary));
  color: #fff;
  box-shadow: 0 4px 14px rgba(32, 178, 170, 0.4);
}
.v3c8-btn-accent {
  background: linear-gradient(135deg, var(--v3c8-accent), #6fd11a);
  color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(173, 255, 47, 0.35);
}
.v3c8-btn-ghost {
  background: transparent;
  border: 1px solid var(--v3c8-primary);
  color: var(--v3c8-primary);
}

/* ---------- Mobile menu ---------- */
.v3c8-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 78%;
  max-width: 320px;
  height: 100vh;
  background: #1b1b1b;
  z-index: 9999;
  padding: 4.5rem 1.4rem 2rem;
  overflow-y: auto;
  transition: right .28s ease;
  border-left: 1px solid var(--v3c8-border);
}
.v3c8-mobile-menu.v3c8-menu-open { right: 0; box-shadow: -8px 0 30px rgba(0,0,0,.5); }
.v3c8-menu-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
.v3c8-mobile-menu h4 { color: var(--v3c8-accent); margin-top: 1.2rem; }
.v3c8-mobile-menu a {
  display: block;
  padding: 0.7rem 0.4rem;
  color: var(--v3c8-text);
  border-bottom: 1px solid #2c2c2c;
  font-size: 1.35rem;
}
.v3c8-menu-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9998;
}
.v3c8-menu-overlay.v3c8-menu-open { display: block; }

/* ---------- Layout helpers ---------- */
.v3c8-main { padding-top: 64px; padding-bottom: 80px; }
@media (max-width: 768px) {
  .v3c8-main { padding-bottom: 96px; }
}
.v3c8-section { padding: 2.4rem 0; }
.v3c8-section-alt { background: rgba(31,31,31,0.6); }
.v3c8-section-title {
  display: flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.4rem;
}
.v3c8-section-title h2 { margin: 0; }
.v3c8-section-title .v3c8-icon { color: var(--v3c8-accent); font-size: 1.9rem; }
.v3c8-lead { color: var(--v3c8-muted); font-size: 1.4rem; }

/* ---------- Carousel ---------- */
.v3c8-carousel {
  position: relative;
  border-radius: var(--v3c8-radius);
  overflow: hidden;
  box-shadow: var(--v3c8-shadow);
  margin-bottom: 1.4rem;
}
.v3c8-slide {
  display: none;
  position: relative;
}
.v3c8-slide.v3c8-active { display: block; }
.v3c8-slide img { width: 100%; height: 200px; object-fit: cover; }
.v3c8-slide-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  color: #fff;
}
.v3c8-slide-caption h3 { margin: 0 0 .25rem; color: var(--v3c8-accent); font-size: 1.6rem; }
.v3c8-slide-caption p { margin: 0; font-size: 1.25rem; }
.v3c8-carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  padding: 0.6rem 0;
}
.v3c8-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #555;
  border: none; cursor: pointer;
}
.v3c8-dot.v3c8-active { background: var(--v3c8-accent); }

/* ---------- Game grid ---------- */
.v3c8-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
@media (min-width: 560px) { .v3c8-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 768px) { .v3c8-grid { grid-template-columns: repeat(6, 1fr); } }

.v3c8-card {
  background: var(--v3c8-card);
  border: 1px solid var(--v3c8-border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s;
}
.v3c8-card:hover {
  transform: translateY(-2px);
  border-color: var(--v3c8-primary);
  box-shadow: 0 6px 18px rgba(32,178,170,.25);
  text-decoration: none;
}
.v3c8-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #111;
  object-fit: cover;
}
.v3c8-card-name {
  font-size: 1.15rem;
  color: var(--v3c8-text);
  padding: 0.45rem 0.3rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.v3c8-cat-tag {
  display: inline-block;
  background: rgba(32,178,170,.15);
  color: var(--v3c8-primary);
  font-size: 1.1rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ---------- Info / feature / promo blocks ---------- */
.v3c8-card-info {
  background: var(--v3c8-card);
  border: 1px solid var(--v3c8-border);
  border-radius: var(--v3c8-radius);
  padding: 1.2rem;
  box-shadow: var(--v3c8-shadow);
}
.v3c8-feature-row {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .v3c8-feature-row { grid-template-columns: repeat(3, 1fr); } }
.v3c8-feature {
  background: var(--v3c8-card2);
  border-radius: 12px;
  padding: 1rem;
  border-left: 3px solid var(--v3c8-accent);
}
.v3c8-feature h4 { color: var(--v3c8-accent); margin-bottom: .35rem; }
.v3c8-feature p { color: var(--v3c8-muted); margin: 0; font-size: 1.3rem; }

.v3c8-promo-band {
  background: linear-gradient(135deg, var(--v3c8-deep), var(--v3c8-primary));
  border-radius: var(--v3c8-radius);
  padding: 1.4rem;
  color: #fff;
  text-align: center;
  box-shadow: var(--v3c8-shadow);
}
.v3c8-promo-band h3 { color: var(--v3c8-accent); }
.v3c8-promo-band p { color: #eaf3f1; }

/* ---------- Testimonials ---------- */
.v3c8-testimonials { display: grid; gap: 0.8rem; }
@media (min-width: 768px) { .v3c8-testimonials { grid-template-columns: repeat(2,1fr); } }
.v3c8-testimonial {
  background: var(--v3c8-card);
  border-left: 3px solid var(--v3c8-primary);
  border-radius: 10px;
  padding: 1rem;
}
.v3c8-testimonial .v3c8-stars { color: #FFD700; }
.v3c8-testimonial cite { color: var(--v3c8-accent); font-style: normal; font-weight: 600; }

/* ---------- Payment chips ---------- */
.v3c8-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.v3c8-chip {
  background: var(--v3c8-card2);
  border: 1px solid var(--v3c8-border);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 1.2rem;
  color: var(--v3c8-text);
  display: inline-flex; align-items: center; gap: 0.35rem;
}

/* ---------- RTP table ---------- */
.v3c8-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.v3c8-table th, .v3c8-table td {
  padding: 0.6rem 0.5rem;
  border-bottom: 1px solid var(--v3c8-border);
  text-align: left;
}
.v3c8-table th { color: var(--v3c8-accent); }
.v3c8-rtp-bar {
  height: 7px; border-radius: 4px;
  background: #333; overflow: hidden; width: 90px; display: inline-block; vertical-align: middle;
}
.v3c8-rtp-fill { height: 100%; background: linear-gradient(90deg, var(--v3c8-accent), var(--v3c8-primary)); }

/* ---------- FAQ ---------- */
.v3c8-faq-list { display: grid; gap: 0.6rem; }
.v3c8-faq-item {
  background: var(--v3c8-card);
  border: 1px solid var(--v3c8-border);
  border-radius: 10px;
  overflow: hidden;
}
.v3c8-faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.9rem 1rem;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 0.6rem;
}
.v3c8-faq-q .v3c8-faq-chev { color: var(--v3c8-accent); transition: transform .2s; }
.v3c8-faq-item.v3c8-faq-open .v3c8-faq-chev { transform: rotate(180deg); }
.v3c8-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .25s ease;
  color: var(--v3c8-muted);
  padding: 0 1rem;
}
.v3c8-faq-item.v3c8-faq-open .v3c8-faq-a { max-height: 320px; padding: 0 1rem 1rem; }

/* ---------- Winners ---------- */
.v3c8-winners {
  background: var(--v3c8-card);
  border-radius: 12px;
  padding: 0.6rem;
  display: grid; gap: 0.4rem;
}
.v3c8-winner-row {
  display: flex; justify-content: space-between;
  padding: 0.5rem 0.6rem;
  border-bottom: 1px dashed #333;
  font-size: 1.25rem;
}
.v3c8-winner-row:last-child { border-bottom: none; }
.v3c8-winner-amount { color: var(--v3c8-accent); font-weight: 700; }

/* ---------- Footer ---------- */
.v3c8-footer {
  background: #161616;
  border-top: 1px solid var(--v3c8-border);
  padding: 2rem 0 1.5rem;
  color: var(--v3c8-muted);
}
.v3c8-footer h4 { color: var(--v3c8-accent); margin-bottom: 0.6rem; }
.v3c8-footer-cols {
  display: grid; gap: 1.2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .v3c8-footer-cols { grid-template-columns: repeat(4,1fr); } }
.v3c8-footer a { color: var(--v3c8-muted); display: block; padding: 0.25rem 0; font-size: 1.25rem; }
.v3c8-footer a:hover { color: var(--v3c8-accent); }
.v3c8-footer-bottom {
  border-top: 1px solid #2a2a2a;
  margin-top: 1.4rem; padding-top: 1rem;
  text-align: center; font-size: 1.15rem; color: #8a8a8a;
}

/* ---------- Bottom navigation ---------- */
.v3c8-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: linear-gradient(180deg, #1c1c1c, #111);
  border-top: 1px solid var(--v3c8-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -3px 14px rgba(0,0,0,.5);
}
.v3c8-nav-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--v3c8-muted);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  font-size: 1rem;
  cursor: pointer;
  min-width: 60px;
  min-height: 60px;
  padding: 4px 2px;
  transition: color .15s, transform .15s;
  text-decoration: none;
}
.v3c8-nav-btn:hover { color: var(--v3c8-accent); transform: translateY(-2px); text-decoration: none; }
.v3c8-nav-btn .v3c8-nav-ico { font-size: 22px; line-height: 1; }
.v3c8-nav-btn.v3c8-nav-current { color: var(--v3c8-accent); }
.v3c8-nav-btn.v3c8-nav-promo { color: var(--v3c8-accent); }
.v3c8-nav-btn.v3c8-nav-promo .v3c8-nav-ico { color: var(--v3c8-accent); }

@media (min-width: 769px) {
  .v3c8-bottom-nav { display: none; }
  .v3c8-mobile-only { display: none !important; }
}

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

/* ---------- Utility ---------- */
.v3c8-text-center { text-align: center; }
.v3c8-mt-1 { margin-top: 0.6rem; }
.v3c8-mt-2 { margin-top: 1.2rem; }
.v3c8-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.v3c8-breadcrumb { font-size: 1.2rem; color: var(--v3c8-muted); margin-bottom: 0.8rem; }
.v3c8-breadcrumb a { color: var(--v3c8-primary); }
