/* abc 8 - style.css
   All custom classes use the gce7- prefix.
   Mobile-first layout, max-width 430px viewport, rem units (root 62.5%).
   Color palette: #FA8072 | #80CBC4 | #34495E | #AFEEEE | #E0F2F1
   Dark tones for backgrounds, light tones for text.
*/

:root {
  --gce7-primary: #FA8072;
  --gce7-accent: #80CBC4;
  --gce7-bg: #34495E;
  --gce7-bg-deep: #2a3a4a;
  --gce7-text: #E0F2F1;
  --gce7-text-soft: #AFEEEE;
  --gce7-card-bg: #3d5066;
  --gce7-card-border: #4b6178;
  --gce7-highlight: #FA8072;
  --gce7-gold: #f4c95d;
  --gce7-radius: 1.2rem;
  --gce7-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
  --gce7-header-h: 5.4rem;
  --gce7-bottomnav-h: 6.2rem;
}

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

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

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--gce7-bg);
  color: var(--gce7-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gce7-text-soft); text-decoration: none; }

.gce7-container { width: 100%; padding: 0 1.2rem; }
.gce7-wrapper { max-width: 430px; margin: 0 auto; padding: 0 1.2rem; }

/* ============ Header ============ */
.gce7-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--gce7-header-h);
  background: linear-gradient(90deg, var(--gce7-bg-deep), #1f2c3a);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  border-bottom: 2px solid var(--gce7-primary);
}

.gce7-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gce7-text);
  font-weight: 700;
  font-size: 1.7rem;
}
.gce7-logo img { width: 2.8rem; height: 2.8rem; border-radius: 0.6rem; }
.gce7-logo .gce7-logo-name { color: var(--gce7-primary); }

.gce7-header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.gce7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3.6rem;
  padding: 0 1.4rem;
  border-radius: 2rem;
  font-size: 1.3rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
  text-align: center;
  line-height: 1;
}
.gce7-btn:active { transform: scale(0.95); }

.gce7-btn-register {
  background: linear-gradient(135deg, var(--gce7-primary), #e8635a);
  color: #fff;
  box-shadow: 0 3px 8px rgba(250, 128, 114, 0.45);
}
.gce7-btn-login {
  background: transparent;
  color: var(--gce7-text-soft);
  border: 1.5px solid var(--gce7-accent);
}

.gce7-menu-btn {
  background: transparent;
  border: none;
  color: var(--gce7-text);
  font-size: 2.2rem;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0.6rem;
}
.gce7-menu-btn:active { background: rgba(255, 255, 255, 0.08); }

/* ============ Mobile slide-down menu ============ */
.gce7-mobile-menu {
  position: fixed;
  top: var(--gce7-header-h);
  left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  background: var(--gce7-bg-deep);
  border-bottom: 2px solid var(--gce7-primary);
  padding: 1rem 1.2rem 1.4rem;
  z-index: 9999;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease, padding 0.28s ease;
  padding-top: 0;
  padding-bottom: 0;
}
.gce7-mobile-menu.gce7-menu-open {
  max-height: 60rem;
  padding-top: 1rem;
  padding-bottom: 1.4rem;
}
.gce7-mobile-menu a {
  display: block;
  padding: 1rem 1.2rem;
  color: var(--gce7-text);
  font-size: 1.4rem;
  border-radius: 0.8rem;
  margin-bottom: 0.4rem;
  background: rgba(128, 203, 196, 0.08);
}
.gce7-mobile-menu a:active { background: rgba(250, 128, 114, 0.18); }
.gce7-mobile-menu a i { margin-right: 0.8rem; color: var(--gce7-accent); }

/* ============ Main / layout ============ */
.gce7-main {
  padding-top: calc(var(--gce7-header-h) + 1rem);
  padding-bottom: calc(var(--gce7-bottomnav-h) + 1rem);
  min-height: 100vh;
}

/* ============ Carousel ============ */
.gce7-carousel {
  position: relative;
  width: 100%;
  height: 18rem;
  border-radius: var(--gce7-radius);
  overflow: hidden;
  margin: 1rem 0;
  box-shadow: var(--gce7-shadow);
}
.gce7-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}
.gce7-carousel-slide.gce7-active { opacity: 1; }
.gce7-carousel-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.gce7-carousel-cap {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
}
.gce7-carousel-dots {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  display: flex;
  gap: 0.5rem;
}
.gce7-carousel-dot {
  width: 0.8rem; height: 0.8rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
  cursor: pointer;
}
.gce7-carousel-dot.gce7-active { background: var(--gce7-primary); }

/* ============ Section heading ============ */
.gce7-section { margin: 2rem 0; }
.gce7-section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gce7-text);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 4px solid var(--gce7-primary);
}
.gce7-section-title i { color: var(--gce7-accent); margin-right: 0.5rem; }
.gce7-h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gce7-text);
  text-align: center;
  margin: 1.4rem 0;
  line-height: 1.3;
}
.gce7-h1 span { color: var(--gce7-primary); }

/* ============ Category chips ============ */
.gce7-cat-chips {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.5rem 0.2rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.gce7-cat-chips::-webkit-scrollbar { display: none; }
.gce7-cat-chip {
  flex: 0 0 auto;
  padding: 0.7rem 1.3rem;
  border-radius: 2rem;
  background: var(--gce7-card-bg);
  color: var(--gce7-text);
  font-size: 1.3rem;
  font-weight: 600;
  border: 1px solid var(--gce7-card-border);
  cursor: pointer;
}
.gce7-cat-chip.gce7-active {
  background: var(--gce7-primary);
  color: #fff;
  border-color: var(--gce7-primary);
}

/* ============ Game grid ============ */
.gce7-game-section { margin: 1.4rem 0; }
.gce7-game-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gce7-text-soft);
  margin-bottom: 0.9rem;
}
.gce7-game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.gce7-game-card {
  background: var(--gce7-card-bg);
  border: 1px solid var(--gce7-card-border);
  border-radius: 1rem;
  padding: 0.6rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.gce7-game-card:active {
  transform: scale(0.96);
  border-color: var(--gce7-primary);
}
.gce7-game-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 0.7rem;
  margin-bottom: 0.4rem;
}
.gce7-game-card .gce7-game-name {
  font-size: 1.15rem;
  color: var(--gce7-text);
  line-height: 1.25;
  min-height: 2.8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============ Info / feature modules ============ */
.gce7-card {
  background: var(--gce7-card-bg);
  border: 1px solid var(--gce7-card-border);
  border-radius: var(--gce7-radius);
  padding: 1.4rem;
  margin: 1rem 0;
  box-shadow: var(--gce7-shadow);
}
.gce7-card h2, .gce7-card h3 {
  color: var(--gce7-primary);
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}
.gce7-card h3 { font-size: 1.5rem; color: var(--gce7-accent); }
.gce7-card p {
  font-size: 1.35rem;
  color: var(--gce7-text);
  margin-bottom: 0.7rem;
  text-align: justify;
}
.gce7-card ul { padding-left: 1.6rem; }
.gce7-card li { font-size: 1.3rem; margin-bottom: 0.4rem; color: var(--gce7-text); }

.gce7-promo-text {
  color: var(--gce7-primary);
  font-weight: 700;
  cursor: pointer;
}
.gce7-promo-text:hover { text-decoration: underline; }

.gce7-cta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.gce7-cta .gce7-btn { flex: 1 1 auto; min-width: 12rem; }

/* ============ RTP table ============ */
.gce7-rpt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.25rem;
}
.gce7-rpt-table th, .gce7-rpt-table td {
  padding: 0.7rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid var(--gce7-card-border);
}
.gce7-rpt-table th { color: var(--gce7-accent); }
.gce7-rpt-table td { color: var(--gce7-text); }

/* ============ Testimonials ============ */
.gce7-testimonial {
  background: var(--gce7-card-bg);
  border-left: 4px solid var(--gce7-accent);
  border-radius: 0.8rem;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
}
.gce7-testimonial p { font-size: 1.3rem; color: var(--gce7-text); }
.gce7-testimonial .gce7-author {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.15rem;
  color: var(--gce7-text-soft);
  font-weight: 700;
}

/* ============ Payment / winners / app ============ */
.gce7-pay-row, .gce7-winner-row {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  padding: 0.5rem 0;
}
.gce7-pay-row::-webkit-scrollbar, .gce7-winner-row::-webkit-scrollbar { display: none; }
.gce7-pay-item {
  flex: 0 0 auto;
  background: var(--gce7-card-bg);
  border: 1px solid var(--gce7-card-border);
  border-radius: 0.8rem;
  padding: 0.6rem 1rem;
  font-size: 1.2rem;
  color: var(--gce7-text);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.gce7-winner-item {
  flex: 0 0 auto;
  background: var(--gce7-card-bg);
  border-radius: 0.8rem;
  padding: 0.7rem 1rem;
  font-size: 1.2rem;
  min-width: 14rem;
}
.gce7-winner-item .gce7-winner-name { color: var(--gce7-gold); font-weight: 700; }
.gce7-winner-item .gce7-winner-amount { color: var(--gce7-primary); font-weight: 700; }

.gce7-app-box {
  background: linear-gradient(135deg, var(--gce7-primary), #e8635a);
  border-radius: var(--gce7-radius);
  padding: 1.4rem;
  color: #fff;
  text-align: center;
  margin: 1rem 0;
}
.gce7-app-box h3 { color: #fff; margin-bottom: 0.5rem; }
.gce7-app-box p { color: #fff; margin-bottom: 1rem; }
.gce7-app-box .gce7-btn {
  background: #fff;
  color: var(--gce7-primary);
}

/* ============ Footer ============ */
.gce7-footer {
  background: var(--gce7-bg-deep);
  padding: 2rem 1.2rem 1.5rem;
  margin-top: 2rem;
  border-top: 2px solid var(--gce7-primary);
}
.gce7-footer-brand {
  font-size: 1.3rem;
  color: var(--gce7-text);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.gce7-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0;
}
.gce7-footer-links a {
  flex: 1 1 auto;
  min-width: 8rem;
  padding: 0.7rem 1rem;
  background: var(--gce7-card-bg);
  border-radius: 0.7rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--gce7-text);
  border: 1px solid var(--gce7-card-border);
}
.gce7-footer-links a:active { border-color: var(--gce7-primary); }
.gce7-footer-copy {
  text-align: center;
  font-size: 1.15rem;
  color: var(--gce7-text-soft);
  margin-top: 1.2rem;
}

/* ============ Mobile bottom nav ============ */
.gce7-bottomnav {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  max-width: 430px;
  margin: 0 auto;
  height: var(--gce7-bottomnav-h);
  background: linear-gradient(180deg, #243447, #1a2632);
  border-top: 2px solid var(--gce7-primary);
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  z-index: 1000;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.4);
}
.gce7-bottomnav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  min-width: 60px;
  min-height: 60px;
  background: transparent;
  border: none;
  color: var(--gce7-text-soft);
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.15s ease, color 0.15s ease;
  padding: 0.3rem 0;
}
.gce7-bottomnav-btn i, .gce7-bottomnav-btn .material-icons-outlined,
.gce7-bottomnav-btn .ion { font-size: 2.4rem; line-height: 1; }
.gce7-bottomnav-btn:active { transform: scale(0.92); }
.gce7-bottomnav-btn.gce7-active {
  color: var(--gce7-primary);
}
.gce7-bottomnav-btn.gce7-active::after {
  content: "";
  width: 1.8rem; height: 0.3rem;
  background: var(--gce7-primary);
  border-radius: 0.2rem;
  margin-top: 0.2rem;
}
.gce7-bottomnav-badge {
  position: absolute;
  top: 0.6rem;
  right: calc(50% - 1.6rem);
  background: var(--gce7-gold);
  color: #2a2a2a;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 1rem;
  padding: 0 0.4rem;
  min-width: 1.4rem;
  height: 1.4rem;
  line-height: 1.4rem;
  text-align: center;
}

/* ============ Desktop: hide bottom nav ============ */
@media (min-width: 769px) {
  .gce7-bottomnav { display: none; }
  body { max-width: 430px; }
}

/* ============ Mobile bottom padding clearance ============ */
@media (max-width: 768px) {
  .gce7-main {
    padding-bottom: calc(var(--gce7-bottomnav-h) + 1.2rem);
  }
}

/* Utility */
.gce7-text-center { text-align: center; }
.gce7-mt-1 { margin-top: 1rem; }
.gce7-mb-1 { margin-bottom: 1rem; }
.gce7-hidden { display: none; }
