/* ============================================================
 * vm66.click - Global Stylesheet (base file)
 * Palette: #D2691E (chocolate) | #273746 (deep slate) | #8B7355 (tan)
 * All custom classes use the "g03b-" prefix for namespace isolation.
 * Mobile-first, root font 62.5% (1rem = 10px), max content width 430px.
 * ============================================================ */

:root {
  --g03b-primary: #D2691E;
  --g03b-primary-hover: #e07b30;
  --g03b-primary-dark: #b8581a;
  --g03b-bg: #1a242c;
  --g03b-bg-2: #273746;
  --g03b-surface: #2f3e4d;
  --g03b-surface-2: #34495e;
  --g03b-secondary: #8B7355;
  --g03b-gold: #e8b974;
  --g03b-text: #f5ede0;
  --g03b-text-muted: #b0a48f;
  --g03b-border: #3d4f60;
  --g03b-success: #4caf50;
  --g03b-danger: #e74c3c;
  --g03b-radius: 1.2rem;
  --g03b-radius-sm: 0.8rem;
  --g03b-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.35);
  --g03b-header-h: 6rem;
  --g03b-bottom-nav-h: 6.4rem;
}

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

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

body {
  font-family: 'Segoe UI', 'Roboto', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--g03b-bg);
  color: var(--g03b-text);
  font-size: 1.5rem;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--g03b-primary); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.g03b-wrapper { max-width: 430px; margin: 0 auto; position: relative; min-height: 100vh; background: var(--g03b-bg); }

/* ---------- Header ---------- */
.g03b-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(39, 55, 70, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 0.1rem solid var(--g03b-border);
  transition: background .3s, box-shadow .3s;
}
.g03b-header.g03b-scrolled { box-shadow: 0 0.4rem 1.2rem rgba(0, 0, 0, 0.4); background: rgba(26, 36, 44, 0.98); }

.g03b-header-inner {
  max-width: 430px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; height: var(--g03b-header-h); gap: 0.6rem;
}

.g03b-logo { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }
.g03b-logo img { width: 3.2rem; height: 3.2rem; border-radius: 0.6rem; }
.g03b-logo-text { font-size: 2rem; font-weight: 800; color: var(--g03b-primary); letter-spacing: 0.05rem; line-height: 1; }
.g03b-logo-text span { color: var(--g03b-gold); }

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

.g03b-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.4rem; font-size: 1.4rem; font-weight: 700;
  border-radius: var(--g03b-radius-sm);
  transition: transform .15s, background .2s, box-shadow .2s;
  white-space: nowrap; min-height: 3.6rem; text-align: center;
}
.g03b-btn:active { transform: scale(0.96); }
.g03b-btn i { font-size: 1.4rem; }

.g03b-btn-primary { background: linear-gradient(135deg, var(--g03b-primary), var(--g03b-primary-dark)); color: #fff; box-shadow: 0 0.3rem 0.8rem rgba(210, 105, 30, 0.4); }
.g03b-btn-primary:hover { background: linear-gradient(135deg, var(--g03b-primary-hover), var(--g03b-primary)); }

.g03b-btn-outline { background: transparent; color: var(--g03b-text); border: 0.15rem solid var(--g03b-primary); }
.g03b-btn-outline:hover { background: rgba(210, 105, 30, 0.15); }

.g03b-btn-gold { background: linear-gradient(135deg, var(--g03b-gold), #c9952f); color: #2a1d08; box-shadow: 0 0.3rem 0.8rem rgba(232, 185, 116, 0.35); }

.g03b-menu-btn {
  display: flex; width: 3.6rem; height: 3.6rem;
  align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--g03b-text);
  background: var(--g03b-surface); border-radius: 0.6rem;
}

/* Desktop inline nav (hidden on mobile) */
.g03b-nav { display: none; gap: 1rem; align-items: center; }
.g03b-nav-link { color: var(--g03b-text-muted); font-size: 1.3rem; font-weight: 600; padding: 0.4rem 0.6rem; border-radius: 0.4rem; transition: color .2s; }
.g03b-nav-link:hover, .g03b-nav-link.g03b-active { color: var(--g03b-primary); }

/* ---------- Mobile menu ---------- */
.g03b-mobile-menu {
  position: fixed; top: 0; right: -85%; width: 80%; max-width: 340px;
  height: 100vh; background: var(--g03b-bg-2); z-index: 9999;
  padding: calc(var(--g03b-header-h) + 1rem) 1.4rem 2rem;
  overflow-y: auto; transition: right .3s ease;
  border-left: 0.1rem solid var(--g03b-border);
}
.g03b-mobile-menu.g03b-open { right: 0; box-shadow: -1rem 0 3rem rgba(0, 0, 0, 0.5); }
.g03b-mobile-menu h4 { color: var(--g03b-gold); font-size: 1.3rem; margin: 1.4rem 0 0.6rem; text-transform: uppercase; letter-spacing: 0.1rem; }
.g03b-mobile-menu a { display: flex; align-items: center; gap: 0.8rem; padding: 1rem 0.6rem; color: var(--g03b-text); border-bottom: 0.1rem solid rgba(255, 255, 255, 0.06); font-size: 1.45rem; font-weight: 600; }
.g03b-mobile-menu a:hover, .g03b-mobile-menu a:active { color: var(--g03b-primary); background: rgba(210, 105, 30, 0.08); }
.g03b-mobile-menu a i { font-size: 1.6rem; color: var(--g03b-primary); width: 2rem; text-align: center; }

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

/* ---------- Main / sections ---------- */
.g03b-main { padding-top: var(--g03b-header-h); }
.g03b-section { padding: 2.2rem 1.2rem; }
.g03b-section-alt { background: var(--g03b-bg-2); }

.g03b-section-title { font-size: 1.9rem; font-weight: 800; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.6rem; color: var(--g03b-text); line-height: 1.3; }
.g03b-section-title i { color: var(--g03b-primary); font-size: 2rem; }
.g03b-section-title small { font-size: 1.2rem; color: var(--g03b-text-muted); font-weight: 500; margin-left: auto; }
.g03b-section-sub { color: var(--g03b-text-muted); font-size: 1.38rem; margin-bottom: 1.4rem; line-height: 1.6; }
.g03b-text-muted { color: var(--g03b-text-muted); }

/* ---------- Carousel ---------- */
.g03b-carousel { position: relative; border-radius: var(--g03b-radius); overflow: hidden; box-shadow: var(--g03b-shadow); }
.g03b-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .6s; cursor: pointer; }
.g03b-slide.g03b-active { position: relative; opacity: 1; }
.g03b-slide img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.g03b-slide-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.2rem 1rem; background: linear-gradient(transparent, rgba(0, 0, 0, 0.82)); color: #fff; }
.g03b-slide-overlay h3 { font-size: 1.7rem; font-weight: 800; }
.g03b-slide-overlay p { font-size: 1.25rem; opacity: 0.92; margin-top: 0.2rem; }

.g03b-carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 3.2rem; height: 3.2rem; border-radius: 50%; background: rgba(0, 0, 0, 0.5); color: #fff; display: flex; align-items: center; justify-content: center; z-index: 5; font-size: 1.5rem; }
.g03b-carousel-arrow:hover { background: var(--g03b-primary); }
.g03b-carousel-prev { left: 0.7rem; }
.g03b-carousel-next { right: 0.7rem; }

.g03b-dots { position: absolute; bottom: 0.7rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 5; }
.g03b-dot { width: 0.8rem; height: 0.8rem; border-radius: 50%; background: rgba(255, 255, 255, 0.5); transition: background .2s, width .2s; cursor: pointer; }
.g03b-dot.g03b-active { background: var(--g03b-primary); width: 2rem; border-radius: 0.4rem; }

/* ---------- Trust bar ---------- */
.g03b-trust-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; background: var(--g03b-surface); border-radius: var(--g03b-radius-sm); padding: 1rem 0.6rem; margin-bottom: 1.2rem; }
.g03b-trust-item { text-align: center; }
.g03b-trust-item b { display: block; font-size: 1.5rem; color: var(--g03b-gold); font-weight: 800; }
.g03b-trust-item span { font-size: 1.05rem; color: var(--g03b-text-muted); }

/* ---------- Game grid ---------- */
.g03b-cat-block { margin-bottom: 2.2rem; }
.g03b-cat-title { display: flex; align-items: center; gap: 0.6rem; font-size: 1.65rem; font-weight: 800; margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 0.15rem solid var(--g03b-primary); }
.g03b-cat-title i { color: var(--g03b-gold); font-size: 1.8rem; }
.g03b-cat-title small { margin-left: auto; font-size: 1.15rem; color: var(--g03b-text-muted); font-weight: 600; }

.g03b-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.7rem; }
.g03b-game-card { background: var(--g03b-surface); border-radius: var(--g03b-radius-sm); padding: 0.5rem; text-align: center; cursor: pointer; transition: transform .2s, box-shadow .2s, border-color .2s; overflow: hidden; border: 0.1rem solid transparent; }
.g03b-game-card:hover, .g03b-game-card:active { transform: translateY(-0.3rem); border-color: var(--g03b-primary); box-shadow: 0 0.5rem 1.4rem rgba(210, 105, 30, 0.3); }
.g03b-game-card img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 0.6rem; margin-bottom: 0.4rem; background: #1a242c; }
.g03b-game-card span { display: block; font-size: 1.08rem; font-weight: 600; color: var(--g03b-text); line-height: 1.2; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* ---------- Cards / blocks ---------- */
.g03b-card { background: var(--g03b-surface); border-radius: var(--g03b-radius); padding: 1.5rem; box-shadow: var(--g03b-shadow); margin-bottom: 1.2rem; border: 0.1rem solid rgba(255, 255, 255, 0.04); }
.g03b-card h3 { font-size: 1.6rem; font-weight: 800; margin-bottom: 0.7rem; color: var(--g03b-text); display: flex; align-items: center; gap: 0.5rem; }
.g03b-card h3 i { color: var(--g03b-primary); }
.g03b-card p { color: var(--g03b-text-muted); font-size: 1.38rem; line-height: 1.65; }
.g03b-card p strong, .g03b-card strong { color: var(--g03b-primary); }
.g03b-card ul { list-style: none; margin-top: 0.6rem; }
.g03b-card ul li { position: relative; padding: 0.3rem 0 0.3rem 1.6rem; color: var(--g03b-text-muted); font-size: 1.35rem; line-height: 1.55; }
.g03b-card ul li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--g03b-success); position: absolute; left: 0; font-size: 1.1rem; top: 0.55rem; }

.g03b-feature-list { display: grid; gap: 0.9rem; }
.g03b-feature-item { display: flex; gap: 1rem; padding: 1.1rem; background: var(--g03b-surface); border-radius: var(--g03b-radius-sm); border-left: 0.3rem solid var(--g03b-primary); }
.g03b-feature-item .g03b-ico { width: 3.8rem; height: 3.8rem; border-radius: 0.8rem; flex-shrink: 0; background: linear-gradient(135deg, var(--g03b-primary), var(--g03b-secondary)); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.9rem; }
.g03b-feature-item h4 { font-size: 1.45rem; font-weight: 700; margin-bottom: 0.2rem; }
.g03b-feature-item p { font-size: 1.3rem; color: var(--g03b-text-muted); line-height: 1.5; }

.g03b-steps { display: grid; gap: 0.9rem; counter-reset: step; }
.g03b-step { position: relative; padding: 1.1rem 1.1rem 1.1rem 4.3rem; background: var(--g03b-surface); border-radius: var(--g03b-radius-sm); }
.g03b-step::before { counter-increment: step; content: counter(step); position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 2.7rem; height: 2.7rem; border-radius: 50%; background: var(--g03b-primary); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.4rem; }
.g03b-step h4 { font-size: 1.4rem; font-weight: 700; }
.g03b-step p { font-size: 1.3rem; color: var(--g03b-text-muted); margin-top: 0.2rem; line-height: 1.5; }

.g03b-faq-item { background: var(--g03b-surface); border-radius: var(--g03b-radius-sm); margin-bottom: 0.7rem; overflow: hidden; border: 0.1rem solid rgba(255, 255, 255, 0.05); }
.g03b-faq-q { padding: 1.1rem; font-weight: 700; font-size: 1.38rem; color: var(--g03b-text); display: flex; gap: 0.6rem; align-items: flex-start; }
.g03b-faq-q i { color: var(--g03b-primary); flex-shrink: 0; margin-top: 0.2rem; }
.g03b-faq-a { padding: 0 1.1rem 1.1rem; color: var(--g03b-text-muted); font-size: 1.32rem; line-height: 1.6; }

.g03b-testi-grid { display: grid; gap: 0.9rem; }
.g03b-testi { background: var(--g03b-surface); border-radius: var(--g03b-radius-sm); padding: 1.1rem; display: flex; gap: 0.9rem; }
.g03b-testi-avatar { width: 3.8rem; height: 3.8rem; border-radius: 50%; background: linear-gradient(135deg, var(--g03b-primary), var(--g03b-gold)); display: flex; align-items: center; justify-content: center; font-weight: 800; color: #fff; font-size: 1.5rem; flex-shrink: 0; }
.g03b-testi-name { font-weight: 700; font-size: 1.38rem; }
.g03b-testi-stars { color: var(--g03b-gold); font-size: 1.15rem; margin: 0.2rem 0; }
.g03b-testi-text { font-size: 1.28rem; color: var(--g03b-text-muted); line-height: 1.5; }

.g03b-pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.7rem; }
.g03b-pay-item { background: var(--g03b-surface); border-radius: 0.8rem; padding: 0.9rem 0.4rem; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.g03b-pay-item i { font-size: 2.2rem; color: var(--g03b-primary); }
.g03b-pay-item span { font-size: 1.05rem; color: var(--g03b-text-muted); }

.g03b-winner-list { display: grid; gap: 0.55rem; }
.g03b-winner { display: flex; align-items: center; gap: 0.7rem; padding: 0.8rem 1rem; background: var(--g03b-surface); border-radius: 0.8rem; font-size: 1.3rem; }
.g03b-winner i { color: var(--g03b-gold); font-size: 1.5rem; }
.g03b-winner b { color: var(--g03b-primary); }
.g03b-winner small { margin-left: auto; color: var(--g03b-text-muted); font-size: 1.15rem; }

.g03b-app-cta { background: linear-gradient(135deg, var(--g03b-bg-2), var(--g03b-surface)); border-radius: var(--g03b-radius); padding: 1.5rem; text-align: center; border: 0.15rem solid var(--g03b-primary); }
.g03b-app-cta h3 { font-size: 1.65rem; margin-bottom: 0.4rem; color: var(--g03b-text); }
.g03b-app-cta p { color: var(--g03b-text-muted); font-size: 1.32rem; margin-bottom: 1.1rem; line-height: 1.5; }
.g03b-app-btns { display: flex; flex-direction: column; gap: 0.7rem; }

.g03b-link { color: var(--g03b-primary); font-weight: 700; cursor: pointer; border-bottom: 0.1rem dashed var(--g03b-primary); }
.g03b-link:hover { color: var(--g03b-primary-hover); }

.g03b-cta-banner { background: linear-gradient(135deg, var(--g03b-primary), var(--g03b-primary-dark)); border-radius: var(--g03b-radius); padding: 1.6rem; text-align: center; color: #fff; margin: 1.5rem 0; box-shadow: 0 0.5rem 1.5rem rgba(210, 105, 30, 0.35); }
.g03b-cta-banner h3 { font-size: 1.7rem; margin-bottom: 0.4rem; }
.g03b-cta-banner p { font-size: 1.32rem; opacity: 0.95; margin-bottom: 1rem; }
.g03b-cta-banner .g03b-btn { background: #fff; color: var(--g03b-primary-dark); }

/* ---------- Footer ---------- */
.g03b-footer { background: var(--g03b-bg-2); padding: 2.2rem 1.2rem calc(var(--g03b-bottom-nav-h) + 1.5rem); border-top: 0.1rem solid var(--g03b-border); margin-top: 1.5rem; }
.g03b-footer-brand { margin-bottom: 1.2rem; }
.g03b-footer-brand .g03b-logo-text { font-size: 2.2rem; }
.g03b-footer p { color: var(--g03b-text-muted); font-size: 1.3rem; line-height: 1.65; }
.g03b-footer h4 { color: var(--g03b-gold); font-size: 1.35rem; margin: 1.4rem 0 0.6rem; text-transform: uppercase; letter-spacing: 0.08rem; }

.g03b-footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.4rem 0.8rem; margin: 0.6rem 0; }
.g03b-footer-links a { color: var(--g03b-text-muted); font-size: 1.28rem; padding: 0.3rem 0; display: flex; align-items: center; gap: 0.4rem; }
.g03b-footer-links a:hover { color: var(--g03b-primary); }
.g03b-footer-links a i { font-size: 1.1rem; color: var(--g03b-primary); }

.g03b-footer-promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.g03b-footer-promo .g03b-btn { font-size: 1.2rem; padding: 0.6rem 1rem; min-height: 3rem; }

.g03b-footer-copy { text-align: center; padding-top: 1.2rem; margin-top: 1rem; border-top: 0.1rem solid var(--g03b-border); font-size: 1.18rem; color: var(--g03b-text-muted); }

/* ---------- Mobile bottom navigation ---------- */
.g03b-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(180deg, var(--g03b-bg-2), #1f2c38);
  border-top: 0.15rem solid var(--g03b-primary);
  display: flex; justify-content: space-around; align-items: stretch;
  height: var(--g03b-bottom-nav-h);
  box-shadow: 0 -0.4rem 1.5rem rgba(0, 0, 0, 0.4);
}
.g03b-bottom-nav-inner { max-width: 430px; margin: 0 auto; display: flex; width: 100%; height: 100%; }
.g03b-bottom-nav-btn { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; color: var(--g03b-text-muted); font-size: 1.05rem; font-weight: 600; transition: color .2s; position: relative; min-width: 5.5rem; min-height: 5.5rem; padding: 0.2rem; }
.g03b-bottom-nav-btn i, .g03b-bottom-nav-btn .material-icons-outlined { font-size: 2.1rem; transition: transform .2s; }
.g03b-bottom-nav-btn:active { transform: scale(0.92); }
.g03b-bottom-nav-btn:hover, .g03b-bottom-nav-btn.g03b-active { color: var(--g03b-primary); }
.g03b-bottom-nav-btn.g03b-active i, .g03b-bottom-nav-btn.g03b-active .material-icons-outlined { transform: translateY(-0.2rem) scale(1.08); }
.g03b-bottom-nav-btn.g03b-active::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 2.4rem; height: 0.3rem; background: var(--g03b-primary); border-radius: 0 0 0.3rem 0.3rem; }
.g03b-bottom-nav-btn.g03b-badge::after { content: ''; position: absolute; top: 0.7rem; right: calc(50% - 1.6rem); width: 0.7rem; height: 0.7rem; background: var(--g03b-danger); border-radius: 50%; border: 0.15rem solid var(--g03b-bg-2); }

/* ---------- Back to top ---------- */
.g03b-back-top { position: fixed; right: 1.2rem; bottom: calc(var(--g03b-bottom-nav-h) + 1rem); z-index: 999; width: 4rem; height: 4rem; border-radius: 50%; background: var(--g03b-primary); color: #fff; font-size: 1.9rem; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(1rem); transition: all .3s; box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.4); }
.g03b-back-top.g03b-show { opacity: 1; visibility: visible; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (min-width: 769px) {
  .g03b-wrapper { box-shadow: 0 0 4rem rgba(0, 0, 0, 0.3); }
  .g03b-bottom-nav { display: none; }
  .g03b-footer { padding-bottom: 2.2rem; }
  .g03b-menu-btn { display: none; }
  .g03b-nav { display: flex; }
  .g03b-back-top { bottom: 1.5rem; }
}

@media (max-width: 768px) {
  .g03b-main { padding-bottom: 8rem; }
  .g03b-header-actions .g03b-btn-label { display: none; }
  .g03b-header-actions .g03b-btn { padding: 0.7rem 1rem; }
  .g03b-header-actions .g03b-btn i { font-size: 1.5rem; }
}

@media (max-width: 360px) {
  .g03b-game-grid { grid-template-columns: repeat(2, 1fr); }
  .g03b-pay-grid { grid-template-columns: repeat(3, 1fr); }
  .g03b-section-title { font-size: 1.7rem; }
}
