/* PT Gaming - basefiles stylesheet (class prefix: vc9a-) */
/* Mobile-first Philippine online casino gaming portal */

:root {
  --vc9a-bg: #0a0e1f;
  --vc9a-bg-2: #121833;
  --vc9a-card: #1a2244;
  --vc9a-card-2: #232d57;
  --vc9a-primary: #ffcf3a;
  --vc9a-primary-2: #ff9f1c;
  --vc9a-accent: #19c6d6;
  --vc9a-accent-2: #ff3b6b;
  --vc9a-text: #f4f6fb;
  --vc9a-muted: #9aa3c7;
  --vc9a-border: rgba(255, 255, 255, 0.08);
  --vc9a-gold: #ffd76a;
  --vc9a-radius: 14px;
  --vc9a-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  --vc9a-max: 430px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", system-ui, -apple-system, sans-serif;
  background: radial-gradient(1200px 600px at 50% -10%, #1b2450 0%, var(--vc9a-bg) 55%) fixed;
  color: var(--vc9a-text);
  line-height: 1.55;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--vc9a-primary); text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 8px; line-height: 1.25; font-weight: 800; }
h2 { font-size: 22px; }
p { margin: 0 0 12px; color: var(--vc9a-text); }

/* layout shell max 430 mobile-first, centered on desktop */
.vc9a-shell { max-width: var(--vc9a-max); margin: 0 auto; background: var(--vc9a-bg); min-height: 100vh; box-shadow: var(--vc9a-shadow); position: relative; }

/* ===== Header ===== */
.vc9a-header {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px;
  background: linear-gradient(180deg, rgba(10, 14, 31, 0.98), rgba(10, 14, 31, 0.88));
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vc9a-border);
  transition: box-shadow .25s ease, background .25s ease;
}
.vc9a-header-scrolled { box-shadow: 0 6px 20px rgba(0,0,0,.5); background: rgba(8, 11, 26, .98); }
.vc9a-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 18px; color: var(--vc9a-primary); letter-spacing: .3px; }
.vc9a-brand .vc9a-logo {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--vc9a-primary), var(--vc9a-accent-2));
  display: grid; place-items: center; color: #1a1100; font-weight: 900;
  box-shadow: 0 4px 14px rgba(255, 159, 28, .45);
}
.vc9a-header-actions { display: flex; align-items: center; gap: 8px; }
.vc9a-btn {
  border: 0; cursor: pointer; border-radius: 999px;
  font-weight: 800; padding: 9px 16px; font-size: 13px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.vc9a-btn:active { transform: scale(0.96); }
.vc9a-btn-login { background: rgba(255,255,255,.08); color: var(--vc9a-text); border: 1px solid var(--vc9a-border); }
.vc9a-btn-login:hover { background: rgba(255,255,255,.14); }
.vc9a-btn-register {
  background: linear-gradient(135deg, var(--vc9a-primary), var(--vc9a-primary-2));
  color: #1a1100;
  box-shadow: 0 6px 18px rgba(255, 159, 28, .45);
}
.vc9a-btn-register:hover { filter: brightness(1.06); }
.vc9a-icon-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.06); border: 1px solid var(--vc9a-border);
  color: var(--vc9a-text); display: grid; place-items: center; cursor: pointer;
}

/* ===== Mobile slide menu ===== */
.vc9a-menu-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  opacity: 0; pointer-events: none; transition: opacity .25s ease; z-index: 9998;
}
.vc9a-overlay-show { opacity: 1; pointer-events: auto; }
.vc9a-mobile-menu {
  position: fixed; top: 0; right: -86%; width: 80%; max-width: 320px; height: 100vh;
  background: linear-gradient(180deg, #141a38, #0c1126);
  z-index: 9999; padding: 20px 18px; transform: translateX(0);
  transition: right .3s ease; overflow-y: auto;
  border-left: 1px solid var(--vc9a-border);
}
.vc9a-mobile-menu.vc9a-menu-open { right: 0; }
.vc9a-menu-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.vc9a-menu-head h3 { color: var(--vc9a-primary); font-size: 18px; }
.vc9a-menu-close { background: transparent; border: 0; color: var(--vc9a-muted); font-size: 22px; cursor: pointer; }
.vc9a-menu-link {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 12px; border-radius: 10px; color: var(--vc9a-text);
  border: 1px solid transparent; margin-bottom: 6px; font-weight: 600;
}
.vc9a-menu-link:hover { background: rgba(255,255,255,.06); border-color: var(--vc9a-border); }
.vc9a-menu-link i { color: var(--vc9a-primary); width: 22px; text-align: center; }

/* ===== Hero / Carousel ===== */
.vc9a-hero { position: relative; padding: 14px; }
.vc9a-carousel { position: relative; border-radius: var(--vc9a-radius); overflow: hidden; box-shadow: var(--vc9a-shadow); }
.vc9a-slide {
  display: none; position: relative;
  background: linear-gradient(135deg, #1d2a63, #3a1b4b);
}
.vc9a-slide-active { display: block; }
.vc9a-slide img { width: 100%; height: 200px; object-fit: cover; }
.vc9a-slide-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 16px; background: linear-gradient(180deg, transparent, rgba(0,0,0,.85)); }
.vc9a-slide-body h2 { color: #fff; font-size: 20px; margin-bottom: 4px; }
.vc9a-slide-body p { color: #e7eaf5; font-size: 12px; margin: 0; }
.vc9a-slide-cta { margin-top: 10px; }
.vc9a-carousel-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.45); color: #fff; border: 0; cursor: pointer;
  display: grid; place-items: center;
}
.vc9a-slide-prev { left: 8px; }
.vc9a-slide-next { right: 8px; }
.vc9a-dots { display: flex; gap: 6px; justify-content: center; margin-top: 10px; }
.vc9a-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.25); border: 0; cursor: pointer; padding: 0; }
.vc9a-dot-active { background: var(--vc9a-primary); width: 22px; border-radius: 6px; }

/* ===== Quick action strip ===== */
.vc9a-quick { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; padding: 4px 14px 14px; }
.vc9a-quick-item {
  background: var(--vc9a-card); border: 1px solid var(--vc9a-border);
  border-radius: 12px; padding: 10px 6px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer; transition: transform .15s ease, background .2s ease;
}
.vc9a-quick-item:active { transform: scale(0.95); }
.vc9a-quick-item .vc9a-qicon { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: linear-gradient(135deg, var(--vc9a-primary), var(--vc9a-primary-2)); color: #1a1100; font-size: 18px; }
.vc9a-quick-item span { font-size: 11px; color: var(--vc9a-text); font-weight: 600; }

/* ===== Section / categories ===== */
.vc9a-section { padding: 18px 14px; }
.vc9a-section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.vc9a-section-head h2 { font-size: 20px; color: var(--vc9a-text); display: flex; align-items: center; gap: 8px; }
.vc9a-section-head h2 .material-icons-outlined { color: var(--vc9a-primary); font-size: 24px; }
.vc9a-section-link { font-size: 12px; color: var(--vc9a-primary); font-weight: 700; }

.vc9a-cat-tabs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 8px; margin-bottom: 12px; scrollbar-width: none; }
.vc9a-cat-tabs::-webkit-scrollbar { display: none; }
.vc9a-cat-tab {
  flex: 0 0 auto; padding: 8px 14px; border-radius: 999px;
  background: var(--vc9a-card); color: var(--vc9a-muted);
  border: 1px solid var(--vc9a-border); font-size: 13px; font-weight: 700;
  cursor: pointer; display: inline-flex; align-items: center; gap: 6px;
}
.vc9a-cat-active { background: linear-gradient(135deg, var(--vc9a-primary), var(--vc9a-primary-2)); color: #1a1100; border-color: transparent; }

/* ===== Game grid ===== */
.vc9a-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.vc9a-game-card {
  background: var(--vc9a-card); border: 1px solid var(--vc9a-border);
  border-radius: 12px; overflow: hidden; cursor: pointer; position: relative;
  transition: transform .15s ease, box-shadow .2s ease;
}
.vc9a-game-card:hover { transform: translateY(-2px); box-shadow: var(--vc9a-shadow); }
.vc9a-game-card .vc9a-thumb-wrap { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: #0e1430; }
.vc9a-game-card .vc9a-thumb-wrap img { width: 100%; height: 100%; object-fit: cover; }
.vc9a-game-card .vc9a-play {
  position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(8, 11, 26, .65); opacity: 0; transition: opacity .2s ease;
}
.vc9a-game-card:hover .vc9a-play { opacity: 1; }
.vc9a-play-btn {
  background: linear-gradient(135deg, var(--vc9a-primary), var(--vc9a-primary-2));
  color: #1a1100; border-radius: 999px; padding: 6px 14px; font-weight: 800; font-size: 12px;
}
.vc9a-game-card .vc9a-name { padding: 7px 8px; font-size: 11px; font-weight: 600; color: var(--vc9a-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vc9a-badge {
  position: absolute; top: 6px; left: 6px; z-index: 2;
  background: var(--vc9a-accent-2); color: #fff; font-size: 9px;
  font-weight: 800; padding: 3px 7px; border-radius: 6px; text-transform: uppercase;
}
.vc9a-badge.hot { background: linear-gradient(135deg, #ff3b6b, #ff9f1c); }
.vc9a-badge.new { background: linear-gradient(135deg, #19c6d6, #0f8ab5); }

/* ===== Promo banner block ===== */
.vc9a-promo {
  margin: 4px 14px 18px; border-radius: var(--vc9a-radius); padding: 16px;
  background: linear-gradient(135deg, #2a1b56, #4a1840);
  border: 1px solid var(--vc9a-border); position: relative; overflow: hidden;
}
.vc9a-promo h3 { color: var(--vc9a-gold); font-size: 18px; }
.vc9a-promo p { color: #e7eaf5; font-size: 13px; }
.vc9a-promo .vc9a-btn-register { margin-top: 8px; }

/* ===== Info / SEO article ===== */
.vc9a-article { padding: 18px 14px; }
.vc9a-article h2 { color: var(--vc9a-primary); margin-top: 14px; font-size: 18px; }
.vc9a-article p { color: #d7dcf0; font-size: 14px; }
.vc9a-article ul { padding-left: 18px; color: #d7dcf0; }
.vc9a-article li { margin-bottom: 6px; font-size: 14px; }
.vc9a-faq-item { background: var(--vc9a-card); border: 1px solid var(--vc9a-border); border-radius: 10px; padding: 12px; margin-bottom: 8px; }
.vc9a-faq-item h3 { color: var(--vc9a-primary); font-size: 14px; margin-bottom: 4px; }
.vc9a-faq-item p { margin: 0; font-size: 13px; color: #cdd3ec; }

/* ===== Extended content cards ===== */
.vc9a-copy-panel {
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border: 1px solid var(--vc9a-border); border-radius: var(--vc9a-radius); padding: 14px; margin-bottom: 12px;
}
.vc9a-copy-panel h3 { color: var(--vc9a-gold); font-size: 16px; }
.vc9a-copy-panel p { color: #d7dcf0; font-size: 13px; }
.vc9a-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin: 12px 0; }
.vc9a-stat-card { background: var(--vc9a-card); border: 1px solid var(--vc9a-border); border-radius: 12px; padding: 10px; text-align: center; }
.vc9a-stat-card strong { display: block; color: var(--vc9a-primary); font-size: 18px; }
.vc9a-stat-card span { color: var(--vc9a-muted); font-size: 10px; font-weight: 700; text-transform: uppercase; }
.vc9a-step-list { display: grid; gap: 10px; counter-reset: vc9aStep; }
.vc9a-step { position: relative; background: var(--vc9a-card); border: 1px solid var(--vc9a-border); border-radius: 12px; padding: 12px 12px 12px 46px; }
.vc9a-step::before { counter-increment: vc9aStep; content: counter(vc9aStep); position: absolute; left: 12px; top: 12px; width: 24px; height: 24px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--vc9a-primary), var(--vc9a-primary-2)); color: #1a1100; font-weight: 900; }
.vc9a-step h3 { color: var(--vc9a-text); font-size: 14px; }
.vc9a-step p { color: #cdd3ec; font-size: 13px; margin: 0; }
.vc9a-two-col { display: grid; grid-template-columns: 1fr; gap: 10px; }
.vc9a-alert { border-left: 4px solid var(--vc9a-accent-2); background: rgba(255,59,107,.1); padding: 12px; border-radius: 10px; color: #f5d8df; font-size: 13px; }
.vc9a-inline-cta { color: var(--vc9a-primary); font-weight: 900; text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
@media (min-width: 769px) { .vc9a-two-col { grid-template-columns: 1fr 1fr; } .vc9a-stat-row { grid-template-columns: repeat(6, 1fr); } }

/* ===== Footer ===== */
.vc9a-footer { background: #070a1a; border-top: 1px solid var(--vc9a-border); padding: 22px 14px 18px; }
.vc9a-footer h4 { color: var(--vc9a-primary); font-size: 14px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .5px; }
.vc9a-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.vc9a-footer a { display: block; color: var(--vc9a-muted); font-size: 12px; padding: 4px 0; }
.vc9a-footer a:hover { color: var(--vc9a-primary); }
.vc9a-footer-bottom { margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--vc9a-border); color: var(--vc9a-muted); font-size: 11px; text-align: center; }
.vc9a-partners { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px; }
.vc9a-partner-badge { background: rgba(255,255,255,.05); border: 1px solid var(--vc9a-border); padding: 4px 8px; border-radius: 8px; font-size: 10px; color: var(--vc9a-muted); }

/* ===== Mobile bottom nav ===== */
.vc9a-bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  background: linear-gradient(180deg, rgba(14, 20, 48, .97), rgba(7, 10, 26, .99));
  border-top: 1px solid var(--vc9a-border);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 62px; padding: 0; max-width: var(--vc9a-max); margin: 0 auto;
  box-shadow: 0 -6px 20px rgba(0,0,0,.45);
}
.vc9a-bottom-nav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: 0; color: var(--vc9a-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  cursor: pointer; padding: 4px 2px; position: relative;
  font-size: 10px; font-weight: 700; transition: color .2s ease, transform .15s ease;
}
.vc9a-bottom-nav-btn i, .vc9a-bottom-nav-btn .material-icons-outlined { font-size: 22px; }
.vc9a-bottom-nav-btn:active { transform: scale(0.92); }
.vc9a-bottom-nav-btn.is-active { color: var(--vc9a-primary); }
.vc9a-bottom-nav-btn.is-active::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; border-radius: 0 0 4px 4px; background: var(--vc9a-primary);
}
.vc9a-bottom-nav-btn.is-promo { color: var(--vc9a-accent-2); }
.vc9a-bottom-nav-btn.is-promo .vc9a-nav-icon-wrap {
  background: linear-gradient(135deg, var(--vc9a-primary), var(--vc9a-accent-2));
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  margin-top: -16px; color: #1a1100; box-shadow: 0 4px 14px rgba(255, 59, 107, .5);
  border: 3px solid #0b1024;
}
.vc9a-bottom-nav-btn.is-promo .vc9a-nav-icon-wrap i { font-size: 18px; color: #1a1100; }
.vc9a-bottom-nav-btn.is-promo span { color: var(--vc9a-accent-2); }

/* main content padding so bottom nav does not cover content */
main { padding-bottom: 80px; }

/* ===== Responsive: hide bottom nav on desktop, show wider layout ===== */
@media (min-width: 769px) {
  body { background: #050816; }
  .vc9a-shell { max-width: 1200px; box-shadow: 0 0 60px rgba(0,0,0,.6); }
  .vc9a-bottom-nav { display: none; }
  main { padding-bottom: 30px; }
  .vc9a-hero { padding: 22px; }
  .vc9a-game-grid { grid-template-columns: repeat(6, 1fr); }
  .vc9a-quick { grid-template-columns: repeat(6, 1fr); }
  .vc9a-footer-cols { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .vc9a-shell { box-shadow: none; }
}
