/* ============================================================
 * Choang VIP - style-d06c.css
 * All custom class names use the g6cc- prefix.
 * Palette: #F5F5F5 / #2C3E50 / #FF8000 / #141414 / #FFFFFF / #FA8072
 * Mobile-first, max-width 430px primary.
 * ============================================================ */

:root {
  --g6cc-light: #F5F5F5;
  --g6cc-primary: #2C3E50;
  --g6cc-accent: #FF8000;
  --g6cc-bg: #141414;
  --g6cc-white: #FFFFFF;
  --g6cc-coral: #FA8072;
  --g6cc-gold: #FFD27A;
  --g6cc-gray: #8a8f99;
  --g6cc-card: #1d1d1d;
  --g6cc-card-2: #232323;
  --g6cc-shadow: 0 10px 28px rgba(0, 0, 0, 0.42);
  --g6cc-radius: 14px;
  --g6cc-radius-lg: 22px;
  --g6cc-header-h: 58px;
  --g6cc-bottom-h: 62px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Be Vietnam Pro", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  background: radial-gradient(circle at 50% 0%, #1c1c1c 0%, var(--g6cc-bg) 60%);
  color: var(--g6cc-light);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
}

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

a { color: var(--g6cc-accent); text-decoration: none; }

.g6cc-container {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 0 14px;
}

.g6cc-wrapper { width: 100%; }

/* ===================== Header ===================== */
.g6cc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--g6cc-header-h);
  background: linear-gradient(180deg, #1a1a1a 0%, #0f0f0f 100%);
  border-bottom: 1px solid rgba(255, 128, 0, 0.25);
  z-index: 1000;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
}
.g6cc-header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
}
.g6cc-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--g6cc-white);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.3px;
}
.g6cc-brand .g6cc-brand-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--g6cc-accent), var(--g6cc-coral));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 15px;
  box-shadow: 0 3px 9px rgba(255, 128, 0, 0.45);
}
.g6cc-brand small { color: var(--g6cc-coral); font-weight: 700; font-size: 11px; display: block; margin-top: -3px; }

.g6cc-header-actions { display: flex; align-items: center; gap: 8px; }
.g6cc-menu-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--g6cc-light);
  font-size: 19px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.g6cc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  border: none;
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  font-size: 13.5px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.g6cc-btn-login {
  background: transparent;
  color: var(--g6cc-light);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.g6cc-btn-register {
  background: linear-gradient(135deg, var(--g6cc-accent), #ff5e2c);
  color: #fff;
  box-shadow: 0 5px 14px rgba(255, 128, 0, 0.45);
}
.g6cc-btn:active { transform: scale(0.96); }
.g6cc-btn-promo {
  background: linear-gradient(135deg, var(--g6cc-coral), var(--g6cc-accent));
  color: #fff;
  box-shadow: 0 6px 16px rgba(250, 128, 114, 0.45);
}

/* ===================== Mobile drawer ===================== */
.g6cc-mobile-menu {
  position: fixed;
  top: 0; right: -82%;
  width: 78%;
  height: 100vh;
  background: #161616;
  z-index: 9999;
  padding: 22px 18px;
  transform: translateX(0);
  transition: right 0.3s ease;
  overflow-y: auto;
  border-left: 1px solid rgba(255, 128, 0, 0.2);
}
.g6cc-mobile-menu.g6cc-active { right: 0; }
.g6cc-overlay {
  position: fixed; inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
body.g6cc-menu-open .g6cc-overlay { opacity: 1; pointer-events: auto; }
.g6cc-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.g6cc-menu-head span { font-weight: 800; font-size: 16px; color: var(--g6cc-white); }
.g6cc-menu-close {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.06); color: #fff;
  border: none; font-size: 17px; cursor: pointer;
}
.g6cc-menu-section-title {
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--g6cc-accent); margin: 18px 0 8px; font-weight: 800;
}
.g6cc-menu-link {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 12px;
  border-radius: 10px;
  color: var(--g6cc-light);
  font-size: 14.5px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.g6cc-menu-link:active { background: rgba(255, 128, 0, 0.1); }
.g6cc-menu-link i { color: var(--g6cc-coral); width: 22px; text-align: center; }
.g6cc-menu-cta { margin-top: 20px; display: grid; gap: 10px; }

/* ===================== Main ===================== */
.g6cc-main { padding-top: calc(var(--g6cc-header-h) + 12px); padding-bottom: 90px; }

.g6cc-section { padding: 26px 0; }
.g6cc-section-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.g6cc-section-title {
  font-size: 20px; font-weight: 800; color: var(--g6cc-white);
  display: flex; align-items: center; gap: 8px;
}
.g6cc-section-title i { color: var(--g6cc-accent); }
.g6cc-section-sub { color: var(--g6cc-gray); font-size: 13px; margin-top: -6px; }

/* ===================== Carousel ===================== */
.g6cc-carousel {
  position: relative;
  border-radius: var(--g6cc-radius-lg);
  overflow: hidden;
  box-shadow: var(--g6cc-shadow);
}
.g6cc-slides { position: relative; }
.g6cc-slide {
  position: relative;
  display: none;
  cursor: pointer;
}
.g6cc-slide.g6cc-active { display: block; }
.g6cc-slide img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.78);
}
.g6cc-slide-overlay {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 16px 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.85));
  color: #fff;
}
.g6cc-slide-tag {
  display: inline-block;
  background: var(--g6cc-accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.g6cc-slide-title { font-size: 19px; font-weight: 800; margin: 0 0 4px; }
.g6cc-slide-desc { font-size: 12.5px; opacity: 0.92; margin: 0; }
.g6cc-dots {
  position: absolute; bottom: 8px; right: 12px;
  display: flex; gap: 6px; z-index: 3;
}
.g6cc-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.45); cursor: pointer;
}
.g6cc-dot.g6cc-active { background: var(--g6cc-accent); width: 22px; border-radius: 999px; }

/* ===================== Hero CTA strip ===================== */
.g6cc-cta-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  margin-top: 14px;
}
.g6cc-cta-card {
  background: linear-gradient(135deg, var(--g6cc-card), var(--g6cc-card-2));
  border: 1px solid rgba(255,128,0,0.18);
  border-radius: var(--g6cc-radius);
  padding: 14px;
  text-align: center;
  cursor: pointer;
}
.g6cc-cta-card i { font-size: 24px; color: var(--g6cc-accent); }
.g6cc-cta-card h4 { margin: 6px 0 2px; font-size: 14px; color: var(--g6cc-white); }
.g6cc-cta-card p { margin: 0; font-size: 11.5px; color: var(--g6cc-gray); }

/* ===================== Category chips ===================== */
.g6cc-chips {
  display: flex; gap: 8px; overflow-x: auto;
  padding: 6px 0 12px;
  scrollbar-width: none;
}
.g6cc-chips::-webkit-scrollbar { display: none; }
.g6cc-chip {
  flex: 0 0 auto;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--g6cc-light);
  cursor: pointer;
  white-space: nowrap;
}
.g6cc-chip.g6cc-active, .g6cc-chip:active {
  background: linear-gradient(135deg, var(--g6cc-accent), var(--g6cc-coral));
  color: #fff; border-color: transparent;
}

/* ===================== Game grid ===================== */
.g6cc-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}
.g6cc-game-card {
  background: var(--g6cc-card);
  border-radius: var(--g6cc-radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  position: relative;
}
.g6cc-game-card:active { transform: scale(0.96); }
.g6cc-game-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #0c0c0c;
}
.g6cc-game-name {
  padding: 6px 7px 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--g6cc-light);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.g6cc-game-badge {
  position: absolute; top: 5px; left: 5px;
  background: rgba(255, 128, 0, 0.92);
  color: #fff;
  font-size: 9px; font-weight: 800;
  padding: 2px 6px;
  border-radius: 6px;
  letter-spacing: 0.3px;
}
.g6cc-game-badge.g6cc-hot { background: rgba(250, 128, 114, 0.95); }

/* ===================== Featured game ===================== */
.g6cc-featured {
  background: linear-gradient(135deg, #2a1400, #1a1a1a);
  border: 1px solid rgba(255,128,0,0.25);
  border-radius: var(--g6cc-radius-lg);
  padding: 18px;
  display: flex; gap: 14px; align-items: center;
}
.g6cc-featured img {
  width: 92px; height: 92px; border-radius: 14px; object-fit: cover;
  border: 2px solid var(--g6cc-accent);
}
.g6cc-featured-meta { flex: 1; }
.g6cc-featured-meta h3 { margin: 0 0 4px; font-size: 17px; color: var(--g6cc-white); }
.g6cc-featured-meta p { margin: 0 0 10px; font-size: 12.5px; color: var(--g6cc-gray); }

/* ===================== Info / promo / RTP blocks ===================== */
.g6cc-info-card {
  background: var(--g6cc-card);
  border-radius: var(--g6cc-radius-lg);
  padding: 18px 16px;
  border: 1px solid rgba(255,255,255,0.05);
}
.g6cc-info-card h3 {
  margin: 0 0 10px; font-size: 16.5px; color: var(--g6cc-white);
  display: flex; align-items: center; gap: 8px;
}
.g6cc-info-card h3 i { color: var(--g6cc-coral); }
.g6cc-info-card p { color: #c7ccd4; font-size: 13.5px; margin: 0 0 10px; }
.g6cc-info-card a { color: var(--g6cc-accent); font-weight: 700; }

.g6cc-list { margin: 0; padding-left: 18px; color: #c7ccd4; font-size: 13.5px; }
.g6cc-list li { margin-bottom: 6px; }

.g6cc-step {
  display: flex; gap: 12px; margin-bottom: 12px;
}
.g6cc-step-num {
  flex: 0 0 30px; height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--g6cc-accent), var(--g6cc-coral));
  color: #fff; font-weight: 800; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.g6cc-step-body h4 { margin: 0 0 2px; font-size: 14px; color: var(--g6cc-white); }
.g6cc-step-body p { margin: 0; font-size: 12.5px; color: var(--g6cc-gray); }

/* ===================== RTP / stats ===================== */
.g6cc-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 12px; }
.g6cc-stat {
  background: rgba(255,255,255,0.04);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.g6cc-stat b { display: block; font-size: 19px; color: var(--g6cc-accent); }
.g6cc-stat span { font-size: 11.5px; color: var(--g6cc-gray); }

/* ===================== Testimonial ===================== */
.g6cc-testimonials { display: grid; gap: 10px; }
.g6cc-testimonial {
  background: var(--g6cc-card);
  border-left: 3px solid var(--g6cc-coral);
  border-radius: 10px;
  padding: 12px 14px;
}
.g6cc-testimonial p { margin: 0 0 6px; font-size: 13px; color: #d6dae0; }
.g6cc-testimonial .g6cc-stars { color: var(--g6cc-gold); font-size: 12px; }
.g6cc-testimonial cite { font-size: 11.5px; color: var(--g6cc-gray); font-style: normal; }

/* ===================== Payment ===================== */
.g6cc-pay-row {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 8px;
}
.g6cc-pay {
  flex: 1 1 30%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  font-size: 11.5px;
  color: var(--g6cc-light);
}
.g6cc-pay i { display: block; font-size: 20px; color: var(--g6cc-coral); margin-bottom: 4px; }

/* ===================== Winners ===================== */
.g6cc-winner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  margin-bottom: 7px;
}
.g6cc-winner span { font-size: 12.5px; }
.g6cc-winner b { color: var(--g6cc-gold); font-size: 13px; }

/* ===================== FAQ ===================== */
.g6cc-faq-item {
  background: var(--g6cc-card);
  border-radius: 12px;
  margin-bottom: 9px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}
.g6cc-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 14px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--g6cc-white);
}
.g6cc-faq-q .g6cc-faq-icon { transition: transform 0.2s ease; color: var(--g6cc-accent); }
.g6cc-faq-item.g6cc-active .g6cc-faq-icon { transform: rotate(45deg); }
.g6cc-faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 14px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #c7ccd4;
  font-size: 13px;
}
.g6cc-faq-item.g6cc-active .g6cc-faq-a {
  max-height: 360px;
  padding: 0 14px 14px;
}

/* ===================== Download CTA ===================== */
.g6cc-download {
  background: linear-gradient(135deg, var(--g6cc-accent), var(--g6cc-coral));
  border-radius: var(--g6cc-radius-lg);
  padding: 22px 18px;
  text-align: center;
  color: #fff;
}
.g6cc-download h3 { margin: 0 0 6px; font-size: 19px; }
.g6cc-download p { margin: 0 0 14px; font-size: 13px; opacity: 0.95; }
.g6cc-download .g6cc-btn-dark {
  background: #1a1a1a; color: #fff; padding: 11px 22px;
  border-radius: 999px; font-weight: 800; font-size: 14px;
  display: inline-flex; gap: 8px; align-items: center;
}

/* ===================== Footer ===================== */
.g6cc-footer {
  background: #0c0c0c;
  padding: 26px 0 30px;
  border-top: 1px solid rgba(255,128,0,0.18);
  margin-top: 20px;
}
.g6cc-footer h4 { color: var(--g6cc-accent); font-size: 13px; text-transform: uppercase; letter-spacing: 1.2px; margin: 14px 0 8px; }
.g6cc-footer p { color: #a7acb4; font-size: 12.5px; margin: 0 0 10px; }
.g6cc-footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; margin: 8px 0 14px; }
.g6cc-footer-links a { color: #c7ccd4; font-size: 12.5px; }
.g6cc-footer-links a:active { color: var(--g6cc-accent); }
.g6cc-footer-btns { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0 14px; }
.g6cc-footer-btns .g6cc-btn { font-size: 12.5px; padding: 8px 14px; }
.g6cc-copyright { font-size: 11.5px; color: #6c7077; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 14px; }

/* ===================== Bottom nav ===================== */
.g6cc-bottom-nav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: var(--g6cc-bottom-h);
  background: linear-gradient(180deg, #1a1a1a, #0c0c0c);
  border-top: 1px solid rgba(255,128,0,0.25);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -4px 18px rgba(0,0,0,0.45);
}
.g6cc-bottom-nav button {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--g6cc-gray);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 10.5px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 2px;
  min-width: 60px;
  min-height: 60px;
  position: relative;
  transition: color 0.15s ease, transform 0.15s ease;
}
.g6cc-bottom-nav button i { font-size: 22px; }
.g6cc-bottom-nav button.g6cc-active { color: var(--g6cc-accent); }
.g6cc-bottom-nav button.g6cc-active::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 3px; border-radius: 0 0 6px 6px;
  background: var(--g6cc-accent);
}
.g6cc-bottom-nav button:active { transform: scale(0.9); }
.g6cc-bottom-nav .g6cc-nav-promo {
  background: linear-gradient(135deg, var(--g6cc-accent), var(--g6cc-coral));
  color: #fff;
  border-radius: 16px 16px 0 0;
  margin: -8px 2px 0;
}
.g6cc-bottom-nav .g6cc-nav-promo i { font-size: 24px; }

/* ===================== Helpers ===================== */
.g6cc-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.5s ease, transform 0.5s ease; }
.g6cc-reveal.g6cc-visible { opacity: 1; transform: translateY(0); }
.g6cc-text-link { color: var(--g6cc-accent); font-weight: 700; cursor: pointer; }
.g6cc-pill { display: inline-block; padding: 2px 9px; border-radius: 999px; background: rgba(255,128,0,0.16); color: var(--g6cc-accent); font-size: 11px; font-weight: 700; }
.g6cc-h1 {
  font-size: 23px; font-weight: 900; line-height: 1.3;
  margin: 0 0 8px; color: var(--g6cc-white);
}
.g6cc-h1 span { color: var(--g6cc-accent); }
.g6cc-lead { font-size: 13.5px; color: #c7ccd4; margin: 0 0 14px; }
.g6cc-center { text-align: center; }
.g6cc-mt { margin-top: 18px; }

/* ===================== Desktop ===================== */
@media (min-width: 769px) {
  .g6cc-bottom-nav { display: none; }
  body { background: #0f0f0f; }
  .g6cc-header-inner { max-width: 960px; margin: 0 auto; }
  .g6cc-container { max-width: 960px; }
  .g6cc-game-grid { grid-template-columns: repeat(6, 1fr); }
  .g6cc-stat-grid { grid-template-columns: repeat(4, 1fr); }
  .g6cc-main { padding-bottom: 40px; }
}

@media (min-width: 431px) and (max-width: 768px) {
  .g6cc-game-grid { grid-template-columns: repeat(4, 1fr); }
  .g6cc-container { max-width: 720px; }
}
