/* ===========================================================
 * Bingo Casino - design-f3f6.css
 * Mobile-first (max-width 430px), expands to desktop.
 * All custom classes use the "v60e-" prefix.
 * Palette: #004D40 (deep teal) | #0A0A0A (near-black)
 * Code comments are in English.
 * =========================================================== */

:root {
  --v60e-primary: #004D40;
  --v60e-primary-light: #00695C;
  --v60e-primary-glow: #1DE9B6;
  --v60e-bg: #0A0A0A;
  --v60e-bg-soft: #121212;
  --v60e-bg-card: #1A1A1A;
  --v60e-text: #F5F5F5;
  --v60e-text-muted: #BDBDBD;
  --v60e-accent: #FFC107;
  --v60e-accent-2: #FF5252;
  --v60e-border: #2A2A2A;
  --v60e-radius: 12px;
  --v60e-radius-sm: 8px;
  --v60e-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: var(--v60e-bg);
  color: var(--v60e-text);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}

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

a { color: var(--v60e-primary-glow); text-decoration: none; }
a:hover { color: var(--v60e-accent); }

/* ====================== Layout containers ====================== */
.v60e-wrapper { width: 100%; max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }
.v60e-section { padding: 2.4rem 0; }
.v60e-section-alt { background: var(--v60e-bg-soft); }

@media (min-width: 769px) {
  .v60e-wrapper { max-width: 1100px; padding: 0 2rem; }
}

/* ====================== Header ====================== */
.v60e-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, #00382E 0%, #00251F 100%);
  border-bottom: 1px solid rgba(29, 233, 182, 0.18);
}
.v60e-header-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0.7rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 0.8rem;
}
.v60e-logo { display: flex; align-items: center; gap: 0.6rem; color: var(--v60e-text); }
.v60e-logo img { width: 30px; height: 30px; border-radius: 6px; }
.v60e-logo-text { font-size: 1.7rem; font-weight: 800; letter-spacing: 0.3px; }
.v60e-logo-text span { color: var(--v60e-primary-glow); }

.v60e-header-actions { display: flex; align-items: center; gap: 0.5rem; }

.v60e-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 1.3rem; font-weight: 700;
  padding: 0.7rem 1.2rem; border-radius: 999px;
  border: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  min-height: 36px; text-decoration: none;
}
.v60e-btn:active { transform: scale(0.96); }
.v60e-btn-primary { background: linear-gradient(135deg, #FFC107, #FF8F00); color: #1A1A1A; }
.v60e-btn-primary:hover { box-shadow: 0 4px 14px rgba(255, 193, 7, 0.45); color: #1A1A1A; }
.v60e-btn-outline { background: transparent; color: var(--v60e-text); border: 1px solid var(--v60e-primary-glow); }
.v60e-btn-outline:hover { background: rgba(29, 233, 182, 0.12); }
.v60e-btn-block { display: flex; width: 100%; }

.v60e-menu-btn {
  background: transparent; border: none; color: var(--v60e-text);
  font-size: 1.8rem; cursor: pointer; padding: 0.4rem 0.6rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* ====================== Mobile drawer menu ====================== */
.v60e-mobile-menu {
  position: fixed;
  top: 0; right: -85%;
  width: 80%; max-width: 320px; height: 100vh;
  background: #060606;
  z-index: 9999;
  padding: 2.4rem 1.6rem;
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid var(--v60e-border);
}
.v60e-mobile-menu.v60e-menu-open { right: 0; }
.v60e-mobile-menu h3 { color: var(--v60e-primary-glow); font-size: 1.5rem; margin: 1.6rem 0 0.8rem; letter-spacing: 0.5px; }
.v60e-mobile-menu a {
  display: block;
  padding: 0.9rem 0.6rem;
  border-bottom: 1px solid var(--v60e-border);
  color: var(--v60e-text); font-size: 1.4rem;
}
.v60e-mobile-menu a:hover { color: var(--v60e-accent); padding-left: 1rem; }
.v60e-menu-close {
  position: absolute; top: 1rem; right: 1rem;
  background: transparent; border: none; color: var(--v60e-text);
  font-size: 2rem; cursor: pointer;
}

.v60e-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease;
}
.v60e-overlay.v60e-overlay-show { opacity: 1; visibility: visible; }

/* ====================== Hero / Carousel ====================== */
.v60e-main { padding-top: 64px; }
.v60e-hero { position: relative; overflow: hidden; }
.v60e-carousel { position: relative; border-radius: var(--v60e-radius); overflow: hidden; }
.v60e-slide {
  display: none;
  position: relative;
  cursor: pointer;
}
.v60e-slide.v60e-slide-active { display: block; }
.v60e-slide img { width: 100%; height: 200px; object-fit: cover; border-radius: var(--v60e-radius); }
.v60e-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
}
.v60e-slide-overlay h2 { font-size: 1.8rem; color: var(--v60e-accent); margin-bottom: 0.3rem; }
.v60e-slide-overlay p { font-size: 1.25rem; color: var(--v60e-text-muted); }

.v60e-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 0.8rem; }
.v60e-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); cursor: pointer; border: none;
}
.v60e-dot.v60e-dot-active { background: var(--v60e-primary-glow); }

@media (min-width: 769px) {
  .v60e-slide img { height: 360px; }
}

/* ====================== Section headings ====================== */
.v60e-section-head { margin-bottom: 1.2rem; }
.v60e-section-head h2 { font-size: 1.9rem; color: var(--v60e-text); border-left: 4px solid var(--v60e-primary-glow); padding-left: 0.8rem; }
.v60e-section-head p { font-size: 1.3rem; color: var(--v60e-text-muted); margin-top: 0.4rem; padding-left: 0.8rem; }

/* ====================== Filter pills ====================== */
.v60e-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.2rem; }
.v60e-filter-pill {
  background: var(--v60e-bg-card);
  border: 1px solid var(--v60e-border);
  color: var(--v60e-text-muted);
  padding: 0.5rem 1rem; border-radius: 999px;
  font-size: 1.2rem; cursor: pointer;
  transition: all 0.18s ease;
}
.v60e-filter-pill:hover { color: var(--v60e-text); border-color: var(--v60e-primary-glow); }
.v60e-filter-pill.v60e-filter-active {
  background: var(--v60e-primary); color: #fff; border-color: var(--v60e-primary-glow);
}

/* ====================== Game grid ====================== */
.v60e-game-group h3 {
  font-size: 1.55rem; color: var(--v60e-accent);
  margin: 1.6rem 0 0.8rem; letter-spacing: 0.3px;
}
.v60e-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}
.v60e-game-card { cursor: pointer; text-align: center; transition: transform 0.18s ease; }
.v60e-game-card:hover { transform: translateY(-3px); }
.v60e-game-card img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  border-radius: var(--v60e-radius-sm);
  border: 1px solid var(--v60e-border);
  background: #111;
}
.v60e-game-card span {
  display: block; font-size: 1.1rem; color: var(--v60e-text-muted);
  margin-top: 0.3rem;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

@media (min-width: 769px) {
  .v60e-game-grid { grid-template-columns: repeat(6, 1fr); gap: 1rem; }
  .v60e-game-card span { font-size: 1.25rem; }
}

/* ====================== Info / content cards ====================== */
.v60e-card {
  background: var(--v60e-bg-card);
  border: 1px solid var(--v60e-border);
  border-radius: var(--v60e-radius);
  padding: 1.4rem;
  margin-bottom: 1rem;
}
.v60e-card h3 { color: var(--v60e-primary-glow); font-size: 1.5rem; margin-bottom: 0.5rem; }
.v60e-card p { color: var(--v60e-text-muted); font-size: 1.3rem; }
.v60e-card a { color: var(--v60e-accent); font-weight: 700; }
.v60e-card ul { padding-left: 1.4rem; color: var(--v60e-text-muted); }
.v60e-card li { margin-bottom: 0.3rem; font-size: 1.3rem; }

.v60e-grid-2 { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 769px) { .v60e-grid-2 { grid-template-columns: 1fr 1fr; } }

/* ====================== RTP table ====================== */
.v60e-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.25rem; }
.v60e-rtp-table th, .v60e-rtp-table td {
  padding: 0.7rem 0.6rem; border-bottom: 1px solid var(--v60e-border); text-align: left;
}
.v60e-rtp-table th { color: var(--v60e-primary-glow); font-weight: 700; }
.v60e-rtp-table td:last-child { color: var(--v60e-accent); font-weight: 700; }

/* ====================== Testimonials ====================== */
.v60e-testimonial { background: var(--v60e-bg-card); border-radius: var(--v60e-radius); padding: 1.2rem; margin-bottom: 0.8rem; border-left: 3px solid var(--v60e-accent); }
.v60e-testimonial .v60e-stars { color: var(--v60e-accent); margin-bottom: 0.3rem; }
.v60e-testimonial p { font-size: 1.3rem; color: var(--v60e-text); margin-bottom: 0.4rem; }
.v60e-testimonial .v60e-author { font-size: 1.15rem; color: var(--v60e-text-muted); }

/* ====================== Payment ====================== */
.v60e-pay-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.v60e-pay-item {
  background: var(--v60e-bg-card); border: 1px solid var(--v60e-border);
  border-radius: var(--v60e-radius-sm);
  padding: 0.6rem 1rem; font-size: 1.2rem; color: var(--v60e-text-muted);
}

/* ====================== Winners ====================== */
.v60e-winner {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--v60e-bg-card); border-radius: var(--v60e-radius-sm);
  padding: 0.7rem 1rem; margin-bottom: 0.5rem; font-size: 1.25rem;
}
.v60e-winner span:last-child { color: var(--v60e-accent); font-weight: 700; }

/* ====================== CTA block ====================== */
.v60e-cta {
  background: linear-gradient(135deg, var(--v60e-primary), #002820);
  border-radius: var(--v60e-radius);
  padding: 1.8rem; text-align: center; margin: 1.6rem 0;
  border: 1px solid rgba(29, 233, 182, 0.25);
}
.v60e-cta h3 { color: var(--v60e-accent); font-size: 1.8rem; margin-bottom: 0.4rem; }
.v60e-cta p { color: var(--v60e-text-muted); font-size: 1.3rem; margin-bottom: 1rem; }

/* ====================== Footer ====================== */
.v60e-footer {
  background: #050505; border-top: 1px solid var(--v60e-border);
  padding: 2rem 0; margin-top: 2rem;
}
.v60e-footer-inner { max-width: 1100px; margin: 0 auto; padding: 0 1.2rem; }
.v60e-footer-brand { font-size: 1.35rem; color: var(--v60e-text-muted); margin-bottom: 1rem; line-height: 1.6; }
.v60e-footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem 1.2rem; margin-bottom: 1rem; }
.v60e-footer-links a { font-size: 1.25rem; color: var(--v60e-text-muted); }
.v60e-footer-links a:hover { color: var(--v60e-primary-glow); }
.v60e-footer-promos { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.2rem; }
.v60e-footer-copy { font-size: 1.15rem; color: #666; border-top: 1px solid var(--v60e-border); padding-top: 1rem; }

@media (min-width: 769px) {
  .v60e-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
}

/* ====================== Mobile bottom nav ====================== */
.v60e-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(180deg, #002820 0%, #00120D 100%);
  border-top: 1px solid rgba(29, 233, 182, 0.25);
  display: flex; justify-content: space-around; align-items: center;
  z-index: 1000;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.v60e-bottom-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px;
  color: var(--v60e-text-muted);
  font-size: 1rem; gap: 0.2rem;
  transition: color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.v60e-bottom-nav a .material-icons,
.v60e-bottom-nav a ion-icon,
.v60e-bottom-nav a i { font-size: 22px; }
.v60e-bottom-nav a:hover { color: var(--v60e-accent); transform: translateY(-2px); }
.v60e-bottom-nav a.v60e-nav-active { color: var(--v60e-primary-glow); }

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

@media (max-width: 768px) {
  .v60e-main { padding-bottom: 80px; }
  .v60e-desktop-only { display: none !important; }
}

/* ====================== Utility ====================== */
.v60e-text-center { text-align: center; }
.v60e-mt-1 { margin-top: 0.8rem; }
.v60e-mt-2 { margin-top: 1.6rem; }
.v60e-highlight { color: var(--v60e-accent); font-weight: 700; }
.v60e-promo-text { color: var(--v60e-primary-glow); font-weight: 700; }
