/* 55557 - Core Stylesheet
 * Class prefix: se75-
 * Palette: #00FF7F | #2E4057 | #C0C0C0 | #ADFF2F | #006400
 * Mobile-first, max-width 430px.
 * Comments in English.
 */

:root {
  --se75-primary: #00FF7F;
  --se75-secondary: #ADFF2F;
  --se75-bg: #2E4057;
  --se75-bg-deep: #006400;
  --se75-bg-dark: #14202c;
  --se75-text: #ffffff;
  --se75-muted: #C0C0C0;
  --se75-accent: #ADFF2F;
  --se75-gold: #FFD24A;
  --se75-radius: 14px;
  --se75-shadow: 0 4px 16px rgba(0,0,0,.35);
}

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

html { font-size: 62.5%; }

body {
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", sans-serif;
  background: linear-gradient(160deg, var(--se75-bg-dark) 0%, var(--se75-bg) 100%);
  color: var(--se75-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  overflow-x: hidden;
}

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

/* ===== Header ===== */
.se75-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: rgba(20,32,44,.96);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--se75-primary);
  padding: .8rem 1rem;
  display: flex; align-items: center; justify-content: space-between;
}
.se75-logo {
  display: flex; align-items: center; gap: .6rem;
  color: var(--se75-primary); font-weight: 700; font-size: 1.7rem;
}
.se75-logo img { width: 28px; height: 28px; border-radius: 6px; }
.se75-logo span { color: var(--se75-secondary); }

.se75-header-actions { display: flex; align-items: center; gap: .5rem; }
.se75-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.2rem; border: none; border-radius: 30px;
  font-size: 1.3rem; font-weight: 700; cursor: pointer;
  transition: transform .15s, box-shadow .15s; min-height: 36px;
}
.se75-btn:active { transform: scale(.96); }
.se75-btn-register {
  background: linear-gradient(135deg, var(--se75-primary), var(--se75-secondary));
  color: var(--se75-bg-deep);
}
.se75-btn-login {
  background: transparent; color: var(--se75-primary);
  border: 2px solid var(--se75-primary);
}
.se75-menu-btn {
  background: transparent; border: none; color: var(--se75-primary);
  font-size: 2.2rem; cursor: pointer; padding: .2rem .6rem;
}

/* ===== Mobile Menu ===== */
.se75-mobile-menu {
  position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px;
  height: 100vh; z-index: 9999;
  background: var(--se75-bg-dark);
  border-left: 2px solid var(--se75-primary);
  padding: 6rem 1.5rem 2rem; transition: right .3s ease;
  overflow-y: auto;
}
.se75-mobile-menu.se75-menu-open { right: 0; }
.se75-mobile-menu a {
  display: block; padding: 1rem 1.2rem; margin-bottom: .6rem;
  border-radius: 10px; color: var(--se75-text);
  background: rgba(255,255,255,.05); font-size: 1.4rem;
  border-left: 3px solid transparent; transition: all .2s;
}
.se75-mobile-menu a:hover, .se75-mobile-menu a:focus {
  background: rgba(0,255,127,.12); border-left-color: var(--se75-primary);
}
.se75-menu-close {
  position: absolute; top: 1rem; right: 1rem;
  background: transparent; border: none; color: var(--se75-primary);
  font-size: 2.4rem; cursor: pointer;
}
.se75-overlay {
  display: none; position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,.5);
}
.se75-overlay.se75-menu-open { display: block; }

/* ===== Layout ===== */
.se75-main { padding-top: 6rem; }
.se75-container { padding: 1rem 1.2rem; }
.se75-section { margin: 2rem 0; }
.se75-section-title {
  font-size: 2rem; font-weight: 700; color: var(--se75-primary);
  margin-bottom: 1rem; padding-left: .8rem;
  border-left: 4px solid var(--se75-secondary);
}

/* ===== Hero / Carousel ===== */
.se75-hero {
  position: relative; width: 100%; height: 200px;
  border-radius: var(--se75-radius); overflow: hidden;
  box-shadow: var(--se75-shadow); margin-bottom: 1.5rem;
}
.se75-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity .6s; cursor: pointer;
}
.se75-slide.se75-slide-active { opacity: 1; }
.se75-slide img { width: 100%; height: 100%; object-fit: cover; }
.se75-slide-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1rem; background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff; font-size: 1.3rem; font-weight: 600;
}
.se75-dots {
  position: absolute; bottom: .8rem; right: 1rem;
  display: flex; gap: .5rem;
}
.se75-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.5); cursor: pointer;
}
.se75-dot.se75-dot-active { background: var(--se75-primary); }

/* ===== Promo banner ===== */
.se75-promo-banner {
  background: linear-gradient(135deg, var(--se75-bg-deep), var(--se75-primary));
  border-radius: var(--se75-radius); padding: 1.2rem;
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem;
  cursor: pointer;
}
.se75-promo-banner i { font-size: 2.4rem; color: var(--se75-bg-dark); }
.se75-promo-banner strong { color: var(--se75-bg-dark); font-size: 1.4rem; }
.se75-promo-banner small { color: rgba(20,32,44,.8); font-size: 1.1rem; }

/* ===== Game grid ===== */
.se75-cat-head {
  display: flex; align-items: center; gap: .6rem;
  margin: 1.8rem 0 1rem; font-size: 1.8rem; font-weight: 700;
  color: var(--se75-secondary);
}
.se75-cat-head i { color: var(--se75-primary); }
.se75-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: .6rem;
}
.se75-game-card {
  background: rgba(255,255,255,.06); border-radius: 10px;
  padding: .5rem; text-align: center; cursor: pointer;
  border: 1px solid rgba(0,255,127,.15); transition: transform .15s, border-color .2s;
}
.se75-game-card:active { transform: scale(.95); }
.se75-game-card:hover { border-color: var(--se75-primary); }
.se75-game-card img {
  width: 100%; height: 56px; object-fit: cover;
  border-radius: 8px; margin-bottom: .3rem;
}
.se75-game-card span {
  font-size: 1.05rem; color: var(--se75-text); line-height: 1.2;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== Info cards ===== */
.se75-card {
  background: rgba(255,255,255,.05); border-radius: var(--se75-radius);
  padding: 1.2rem; margin-bottom: 1rem; border: 1px solid rgba(173,255,47,.15);
}
.se75-card h3 { color: var(--se75-primary); font-size: 1.6rem; margin-bottom: .6rem; }
.se75-card p { color: var(--se75-muted); font-size: 1.3rem; margin-bottom: .5rem; }
.se75-card .se75-inline-link { color: var(--se75-secondary); font-weight: 600; }

/* ===== Features list ===== */
.se75-features { display: grid; grid-template-columns: repeat(2,1fr); gap: .8rem; }
.se75-feature {
  background: rgba(0,100,0,.18); border-radius: 10px;
  padding: 1rem; text-align: center; border: 1px solid rgba(0,255,127,.2);
}
.se75-feature i { font-size: 2.4rem; color: var(--se75-primary); margin-bottom: .4rem; }
.se75-feature b { display: block; color: var(--se75-secondary); font-size: 1.2rem; }
.se75-feature small { color: var(--se75-muted); font-size: 1.05rem; }

/* ===== RTP table ===== */
.se75-rtp-table { width: 100%; border-collapse: collapse; font-size: 1.2rem; }
.se75-rtp-table th, .se75-rtp-table td {
  padding: .6rem .4rem; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.se75-rtp-table th { color: var(--se75-primary); }
.se75-rtp-table td { color: var(--se75-muted); }
.se75-rtp-bar {
  height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden;
}
.se75-rtp-bar span { display: block; height: 100%; background: var(--se75-primary); }

/* ===== Testimonials ===== */
.se75-testimonial {
  background: rgba(255,255,255,.05); border-radius: 10px;
  padding: 1rem; margin-bottom: .8rem; border-left: 3px solid var(--se75-secondary);
}
.se75-testimonial b { color: var(--se75-primary); font-size: 1.3rem; }
.se75-testimonial p { color: var(--se75-muted); font-size: 1.25rem; margin-top: .3rem; }
.se75-stars { color: var(--se75-gold); font-size: 1.2rem; }

/* ===== Winners ===== */
.se75-winners { display: flex; flex-direction: column; gap: .5rem; }
.se75-winner {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,100,0,.15); padding: .6rem 1rem; border-radius: 8px;
  font-size: 1.2rem;
}
.se75-winner b { color: var(--se75-secondary); }

/* ===== Payment ===== */
.se75-payments { display: flex; flex-wrap: wrap; gap: .6rem; }
.se75-pay {
  background: rgba(255,255,255,.08); border-radius: 8px;
  padding: .6rem 1rem; font-size: 1.2rem; color: var(--se75-muted);
  display: flex; align-items: center; gap: .4rem;
}

/* ===== CTA ===== */
.se75-cta {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--se75-primary), var(--se75-secondary));
  color: var(--se75-bg-deep); font-weight: 800; font-size: 1.6rem;
  padding: 1.2rem; border-radius: 30px; margin: 1.5rem 0;
  box-shadow: 0 4px 14px rgba(0,255,127,.4); cursor: pointer;
}
.se75-cta:active { transform: scale(.97); }

/* ===== Footer ===== */
.se75-footer {
  background: var(--se75-bg-dark); padding: 2rem 1.2rem 1rem;
  margin-top: 2rem; border-top: 2px solid var(--se75-primary);
}
.se75-footer-brand { color: var(--se75-muted); font-size: 1.2rem; margin-bottom: 1rem; }
.se75-footer-links {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1rem;
}
.se75-footer-links a {
  flex: 1 1 45%; font-size: 1.15rem; color: var(--se75-text);
  background: rgba(255,255,255,.05); padding: .5rem .8rem; border-radius: 6px;
  border-left: 2px solid var(--se75-primary);
}
.se75-footer-promos { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1rem; }
.se75-footer-promos button, .se75-footer-promos a {
  flex: 1 1 45%; background: rgba(0,255,127,.15); color: var(--se75-primary);
  border: 1px solid var(--se75-primary); border-radius: 8px;
  padding: .6rem; font-size: 1.15rem; text-align: center; cursor: pointer;
}
.se75-copyright {
  text-align: center; color: rgba(255,255,255,.4); font-size: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 1rem;
}

/* ===== Bottom nav (mobile) ===== */
.se75-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto; height: 62px;
  background: rgba(20,32,44,.98); backdrop-filter: blur(10px);
  border-top: 2px solid var(--se75-primary);
  display: flex; justify-content: space-around; align-items: center;
}
.se75-bottomnav-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 60px; min-height: 60px; background: none; border: none;
  color: var(--se75-muted); font-size: 1rem; cursor: pointer;
  transition: color .2s, transform .15s; text-decoration: none; gap: .1rem;
}
.se75-bottomnav-btn i, .se75-bottomnav-btn .material-icons-outlined,
.se75-bottomnav-btn .ion { font-size: 24px; }
.se75-bottomnav-btn:active { transform: scale(.9); }
.se75-bottomnav-btn:hover { color: var(--se75-primary); }
.se75-bottomnav-active { color: var(--se75-primary); }
.se75-bottomnav-active::after {
  content: ""; width: 24px; height: 3px; background: var(--se75-secondary);
  border-radius: 2px; margin-top: 2px;
}

/* Desktop: hide bottom nav, widen layout */
@media (min-width: 769px) {
  .se75-bottomnav { display: none; }
  body { max-width: 768px; }
}

/* Mobile bottom padding so content isn't hidden behind bottom nav */
@media (max-width: 768px) {
  .se75-main { padding-bottom: 80px; }
  .se75-footer { padding-bottom: 80px; }
}
