/* 9777 dbt design - all custom classes use prefix g725- */
:root {
  --g725-primary: #40E0D0;
  --g725-bg: #333333;
  --g725-bg2: #1f2a30;
  --g725-bg3: #2a373d;
  --g725-text: #E0F2F1;
  --g725-muted: #C0C0C0;
  --g725-accent: #40E0D0;
  --g725-gold: #ffd76b;
  --g725-danger: #ff5a6a;
  --g725-radius: 14px;
  --g725-shadow: 0 6px 20px rgba(0,0,0,.45);
  --g725-header-h: 56px;
  --g725-bottom-h: 60px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--g725-bg);
  color: var(--g725-text);
  font-family: "Noto Sans Bengali", "Hind Siliguri", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.g725-container { max-width: 430px; margin: 0 auto; padding: 0 12px; }
.g725-wrapper { width: 100%; }

/* Header */
.g725-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--g725-header-h);
  background: linear-gradient(90deg, #2a373d, #333333);
  border-bottom: 2px solid var(--g725-primary);
  box-shadow: var(--g725-shadow);
}
.g725-header-inner {
  max-width: 430px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px;
}
.g725-logo { display: flex; align-items: center; gap: 8px; color: var(--g725-text); }
.g725-logo img { width: 28px; height: 28px; border-radius: 6px; }
.g725-logo b { font-size: 1.7rem; color: var(--g725-primary); letter-spacing: .3px; }

.g725-header-actions { display: flex; align-items: center; gap: 6px; }
.g725-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  min-height: 34px; padding: 0 12px; border: none; border-radius: 20px;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}
.g725-btn:active { transform: scale(.94); }
.g725-btn-primary { background: var(--g725-primary); color: #10282a; }
.g725-btn-ghost { background: transparent; color: var(--g725-text); border: 1px solid var(--g725-primary); }
.g725-menu-btn {
  background: transparent; border: none; color: var(--g725-text);
  font-size: 2.1rem; width: 36px; height: 36px; border-radius: 8px; cursor: pointer;
}

/* Expandable menu */
.g725-mobile-menu {
  position: fixed; top: var(--g725-header-h); left: 0; right: 0; z-index: 9999;
  background: var(--g725-bg2);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  border-bottom: 2px solid var(--g725-primary);
}
.g725-mobile-menu.g725-menu-open { max-height: 420px; }
.g725-menu-list { max-width: 430px; margin: 0 auto; padding: 8px 14px 14px; list-style: none; }
.g725-menu-list li { border-bottom: 1px solid rgba(64,224,208,.15); }
.g725-menu-list a {
  display: flex; align-items: center; gap: 10px; padding: 12px 6px;
  color: var(--g725-text); font-size: 1.4rem;
}
.g725-menu-list a i, .g725-menu-list a span.mi { color: var(--g725-primary); font-size: 1.8rem; }

/* Main */
main { padding-top: calc(var(--g725-header-h) + 10px); padding-bottom: 20px; }

/* Hero / Carousel */
.g725-carousel { position: relative; border-radius: var(--g725-radius); overflow: hidden; margin: 10px 0; }
.g725-carousel-track { display: flex; transition: transform .5s ease; }
.g725-carousel-slide { min-width: 100%; position: relative; }
.g725-carousel-slide img { width: 100%; height: 180px; object-fit: cover; }
.g725-carousel-cap {
  position: absolute; left: 10px; bottom: 10px; right: 10px;
  background: rgba(0,0,0,.45); padding: 6px 10px; border-radius: 10px;
  font-size: 1.25rem;
}
.g725-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,.4); color: var(--g725-primary); border: none;
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 1.6rem;
}
.g725-carousel-arrow.g725-prev { left: 6px; }
.g725-carousel-arrow.g725-next { right: 6px; }
.g725-carousel-dots { position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; }
.g725-carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.4); border: none; cursor: pointer; }
.g725-carousel-dot.g725-dot-active { background: var(--g725-primary); }

/* Section */
.g725-section { margin: 18px 0; }
.g725-section-title {
  font-size: 1.8rem; color: var(--g725-primary); margin: 0 0 10px;
  padding-left: 10px; border-left: 4px solid var(--g725-primary);
}
.g725-section-sub { font-size: 1.35rem; color: var(--g725-muted); margin: 6px 0 12px; }

/* Category chips */
.g725-cat-bar { display: flex; gap: 6px; overflow-x: auto; padding: 4px 0 8px; }
.g725-cat-chip {
  flex: 0 0 auto; padding: 6px 12px; border-radius: 16px;
  background: var(--g725-bg3); color: var(--g725-text); font-size: 1.25rem;
  border: 1px solid transparent; cursor: pointer;
}
.g725-cat-chip.g725-cat-active { background: var(--g725-primary); color: #10282a; }

/* Game grid */
.g725-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.g725-game-card {
  background: var(--g725-bg2); border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(64,224,208,.12); transition: transform .15s ease;
}
.g725-game-card:active { transform: scale(.96); }
.g725-game-card img { width: 100%; height: 78px; object-fit: cover; }
.g725-game-card .g725-game-name {
  font-size: 1.1rem; color: var(--g725-text); text-align: center;
  padding: 4px 4px 6px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.g725-game-section { margin: 16px 0; }

/* Cards / modules */
.g725-card {
  background: var(--g725-bg2); border-radius: var(--g725-radius); padding: 14px;
  margin: 10px 0; border: 1px solid rgba(64,224,208,.1);
}
.g725-card p { margin: .4em 0; color: var(--g725-text); font-size: 1.35rem; }
.g725-card h3 { color: var(--g725-primary); margin: 0 0 6px; font-size: 1.5rem; }

.g725-grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 8px; }
.g725-mini {
  background: var(--g725-bg3); border-radius: 10px; padding: 10px; text-align: center;
}
.g725-mini b { display: block; color: var(--g725-primary); font-size: 1.6rem; }
.g725-mini span { color: var(--g725-muted); font-size: 1.15rem; }

.g725-promo-link {
  color: var(--g725-primary); font-weight: 700; cursor: pointer;
}
.g725-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--g725-primary); color: #10282a; font-weight: 800;
  padding: 10px 18px; border-radius: 24px; font-size: 1.4rem; margin: 8px 0;
}
.g725-cta:hover { opacity: .9; }

.g725-list { list-style: none; padding: 0; margin: 0; }
.g725-list li { padding: 6px 0 6px 22px; position: relative; color: var(--g725-text); font-size: 1.3rem; }
.g725-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--g725-primary); position: absolute; left: 0; }

.g725-testi { background: var(--g725-bg3); border-radius: 10px; padding: 10px; margin: 6px 0; }
.g725-testi b { color: var(--g725-gold); }
.g725-testi .g725-stars { color: var(--g725-gold); }

.g725-pay { display: flex; flex-wrap: wrap; gap: 8px; }
.g725-pay span { background: var(--g725-bg3); border-radius: 8px; padding: 6px 10px; font-size: 1.2rem; }

/* Footer */
.g725-footer { background: var(--g725-bg2); padding: 18px 0 90px; margin-top: 20px; border-top: 2px solid var(--g725-primary); }
.g725-footer-inner { max-width: 430px; margin: 0 auto; padding: 0 14px; }
.g725-footer-brand { color: var(--g725-muted); font-size: 1.25rem; margin-bottom: 10px; }
.g725-footer-links { display: flex; flex-wrap: wrap; gap: 6px 12px; margin: 10px 0; }
.g725-footer-links a { color: var(--g725-text); font-size: 1.2rem; }
.g725-footer-copy { color: var(--g725-muted); font-size: 1.1rem; margin-top: 10px; }

/* Bottom nav */
.g725-bottom-nav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--g725-bottom-h); background: var(--g725-bg2);
  border-top: 2px solid var(--g725-primary);
  display: flex; justify-content: space-around; align-items: stretch;
}
.g725-nav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--g725-muted);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2px; cursor: pointer; transition: color .15s ease, transform .15s ease;
  text-decoration: none;
}
.g725-nav-btn i, .g725-nav-btn .mi, .g725-nav-btn .ion {
  font-size: 22px; line-height: 1;
}
.g725-nav-btn span { font-size: 1.0rem; }
.g725-nav-btn:active { transform: scale(.9); color: var(--g725-primary); }
.g725-nav-btn.g725-nav-active { color: var(--g725-primary); }
.g725-nav-badge {
  position: absolute; top: 6px; right: 18%; background: var(--g725-danger);
  color: #fff; font-size: .9rem; border-radius: 10px; padding: 0 5px; min-width: 16px; text-align: center;
}

/* Responsive: hide bottom nav on desktop, add mobile padding */
@media (min-width: 769px) {
  .g725-bottom-nav { display: none; }
  .g725-footer { padding-bottom: 20px; }
}
@media (max-width: 768px) {
  main { padding-bottom: 80px; }
}
