/* ============================================================
 * linebet affiliate - layout stylesheet (we25c- namespace)
 * Mobile-first HTML5 gaming site. Root font 62.5% => 1rem=10px.
 * Comments in English only.
 * Palette: #333333 bg | #E6E6FA / #F08080 / #FF1493 / #BAFFC9 accents
 * ============================================================ */

:root {
  --we25c-bg: #1d1d22;
  --we25c-bg-2: #2a2a31;
  --we25c-bg-3: #33333a;
  --we25c-surface: #3a3a44;
  --we25c-lavender: #E6E6FA;
  --we25c-coral: #F08080;
  --we25c-pink: #FF1493;
  --we25c-mint: #BAFFC9;
  --we25c-text: #E6E6FA;
  --we25c-text-soft: #c9c9d6;
  --we25c-muted: #8a8a99;
  --we25c-primary: #FF1493;
  --we25c-primary-2: #F08080;
  --we25c-gold: #ffd479;
  --we25c-radius: 14px;
  --we25c-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
  --we25c-header-h: 6rem;
  --we25c-bottomnav-h: 6.4rem;
  --we25c-max-w: 430px;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(circle at 20% 0%, #3a2a44 0%, var(--we25c-bg) 55%, #141418 100%);
  color: var(--we25c-text);
  line-height: 1.5rem;
  font-size: 1.5rem;
  min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: var(--we25c-coral); text-decoration: none; }
h1, h2, h3 { margin: 0 0 .8rem; line-height: 1.25; }
h1 { font-size: 2.2rem; color: var(--we25c-lavender); }
h2 { font-size: 2rem; color: var(--we25c-mint); }
h3 { font-size: 1.7rem; color: var(--we25c-coral); }
p { margin: 0 0 1rem; }

body.we25c-no-scroll { overflow: hidden; }

/* ============ Shell ============ */
.we25c-wrapper {
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: linear-gradient(180deg, #23232b 0%, #1b1b22 100%);
  min-height: 100vh;
  position: relative;
  box-shadow: var(--we25c-shadow);
}
.we25c-container { width: 100%; padding: 0 1.4rem; }

/* ============ Header ============ */
.we25c-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--we25c-header-h);
  z-index: 1000;
  background: linear-gradient(90deg, #2c1633 0%, #3a1a2e 50%, #1d1d22 100%);
  border-bottom: 2px solid rgba(255, 20, 147, 0.35);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}
.we25c-header-inner {
  max-width: 430px; margin: 0 auto; height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.2rem; gap: .8rem;
}
.we25c-brand { display: flex; align-items: center; gap: .8rem; min-width: 0; }
.we25c-logo {
  width: 3.4rem; height: 3.4rem; border-radius: 10px; object-fit: cover;
  border: 2px solid var(--we25c-pink);
}
.we25c-brand-name {
  font-size: 1.5rem; font-weight: 800; color: var(--we25c-lavender);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  letter-spacing: .3px;
}
.we25c-brand-name span { color: var(--we25c-pink); }
.we25c-header-actions { display: flex; align-items: center; gap: .6rem; }
.we25c-menu-btn {
  background: transparent; border: 0; color: var(--we25c-lavender);
  font-size: 2.2rem; width: 3.6rem; height: 3.6rem; border-radius: 10px;
  display: grid; place-items: center; cursor: pointer;
}
.we25c-menu-btn.we25c-active { background: rgba(255,20,147,.18); color: #fff; }
.we25c-btn {
  border: 0; border-radius: 30px; padding: .85rem 1.4rem;
  font-size: 1.3rem; font-weight: 800; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
  font-family: inherit;
}
.we25c-btn:hover { transform: translateY(-1px); }
.we25c-btn-primary {
  background: linear-gradient(135deg, var(--we25c-pink), var(--we25c-coral));
  color: #fff; box-shadow: 0 4px 14px rgba(255, 20, 147, 0.5);
}
.we25c-btn-ghost {
  background: rgba(186, 255, 201, 0.12); color: var(--we25c-mint);
  border: 1px solid rgba(186, 255, 201, 0.45);
}
.we25c-btn-block { display: block; width: 100%; padding: 1.1rem; font-size: 1.5rem; }

/* ============ Mobile dropdown menu ============ */
.we25c-mobile-menu {
  position: fixed; top: var(--we25c-header-h); left: 0; right: 0;
  background: #211a26; z-index: 9999;
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  border-bottom: 1px solid rgba(255,20,147,.25);
  box-shadow: 0 12px 30px rgba(0,0,0,.5);
}
.we25c-mobile-menu.we25c-open { max-height: 80vh; overflow-y: auto; }
.we25c-mobile-menu a {
  display: block; padding: 1.3rem 1.6rem; color: var(--we25c-text);
  border-bottom: 1px solid rgba(255,255,255,.06); font-size: 1.45rem;
}
.we25c-mobile-menu a:hover { background: rgba(255,20,147,.12); color: #fff; }
.we25c-mobile-menu a i { width: 2.2rem; color: var(--we25c-coral); margin-right: .8rem; }

/* ============ Hero / Carousel ============ */
main.we25c-main { padding-top: calc(var(--we25c-header-h) + 1.2rem); }
@media (max-width: 768px) {
  main.we25c-main { padding-bottom: calc(var(--we25c-bottomnav-h) + 1.2rem); }
}
.we25c-hero {
  position: relative; border-radius: var(--we25c-radius); overflow: hidden;
  margin: 1rem 0 1.6rem; box-shadow: var(--we25c-shadow);
  aspect-ratio: 16 / 9;
}
.we25c-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
}
.we25c-slide.we25c-active { opacity: 1; }
.we25c-slide img { width: 100%; height: 100%; object-fit: cover; }
.we25c-slide-caption {
  position: absolute; left: 1.2rem; right: 1.2rem; bottom: 1.2rem;
  background: linear-gradient(90deg, rgba(255,20,147,.85), rgba(240,128,128,.55));
  color: #fff; padding: .9rem 1.2rem; border-radius: 10px;
  font-size: 1.35rem; font-weight: 700;
}
.we25c-dots {
  position: absolute; bottom: .8rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: .6rem;
}
.we25c-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.45); border: 0; padding: 0; cursor: pointer;
}
.we25c-dot.we25c-active { background: var(--we25c-pink); transform: scale(1.25); }

/* ============ Section / Card ============ */
.we25c-section { margin: 2.4rem 0; }
.we25c-section-head {
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.2rem;
}
.we25c-section-head i { color: var(--we25c-mint); font-size: 2rem; }
.we25c-section-head h2 { margin: 0; }
.we25c-card {
  background: var(--we25c-bg-3); border-radius: var(--we25c-radius);
  padding: 1.4rem; border: 1px solid rgba(255,255,255,.06);
  box-shadow: var(--we25c-shadow); margin-bottom: 1.2rem;
}
.we25c-card h3 { margin-top: 0; }

/* ============ Game grid ============ */
.we25c-tabs {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 1.2rem;
}
.we25c-tab {
  display: inline-block; padding: .55rem 1.2rem; border-radius: 30px;
  background: rgba(230,230,250,.08); color: var(--we25c-text-soft);
  font-size: 1.25rem; border: 1px solid rgba(230,230,250,.18);
  cursor: pointer; font-weight: 700;
}
.we25c-tab.we25c-tab-active {
  background: linear-gradient(135deg, var(--we25c-pink), var(--we25c-coral));
  color: #fff; border-color: transparent;
}
.we25c-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem;
}
.we25c-game {
  display: block; background: var(--we25c-surface);
  border-radius: 12px; overflow: hidden; cursor: pointer;
  border: 1px solid rgba(255,255,255,.06); transition: transform .15s ease;
  text-align: center;
}
.we25c-game:hover { transform: translateY(-2px); border-color: var(--we25c-pink); }
.we25c-game img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.we25c-game-name {
  font-size: 1.15rem; padding: .55rem .4rem; color: var(--we25c-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* ============ Promo / CTA banners ============ */
.we25c-cta {
  background: linear-gradient(135deg, rgba(255,20,147,.25), rgba(186,255,201,.12));
  border: 1px solid rgba(255,20,147,.4);
  border-radius: var(--we25c-radius); padding: 1.6rem; text-align: center;
  margin: 1.6rem 0;
}
.we25c-cta h3 { color: var(--we25c-lavender); margin-top: 0; }
.we25c-cta p { color: var(--we25c-text-soft); }
.we25c-promo-link {
  color: var(--we25c-coral); font-weight: 800;
  border-bottom: 2px dotted var(--we25c-coral); cursor: pointer;
}
.we25c-pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.we25c-pill {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(186,255,201,.1); color: var(--we25c-mint);
  padding: .6rem 1rem; border-radius: 30px; font-size: 1.2rem;
  border: 1px solid rgba(186,255,201,.3);
}

/* ============ Testimonial / winners ============ */
.we25c-list { list-style: none; padding: 0; margin: 0; }
.we25c-list li {
  padding: 1rem; border-radius: 10px; background: rgba(255,255,255,.04);
  margin-bottom: .8rem; display: flex; align-items: center; gap: 1rem;
}
.we25c-list .we25c-amount { margin-left: auto; color: var(--we25c-gold); font-weight: 800; }
.we25c-stars { color: var(--we25c-gold); letter-spacing: 2px; }

/* ============ Footer ============ */
.we25c-footer {
  background: #15151a; padding: 2.4rem 0 1.4rem;
  border-top: 2px solid rgba(255,20,147,.3);
}
.we25c-footer-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.2rem;
  margin-bottom: 1.4rem;
}
.we25c-footer-grid a {
  color: var(--we25c-text-soft); font-size: 1.25rem;
}
.we25c-footer-grid a:hover { color: var(--we25c-coral); }
.we25c-footer-brand { color: var(--we25c-muted); font-size: 1.2rem; line-height: 1.6; }
.we25c-footer-copy {
  text-align: center; color: var(--we25c-muted); font-size: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 1rem; margin-top: 1rem;
}
.we25c-footer-promo {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin: 1rem 0;
}

/* ============ Bottom nav ============ */
.we25c-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0;
  height: var(--we25c-bottomnav-h); z-index: 1000;
  background: linear-gradient(180deg, #2c1633, #15151a);
  border-top: 2px solid rgba(255,20,147,.35);
  box-shadow: 0 -4px 18px rgba(0,0,0,.4);
  display: flex; justify-content: space-around; align-items: stretch;
}
.we25c-bottomnav-btn {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: 0; color: var(--we25c-text-soft);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .2rem; font-size: 1.05rem; font-family: inherit; cursor: pointer;
  padding: .4rem; transition: color .15s ease, transform .15s ease;
}
.we25c-bottomnav-btn i,
.we25c-bottomnav-btn .material-icons-outlined,
.we25c-bottomnav-btn ion-icon { font-size: 2.4rem; }
.we25c-bottomnav-btn ion-icon { --ionicon-stroke-width: 38px; }
.we25c-bottomnav-btn:hover { color: var(--we25c-coral); transform: translateY(-1px); }
.we25c-bottomnav-btn.we25c-current { color: var(--we25c-pink); }
.we25c-bottomnav-btn.we25c-current i,
.we25c-bottomnav-btn.we25c-current .material-icons-outlined,
.we25c-bottomnav-btn.we25c-current ion-icon { color: var(--we25c-pink); }
.we25c-bottomnav-btn .we25c-label { font-size: 1.05rem; }

@media (min-width: 769px) {
  .we25c-bottomnav { display: none; }
}

/* ============ Desktop layout ============ */
.we25c-desktop-nav { display: none; }
@media (min-width: 769px) {
  .we25c-wrapper { max-width: 960px; }
  .we25c-grid { grid-template-columns: repeat(5, 1fr); }
  .we25c-footer-grid { grid-template-columns: repeat(4, 1fr); }
  .we25c-menu-btn { display: none; }
  .we25c-desktop-nav { display: flex; gap: 1.2rem; }
  .we25c-desktop-nav a { color: var(--we25c-text-soft); font-size: 1.3rem; }
  .we25c-desktop-nav a:hover { color: var(--we25c-coral); }
}
