/* ============================================================
 * pinas77 login - Core Base Stylesheet (style-7dc9.css)
 * Mobile-first HTML5 casino layout, max viewport width 430px.
 * Every custom class uses the "v9fc-" prefix for namespacing.
 * Palette: #1C2833 (bg) | #00695C (primary) | #40E0D0 (accent)
 * ========================================================== */

:root {
  --v9fc-bg: #1C2833;
  --v9fc-bg-alt: #243447;
  --v9fc-primary: #00695C;
  --v9fc-primary-dark: #004D44;
  --v9fc-accent: #40E0D0;
  --v9fc-text: #F5FBFA;
  --v9fc-text-dim: #B7C7C8;
  --v9fc-gold: #F4C430;
  --v9fc-card: #2A3B4C;
  --v9fc-border: rgba(64, 224, 208, 0.18);
  --v9fc-radius: 14px;
  --v9fc-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

* { box-sizing: border-box; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--v9fc-bg);
  color: var(--v9fc-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--v9fc-accent); text-decoration: none; }

/* ---------- Layout ---------- */
.v9fc-wrapper { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v9fc-container { width: 100%; }
main.v9fc-main { padding-top: 6.4rem; padding-bottom: 1rem; }
@media (max-width: 768px) {
  main.v9fc-main { padding-bottom: 9rem; }
}

/* ---------- Header ---------- */
.v9fc-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(135deg, var(--v9fc-primary-dark) 0%, var(--v9fc-bg) 100%);
  border-bottom: 1px solid var(--v9fc-border);
  box-shadow: var(--v9fc-shadow);
}
.v9fc-header-inner {
  max-width: 430px; margin: 0 auto; padding: 0.5rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  min-height: 5.6rem;
}
.v9fc-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--v9fc-text); }
.v9fc-logo img { width: 28px; height: 28px; border-radius: 6px; }
.v9fc-logo-text { font-weight: 700; font-size: 1.6rem; letter-spacing: 0.3px; }
.v9fc-logo-text span { color: var(--v9fc-accent); }

.v9fc-actions { display: flex; align-items: center; gap: 0.5rem; }
.v9fc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.4rem; padding: 0.7rem 1.2rem; border-radius: 30px;
  font-size: 1.3rem; font-weight: 600; cursor: pointer;
  border: none; min-height: 38px; transition: transform .15s ease, box-shadow .15s ease;
}
.v9fc-btn:active { transform: scale(0.96); }
.v9fc-btn-register {
  background: linear-gradient(135deg, var(--v9fc-accent) 0%, #6FF2E2 100%);
  color: #052929; box-shadow: 0 3px 10px rgba(64,224,208,0.35);
}
.v9fc-btn-login {
  background: transparent; color: var(--v9fc-accent);
  border: 1.5px solid var(--v9fc-accent);
}
.v9fc-menu-btn {
  background: transparent; border: none; color: var(--v9fc-accent);
  font-size: 1.8rem; cursor: pointer; padding: 0.4rem 0.6rem; min-width: 40px;
}

/* ---------- Mobile dropdown menu ---------- */
.v9fc-mobile-menu {
  position: fixed; top: 5.6rem; left: 0; right: 0; z-index: 9999;
  background: var(--v9fc-bg-alt);
  border-bottom: 1px solid var(--v9fc-border);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
}
.v9fc-mobile-menu.v9fc-open { max-height: 80vh; overflow-y: auto; }
.v9fc-mobile-menu a {
  display: block; padding: 1rem 1.4rem; color: var(--v9fc-text);
  border-bottom: 1px solid rgba(255,255,255,0.06); font-size: 1.4rem;
}
.v9fc-mobile-menu a:hover, .v9fc-mobile-menu a:focus { background: var(--v9fc-primary-dark); }

/* ---------- Carousel ---------- */
.v9fc-carousel { position: relative; margin: 1rem 0; border-radius: var(--v9fc-radius); overflow: hidden; }
.v9fc-slide {
  position: relative; display: none; cursor: pointer;
}
.v9fc-slide.v9fc-active { display: block; }
.v9fc-slide img { width: 100%; height: 180px; object-fit: cover; }
.v9fc-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem; background: linear-gradient(transparent, rgba(0,0,0,0.75));
  font-size: 1.3rem;
}
.v9fc-slide-cap strong { color: var(--v9fc-accent); }
.v9fc-dots { position: absolute; bottom: 8px; left: 0; right: 0; text-align: center; }
.v9fc-dot {
  display: inline-block; width: 8px; height: 8px; margin: 0 3px;
  border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer;
}
.v9fc-dot.v9fc-active { background: var(--v9fc-accent); }

/* ---------- Headings ---------- */
.v9fc-h1 {
  font-size: 2.2rem; line-height: 1.25; margin: 1.6rem 0 0.8rem;
  color: var(--v9fc-text);
}
.v9fc-h1 span { color: var(--v9fc-accent); }
.v9fc-section { margin: 2rem 0; }
.v9fc-section-title {
  font-size: 1.7rem; margin: 0 0 1rem; padding-left: 0.8rem;
  border-left: 4px solid var(--v9fc-accent); color: var(--v9fc-text);
}
.v9fc-section-title small { display: block; font-size: 1.2rem; color: var(--v9fc-text-dim); font-weight: 400; }
.v9fc-lead { color: var(--v9fc-text-dim); font-size: 1.4rem; margin-bottom: 1rem; }
.v9fc-p { margin: 0 0 1rem; color: var(--v9fc-text); }
.v9fc-promo-link { color: var(--v9fc-accent); font-weight: 700; cursor: pointer; }
.v9fc-promo-link:hover { text-decoration: underline; }

/* ---------- Game grid (compact icon layout) ---------- */
.v9fc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem;
}
.v9fc-card {
  background: var(--v9fc-card); border: 1px solid var(--v9fc-border);
  border-radius: var(--v9fc-radius); padding: 0.6rem; text-align: center;
  cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.v9fc-card:hover, .v9fc-card:active {
  transform: translateY(-2px); border-color: var(--v9fc-accent);
  box-shadow: 0 6px 14px rgba(64,224,208,0.18);
}
.v9fc-card img {
  width: 100%; height: 80px; object-fit: cover; border-radius: 10px; margin-bottom: 0.4rem;
}
.v9fc-card-name { font-size: 1.15rem; color: var(--v9fc-text); font-weight: 600; line-height: 1.25; }

/* ---------- Feature / info blocks ---------- */
.v9fc-features { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.v9fc-feature {
  background: var(--v9fc-card); border-radius: var(--v9fc-radius);
  padding: 1.2rem; border-left: 3px solid var(--v9fc-accent);
}
.v9fc-feature h3 { margin: 0 0 0.4rem; font-size: 1.4rem; color: var(--v9fc-accent); }
.v9fc-feature p { margin: 0; font-size: 1.3rem; color: var(--v9fc-text-dim); }

.v9fc-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.3rem; }
.v9fc-rtp-table th, .v9fc-rtp-table td {
  text-align: left; padding: 0.7rem 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.v9fc-rtp-table th { color: var(--v9fc-accent); }
.v9fc-rtp-table td:last-child { color: var(--v9fc-gold); font-weight: 700; text-align: right; }

/* ---------- Testimonials ---------- */
.v9fc-testimonials { display: grid; gap: 1rem; }
.v9fc-testimonial {
  background: var(--v9fc-card); border-radius: var(--v9fc-radius); padding: 1.1rem;
}
.v9fc-testimonial-stars { color: var(--v9fc-gold); font-size: 1.2rem; }
.v9fc-testimonial p { margin: 0.4rem 0 0.6rem; font-size: 1.3rem; }
.v9fc-testimonial cite { color: var(--v9fc-text-dim); font-style: normal; font-size: 1.2rem; }

/* ---------- Winners strip ---------- */
.v9fc-winners {
  background: var(--v9fc-primary-dark); border-radius: var(--v9fc-radius);
  padding: 0.8rem 1rem; overflow: hidden;
}
.v9fc-winners-list { list-style: none; margin: 0; padding: 0; }
.v9fc-winners-list li {
  display: flex; justify-content: space-between;
  padding: 0.4rem 0; font-size: 1.3rem; border-bottom: 1px dashed rgba(255,255,255,0.08);
}
.v9fc-winners-list li:last-child { border-bottom: none; }
.v9fc-winners-list .v9fc-amt { color: var(--v9fc-gold); font-weight: 700; }

/* ---------- Payment methods ---------- */
.v9fc-payments { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.v9fc-pay {
  background: var(--v9fc-card); border: 1px solid var(--v9fc-border);
  border-radius: 10px; padding: 0.5rem 0.9rem; font-size: 1.2rem; color: var(--v9fc-text);
}

/* ---------- App download CTA ---------- */
.v9fc-appcta {
  background: linear-gradient(135deg, var(--v9fc-primary) 0%, var(--v9fc-primary-dark) 100%);
  border-radius: var(--v9fc-radius); padding: 1.4rem; text-align: center;
}
.v9fc-appcta h3 { margin: 0 0 0.4rem; color: var(--v9fc-accent); }
.v9fc-appcta p { margin: 0 0 1rem; color: var(--v9fc-text-dim); font-size: 1.3rem; }

/* ---------- FAQ ---------- */
.v9fc-faq-item { margin-bottom: 0.8rem; }
.v9fc-faq-item summary {
  cursor: pointer; font-weight: 600; color: var(--v9fc-text);
  background: var(--v9fc-card); padding: 0.8rem 1rem; border-radius: 10px; list-style: none;
}
.v9fc-faq-item summary::-webkit-details-marker { display: none; }
.v9fc-faq-item[open] summary { color: var(--v9fc-accent); }
.v9fc-faq-item p { padding: 0.6rem 1rem 0; color: var(--v9fc-text-dim); font-size: 1.3rem; }

/* ---------- Big CTA ---------- */
.v9fc-cta {
  display: block; text-align: center; margin: 1.5rem 0; padding: 1.2rem;
  border-radius: 30px; font-size: 1.5rem; font-weight: 700;
  background: linear-gradient(135deg, var(--v9fc-accent) 0%, #6FF2E2 100%);
  color: #052929; cursor: pointer; border: none;
  box-shadow: 0 6px 16px rgba(64,224,208,0.35);
}

/* ---------- Footer ---------- */
.v9fc-footer {
  background: var(--v9fc-bg-alt); border-top: 1px solid var(--v9fc-border);
  padding: 2rem 1.2rem 6rem; margin-top: 2rem; font-size: 1.3rem; color: var(--v9fc-text-dim);
}
.v9fc-footer h4 { color: var(--v9fc-accent); margin: 0 0 0.6rem; font-size: 1.4rem; }
.v9fc-footer-links { display: flex; flex-wrap: wrap; gap: 0.6rem 1rem; margin: 0.6rem 0 1.2rem; }
.v9fc-footer-links a { color: var(--v9fc-text-dim); font-size: 1.2rem; }
.v9fc-footer-links a:hover { color: var(--v9fc-accent); }
.v9fc-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin: 1rem 0; }
.v9fc-footer-promos button {
  background: var(--v9fc-card); border: 1px solid var(--v9fc-border);
  color: var(--v9fc-accent); padding: 0.6rem 1rem; border-radius: 30px;
  font-size: 1.2rem; cursor: pointer; font-weight: 600;
}
.v9fc-copy { font-size: 1.1rem; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1rem; }

/* ---------- Mobile bottom nav ---------- */
.v9fc-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: 60px; display: flex; justify-content: space-around; align-items: stretch;
  background: linear-gradient(180deg, var(--v9fc-primary-dark) 0%, var(--v9fc-bg) 100%);
  border-top: 1px solid var(--v9fc-border);
  box-shadow: 0 -4px 14px rgba(0,0,0,0.35);
}
.v9fc-bottomnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--v9fc-text-dim); text-decoration: none; font-size: 1.05rem; gap: 2px;
  background: transparent; border: none; cursor: pointer; min-width: 60px; min-height: 60px;
  transition: color .15s ease, transform .15s ease;
}
.v9fc-bottomnav-item i, .v9fc-bottomnav-item .material-icons-outlined {
  font-size: 22px;
}
.v9fc-bottomnav-item:active { transform: scale(0.92); color: var(--v9fc-accent); }
.v9fc-bottomnav-item.v9fc-current { color: var(--v9fc-accent); }
.v9fc-bottomnav-badge {
  position: relative;
}
.v9fc-bottomnav-badge::after {
  content: ""; position: absolute; top: 6px; right: 50%; transform: translateX(14px);
  width: 7px; height: 7px; background: var(--v9fc-gold); border-radius: 50%;
}

@media (min-width: 769px) {
  .v9fc-bottomnav { display: none; }
  .v9fc-header { display: none; }
  main.v9fc-main { padding-top: 2rem; }
  .v9fc-wrapper { max-width: 760px; }
}

/* Desktop top nav for larger screens */
.v9fc-topnav-desktop {
  display: none;
}
@media (min-width: 769px) {
  .v9fc-topnav-desktop {
    display: flex; align-items: center; gap: 1rem; justify-content: center;
    background: var(--v9fc-bg-alt); border-bottom: 1px solid var(--v9fc-border); padding: 0.8rem;
  }
  .v9fc-topnav-desktop a { color: var(--v9fc-text); font-size: 1.3rem; }
  .v9fc-topnav-desktop a:hover { color: var(--v9fc-accent); }
}
