/* ceo bat - Core stylesheet. All classes use pg7c- prefix.
   Palette: #F0F8FF / #AFEEEE / #D3D3D3 / #212F3D. Mobile-first. */
:root {
  --pg7c-bg: #212F3D;
  --pg7c-bg-2: #18232f;
  --pg7c-bg-3: #2a3a4d;
  --pg7c-bg-card: #243344;
  --pg7c-text: #F0F8FF;
  --pg7c-muted: #D3D3D3;
  --pg7c-accent: #AFEEEE;
  --pg7c-accent-2: #7fd9d9;
  --pg7c-gold: #f5c542;
  --pg7c-gold-2: #d99f1c;
  --pg7c-red: #ff6b6b;
  --pg7c-border: rgba(175, 238, 238, 0.22);
  --pg7c-shadow: 0 10px 30px rgba(0, 0, 0, 0.38);
  --pg7c-radius: 14px;
  --pg7c-radius-sm: 10px;
  --pg7c-header-h: 60px;
  --pg7c-bottom-h: 62px;
  --pg7c-grad: linear-gradient(135deg, #18232f 0%, #212F3D 55%, #2a3a4d 100%);
  --pg7c-gold-grad: linear-gradient(135deg, #f5c542 0%, #d99f1c 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--pg7c-bg);
  background-image: var(--pg7c-grad);
  color: var(--pg7c-text);
  line-height: 1.55;
  font-size: 1.5rem;
  overflow-x: hidden;
  min-height: 100vh;
}

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

.pg7c-skip {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.pg7c-skip:focus {
  left: 10px; top: 10px; width: auto; height: auto; padding: 8px 14px;
  background: var(--pg7c-gold); color: #18232f; border-radius: 8px; z-index: 2000;
}

/* ========= Layout ========= */
.pg7c-wrapper { width: 100%; max-width: 430px; margin: 0 auto; position: relative; }
.pg7c-container { width: 100%; padding: 0 14px; }
.pg7c-main { padding-top: calc(var(--pg7c-header-h) + 8px); padding-bottom: 90px; }

/* ========= Header ========= */
.pg7c-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(24, 35, 47, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pg7c-border);
}
.pg7c-header-inner {
  max-width: 430px; margin: 0 auto; height: var(--pg7c-header-h);
  padding: 0 12px; display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.pg7c-logo { display: flex; align-items: center; gap: 8px; color: var(--pg7c-text); }
.pg7c-logo-img { width: 30px; height: 30px; border-radius: 8px; object-fit: cover; }
.pg7c-logo-txt { font-size: 1.7rem; font-weight: 700; letter-spacing: 0.3px; }
.pg7c-logo-txt b { color: var(--pg7c-accent); }
.pg7c-header-actions { display: flex; align-items: center; gap: 6px; }
.pg7c-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  font-weight: 700; border-radius: 999px; padding: 8px 14px; font-size: 1.3rem;
  min-height: 36px; transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.pg7c-btn:active { transform: scale(0.95); }
.pg7c-btn-login {
  background: rgba(175, 238, 238, 0.14); color: var(--pg7c-accent);
  border: 1px solid var(--pg7c-accent);
}
.pg7c-btn-register {
  background: var(--pg7c-gold-grad); color: #18232f;
  box-shadow: 0 4px 14px rgba(245, 197, 66, 0.35);
}
.pg7c-menu-btn {
  width: 38px; height: 38px; border-radius: 10px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; background: rgba(175, 238, 238, 0.1);
  border: 1px solid var(--pg7c-border);
}
.pg7c-menu-btn span { display: block; width: 16px; height: 2px; background: var(--pg7c-accent); border-radius: 2px; }
.pg7c-menu-btn.pg7c-active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.pg7c-menu-btn.pg7c-active span:nth-child(2) { opacity: 0; }
.pg7c-menu-btn.pg7c-active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ========= Mobile slide menu ========= */
.pg7c-mobile-menu {
  position: fixed; top: var(--pg7c-header-h); left: 0; right: 0; z-index: 9999;
  background: var(--pg7c-bg-2); border-bottom: 1px solid var(--pg7c-border);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease; box-shadow: var(--pg7c-shadow);
}
.pg7c-mobile-menu.pg7c-menu-open { max-height: 80vh; overflow-y: auto; }
.pg7c-mobile-menu-inner { max-width: 430px; margin: 0 auto; padding: 12px 16px 18px; }
.pg7c-menu-title {
  font-size: 1.25rem; text-transform: uppercase; letter-spacing: 1px; color: var(--pg7c-accent);
  padding: 6px 0 10px; border-bottom: 1px dashed var(--pg7c-border); margin-bottom: 8px;
}
.pg7c-menu-link {
  display: flex; align-items: center; gap: 12px; padding: 12px 10px; color: var(--pg7c-text);
  font-size: 1.5rem; border-bottom: 1px solid rgba(175, 238, 238, 0.08);
}
.pg7c-menu-link i, .pg7c-menu-link .material-icons { color: var(--pg7c-accent); width: 22px; text-align: center; }
.pg7c-menu-link:hover { background: rgba(175, 238, 238, 0.06); }
#pg7c-menu-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 9998; display: none;
}
body.pg7c-no-scroll #pg7c-menu-overlay { display: block; }

/* ========= Carousel ========= */
.pg7c-carousel {
  position: relative; width: 100%; border-radius: var(--pg7c-radius); overflow: hidden;
  box-shadow: var(--pg7c-shadow); margin: 14px 0 6px;
}
.pg7c-slides { position: relative; width: 100%; aspect-ratio: 16/8; }
.pg7c-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s ease; cursor: pointer;
}
.pg7c-slide img { width: 100%; height: 100%; object-fit: cover; }
.pg7c-slide-active { opacity: 1; }
.pg7c-slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px;
  background: linear-gradient(to top, rgba(24, 35, 47, 0.92), transparent);
  color: var(--pg7c-text);
}
.pg7c-slide-caption b { color: var(--pg7c-gold); }
.pg7c-dots {
  position: absolute; bottom: 8px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px;
}
.pg7c-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(240, 248, 255, 0.45); transition: all 0.25s ease;
}
.pg7c-dot-active { background: var(--pg7c-gold); width: 22px; border-radius: 5px; }

/* ========= Section headings ========= */
.pg7c-section { padding: 18px 14px; }
.pg7c-section-head {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.pg7c-section-title {
  font-size: 2.0rem; font-weight: 800; display: flex; align-items: center; gap: 8px; line-height: 1.2;
}
.pg7c-section-title i, .pg7c-section-title .material-icons { color: var(--pg7c-gold); font-size: 2.2rem; }
.pg7c-section-title em { color: var(--pg7c-accent); font-style: normal; }
.pg7c-section-more { font-size: 1.25rem; color: var(--pg7c-accent); }

/* ========= H1 hero ========= */
.pg7c-hero { padding: 14px 14px 6px; text-align: center; }
.pg7c-hero h1 {
  font-size: 2.5rem; font-weight: 800; line-height: 1.25; margin-bottom: 8px;
  background: var(--pg7c-gold-grad); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pg7c-hero p { color: var(--pg7c-muted); font-size: 1.45rem; margin-bottom: 12px; }
.pg7c-hero-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.pg7c-hero-actions .pg7c-btn { padding: 12px 22px; font-size: 1.5rem; }

/* ========= Game grid ========= */
.pg7c-game-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
}
.pg7c-game-card {
  background: var(--pg7c-bg-card); border: 1px solid var(--pg7c-border); border-radius: var(--pg7c-radius-sm);
  overflow: hidden; cursor: pointer; transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  display: flex; flex-direction: column;
}
.pg7c-game-card:active { transform: scale(0.96); border-color: var(--pg7c-accent); }
.pg7c-game-card:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35); }
.pg7c-game-img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover; background: #0f1620;
}
.pg7c-game-name {
  font-size: 1.15rem; padding: 6px 4px 7px; text-align: center; color: var(--pg7c-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.3;
}
.pg7c-game-tag {
  position: relative; display: inline-block;
}
.pg7c-game-tag::after {
  content: "HOT"; position: absolute; top: 4px; left: 4px; background: var(--pg7c-red);
  color: #fff; font-size: 0.9rem; font-weight: 800; padding: 1px 5px; border-radius: 4px; letter-spacing: 0.5px;
}

/* ========= Filter bar ========= */
.pg7c-filter-bar {
  display: flex; gap: 8px; overflow-x: auto; padding: 6px 14px 12px; scrollbar-width: none;
}
.pg7c-filter-bar::-webkit-scrollbar { display: none; }
.pg7c-filter-btn {
  flex: 0 0 auto; padding: 7px 14px; border-radius: 999px; background: var(--pg7c-bg-card);
  color: var(--pg7c-muted); font-size: 1.3rem; font-weight: 600; border: 1px solid var(--pg7c-border);
  white-space: nowrap; transition: all 0.18s ease;
}
.pg7c-filter-btn.pg7c-filter-active {
  background: var(--pg7c-gold-grad); color: #18232f; border-color: transparent;
}

/* ========= Generic cards / modules ========= */
.pg7c-card {
  background: var(--pg7c-bg-card); border: 1px solid var(--pg7c-border); border-radius: var(--pg7c-radius);
  padding: 16px; box-shadow: var(--pg7c-shadow);
}
.pg7c-module { padding: 8px 14px 18px; }
.pg7c-module-card {
  background: linear-gradient(160deg, rgba(36, 51, 68, 0.95), rgba(24, 35, 47, 0.95));
  border: 1px solid var(--pg7c-border); border-radius: var(--pg7c-radius); padding: 16px; box-shadow: var(--pg7c-shadow);
}
.pg7c-module-card h2 {
  font-size: 1.95rem; font-weight: 800; margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.pg7c-module-card h2 i, .pg7c-module-card h2 .material-icons { color: var(--pg7c-accent); }
.pg7c-module-card h3 { font-size: 1.6rem; font-weight: 700; margin: 10px 0 6px; color: var(--pg7c-accent); }
.pg7c-module-card p { color: var(--pg7c-muted); margin-bottom: 8px; font-size: 1.4rem; }
.pg7c-module-card p b { color: var(--pg7c-text); }
.pg7c-link-text { color: var(--pg7c-gold); font-weight: 700; text-decoration: underline; }

/* How to play steps */
.pg7c-steps { display: flex; flex-direction: column; gap: 10px; }
.pg7c-step {
  display: flex; gap: 12px; align-items: flex-start; background: rgba(175, 238, 238, 0.06);
  padding: 12px; border-radius: var(--pg7c-radius-sm); border-left: 3px solid var(--pg7c-accent);
}
.pg7c-step-num {
  flex: 0 0 32px; width: 32px; height: 32px; border-radius: 50%; background: var(--pg7c-gold-grad);
  color: #18232f; font-weight: 800; display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.pg7c-step-body h4 { font-size: 1.5rem; font-weight: 700; margin-bottom: 2px; }
.pg7c-step-body p { font-size: 1.3rem; color: var(--pg7c-muted); margin: 0; }

/* RTP table */
.pg7c-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.3rem; }
.pg7c-rtp-table th, .pg7c-rtp-table td {
  padding: 8px 6px; text-align: left; border-bottom: 1px solid var(--pg7c-border);
}
.pg7c-rtp-table th { color: var(--pg7c-accent); font-weight: 700; }
.pg7c-rtp-table td.pg7c-rtp-val { color: var(--pg7c-gold); font-weight: 700; text-align: right; }
.pg7c-rtp-bar { height: 6px; background: rgba(175, 238, 238, 0.12); border-radius: 4px; overflow: hidden; margin-top: 4px; }
.pg7c-rtp-bar span { display: block; height: 100%; background: var(--pg7c-gold-grad); }

/* FAQ */
.pg7c-faq-item {
  border-bottom: 1px solid var(--pg7c-border); padding: 12px 0;
}
.pg7c-faq-item summary {
  font-weight: 700; font-size: 1.5rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 8px; align-items: center;
}
.pg7c-faq-item summary::after { content: "+"; color: var(--pg7c-gold); font-size: 2rem; font-weight: 700; }
.pg7c-faq-item[open] summary::after { content: "−"; }
.pg7c-faq-item p { margin-top: 8px; color: var(--pg7c-muted); font-size: 1.35rem; }

/* Testimonials */
.pg7c-testi-grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
.pg7c-testi {
  background: rgba(175, 238, 238, 0.06); border-radius: var(--pg7c-radius-sm); padding: 12px;
  border-left: 3px solid var(--pg7c-gold);
}
.pg7c-testi-head { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.pg7c-testi-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--pg7c-gold-grad); color: #18232f;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.5rem;
}
.pg7c-testi-name { font-weight: 700; font-size: 1.4rem; }
.pg7c-testi-stars { color: var(--pg7c-gold); font-size: 1.2rem; }
.pg7c-testi p { font-size: 1.3rem; color: var(--pg7c-muted); margin: 0; }

/* Payment */
.pg7c-pay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pg7c-pay-item {
  background: rgba(240, 248, 255, 0.05); border: 1px solid var(--pg7c-border); border-radius: var(--pg7c-radius-sm);
  padding: 10px 6px; text-align: center; font-size: 1.2rem; color: var(--pg7c-muted);
}
.pg7c-pay-item i, .pg7c-pay-item .material-icons { font-size: 2.4rem; color: var(--pg7c-accent); display: block; margin-bottom: 4px; }

/* Winners */
.pg7c-winner-list { display: flex; flex-direction: column; gap: 8px; }
.pg7c-winner {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: rgba(175, 238, 238, 0.06); padding: 10px 12px; border-radius: var(--pg7c-radius-sm);
}
.pg7c-winner-name { font-weight: 700; font-size: 1.35rem; }
.pg7c-winner-game { font-size: 1.2rem; color: var(--pg7c-muted); }
.pg7c-winner-amt { color: var(--pg7c-gold); font-weight: 800; font-size: 1.4rem; }

/* App download CTA */
.pg7c-app-cta {
  background: linear-gradient(135deg, rgba(245, 197, 66, 0.18), rgba(127, 217, 217, 0.12));
  border: 1px solid var(--pg7c-border); border-radius: var(--pg7c-radius); padding: 18px 16px; text-align: center;
}
.pg7c-app-cta h3 { font-size: 1.8rem; color: var(--pg7c-gold); margin-bottom: 6px; }
.pg7c-app-cta p { color: var(--pg7c-muted); margin-bottom: 12px; font-size: 1.35rem; }
.pg7c-app-btns { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }

/* Security */
.pg7c-sec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pg7c-sec-item {
  background: rgba(175, 238, 238, 0.06); padding: 12px; border-radius: var(--pg7c-radius-sm); text-align: center;
}
.pg7c-sec-item i, .pg7c-sec-item .material-icons { font-size: 2.6rem; color: var(--pg7c-accent); margin-bottom: 6px; }
.pg7c-sec-item h4 { font-size: 1.4rem; font-weight: 700; margin-bottom: 2px; }
.pg7c-sec-item p { font-size: 1.2rem; color: var(--pg7c-muted); margin: 0; }

/* Category highlights */
.pg7c-cat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.pg7c-cat-card {
  position: relative; border-radius: var(--pg7c-radius-sm); overflow: hidden; cursor: pointer;
  aspect-ratio: 16/10; border: 1px solid var(--pg7c-border);
}
.pg7c-cat-card img { width: 100%; height: 100%; object-fit: cover; }
.pg7c-cat-card .pg7c-cat-label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 8px 10px;
  background: linear-gradient(to top, rgba(24, 35, 47, 0.92), transparent);
  font-weight: 700; font-size: 1.4rem;
}
.pg7c-cat-card .pg7c-cat-label i { color: var(--pg7c-gold); }

/* ========= Footer ========= */
.pg7c-footer {
  background: var(--pg7c-bg-2); border-top: 1px solid var(--pg7c-border); padding: 22px 14px 100px; margin-top: 10px;
}
.pg7c-footer-brand {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.pg7c-footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.pg7c-footer-brand b { font-size: 1.8rem; color: var(--pg7c-accent); }
.pg7c-footer-desc { color: var(--pg7c-muted); font-size: 1.3rem; margin-bottom: 14px; }
.pg7c-footer-links {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.pg7c-footer-links a {
  background: rgba(175, 238, 238, 0.08); border: 1px solid var(--pg7c-border); color: var(--pg7c-text);
  padding: 6px 12px; border-radius: 999px; font-size: 1.25rem; font-weight: 600;
}
.pg7c-footer-links a:hover { background: var(--pg7c-gold-grad); color: #18232f; }
.pg7c-footer-promo {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px;
}
.pg7c-footer-promo button {
  background: var(--pg7c-gold-grad); color: #18232f; font-weight: 700; padding: 8px 14px;
  border-radius: 999px; font-size: 1.3rem;
}
.pg7c-footer-copy {
  border-top: 1px solid var(--pg7c-border); padding-top: 12px; color: var(--pg7c-muted);
  font-size: 1.2rem; text-align: center;
}

/* ========= Bottom navigation (mobile only) ========= */
.pg7c-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000; height: var(--pg7c-bottom-h);
  background: rgba(15, 22, 32, 0.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--pg7c-border);
  display: flex; justify-content: space-around; align-items: stretch;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.35);
}
.pg7c-bottom-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  color: var(--pg7c-muted); font-size: 1.05rem; font-weight: 600; padding: 4px 2px; position: relative;
  transition: color 0.2s ease, transform 0.2s ease;
}
.pg7c-bottom-btn i, .pg7c-bottom-btn .material-icons, .pg7c-bottom-btn ion-icon, .pg7c-bottom-btn .ti {
  font-size: 2.2rem; transition: transform 0.2s ease, color 0.2s ease;
}
.pg7c-bottom-btn:active { transform: scale(0.92); }
.pg7c-bottom-btn.pg7c-bottom-active { color: var(--pg7c-gold); }
.pg7c-bottom-btn.pg7c-bottom-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 30px; height: 3px; background: var(--pg7c-gold); border-radius: 0 0 4px 4px;
}
.pg7c-bottom-btn.pg7c-bottom-active i, .pg7c-bottom-btn.pg7c-bottom-active .material-icons,
.pg7c-bottom-btn.pg7c-bottom-active ion-icon, .pg7c-bottom-btn.pg7c-bottom-active .ti {
  transform: translateY(-2px) scale(1.1);
}
.pg7c-bottom-btn.pg7c-bottom-promo {
  position: relative;
}
.pg7c-bottom-btn.pg7c-bottom-promo i { color: var(--pg7c-accent); }
.pg7c-bottom-badge {
  position: absolute; top: 4px; right: 18px; background: var(--pg7c-red); color: #fff;
  font-size: 0.9rem; font-weight: 700; min-width: 16px; height: 16px; border-radius: 8px; padding: 0 4px;
  display: flex; align-items: center; justify-content: center;
}

/* ========= Back to top ========= */
.pg7c-top-btn {
  position: fixed; right: 14px; bottom: calc(var(--pg7c-bottom-h) + 12px); z-index: 999;
  width: 42px; height: 42px; border-radius: 50%; background: var(--pg7c-gold-grad); color: #18232f;
  display: flex; align-items: center; justify-content: center; font-size: 2rem; font-weight: 700;
  box-shadow: var(--pg7c-shadow); opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pg7c-top-btn.pg7c-top-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }

/* ========= Reveal animation ========= */
.pg7c-reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.pg7c-reveal.pg7c-revealed { opacity: 1; transform: translateY(0); }

/* ========= Responsive ========= */
@media (min-width: 769px) {
  .pg7c-bottom-nav { display: none; }
  .pg7c-top-btn { bottom: 18px; }
  .pg7c-wrapper { max-width: 480px; }
  .pg7c-footer { padding-bottom: 28px; }
  .pg7c-main { padding-bottom: 30px; }
}
@media (min-width: 600px) and (max-width: 768px) {
  .pg7c-game-grid, .pg7c-pay-grid { grid-template-columns: repeat(4, 1fr); }
  .pg7c-sec-grid, .pg7c-cat-grid { grid-template-columns: repeat(3, 1fr); }
  .pg7c-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 360px) {
  .pg7c-logo-txt { font-size: 1.5rem; }
  .pg7c-hero h1 { font-size: 2.2rem; }
  .pg7c-game-grid { grid-template-columns: repeat(2, 1fr); }
}
