/* 55578 basefiles - theme.css
   All classes prefixed w35ee- . English comments only. */

:root {
  --w35ee-primary: #FFE135;
  --w35ee-dark-red: #8B0000;
  --w35ee-bg: #0A0A0A;
  --w35ee-light: #F8F9FA;
  --w35ee-gold: #D4AF37;
  --w35ee-text: #F8F9FA;
  --w35ee-text-dim: #b8b8b8;
  --w35ee-card: #161616;
  --w35ee-border: #2a2a2a;
}

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

html { font-size: 62.5%; }

body {
  font-family: "Segoe UI", "Noto Sans Bengali", Roboto, sans-serif;
  background: var(--w35ee-bg);
  color: var(--w35ee-text);
  line-height: 1.5rem;
  font-size: 1.4rem;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
}

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

.w35ee-container { width: 100%; padding: 0 1.2rem; }
.w35ee-wrapper { padding-top: 6rem; padding-bottom: 8rem; }

/* Header */
.w35ee-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(180deg, #141414, #0A0A0A);
  border-bottom: 1px solid var(--w35ee-border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.2rem; height: 6rem;
}
.w35ee-brand { display: flex; align-items: center; gap: 0.6rem; }
.w35ee-brand img { width: 28px; height: 28px; border-radius: 4px; }
.w35ee-brand .w35ee-name { font-size: 1.6rem; font-weight: 800; color: var(--w35ee-primary); letter-spacing: 0.5px; }
.w35ee-head-actions { display: flex; align-items: center; gap: 0.5rem; }
.w35ee-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.6rem 1.2rem; border-radius: 2.2rem; font-weight: 700;
  font-size: 1.3rem; border: none; cursor: pointer; min-height: 36px;
  transition: transform 0.15s, opacity 0.15s;
}
.w35ee-btn:active { transform: scale(0.96); }
.w35ee-btn-register { background: var(--w35ee-primary); color: #0A0A0A; }
.w35ee-btn-login { background: transparent; color: var(--w35ee-light); border: 1px solid var(--w35ee-gold); }
.w35ee-btn-promo { background: var(--w35ee-gold); color: #0A0A0A; }
.w35ee-btn-cta { background: var(--w35ee-dark-red); color: var(--w35ee-light); padding: 1rem 2rem; width: 100%; border-radius: 0.6rem; font-size: 1.5rem; margin: 1rem 0; }

.w35ee-menu-btn {
  background: transparent; border: 1px solid var(--w35ee-border); color: var(--w35ee-light);
  width: 36px; height: 36px; border-radius: 0.4rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu */
.w35ee-mobile-menu {
  position: fixed; top: 6rem; left: 0; right: 0; z-index: 9999;
  max-width: 430px; margin: 0 auto;
  background: #111; border-bottom: 1px solid var(--w35ee-border);
  display: none; flex-direction: column; padding: 1rem 1.2rem;
}
.w35ee-mobile-menu.w35ee-open { display: flex; }
.w35ee-mobile-menu a {
  color: var(--w35ee-light); padding: 1rem 0.5rem;
  border-bottom: 1px solid #1f1f1f; font-size: 1.4rem;
}
.w35ee-mobile-menu a:hover { color: var(--w35ee-primary); }

/* Carousel */
.w35ee-carousel { position: relative; margin: 1rem 0; border-radius: 0.8rem; overflow: hidden; }
.w35ee-slide { display: none; width: 100%; }
.w35ee-slide img { width: 100%; height: 180px; object-fit: cover; }
.w35ee-slide .w35ee-slide-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.85), transparent);
  padding: 1rem; color: var(--w35ee-primary); font-weight: 700; font-size: 1.4rem;
}
.w35ee-dot-row { text-align: center; margin-top: 0.4rem; }
.w35ee-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #444; margin: 0 3px; cursor: pointer; }
.w35ee-dot.w35ee-active { background: var(--w35ee-primary); }

/* Section titles */
.w35ee-section { margin: 1.6rem 0; }
.w35ee-h1 {
  font-size: 2rem; font-weight: 800; color: var(--w35ee-primary);
  margin: 1rem 0; line-height: 1.3;
}
.w35ee-h2 {
  font-size: 1.7rem; font-weight: 700; color: var(--w35ee-gold);
  margin: 1.2rem 0 0.6rem; padding-left: 0.8rem;
  border-left: 4px solid var(--w35ee-primary);
}
.w35ee-h3 { font-size: 1.5rem; font-weight: 700; color: var(--w35ee-light); margin: 1rem 0 0.4rem; }
.w35ee-lead { color: var(--w35ee-text-dim); font-size: 1.35rem; margin-bottom: 0.8rem; }

/* Category anchor tabs */
.w35ee-catbar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1rem 0; }
.w35ee-catbar a {
  padding: 0.5rem 1rem; background: #161616; border: 1px solid var(--w35ee-border);
  border-radius: 2rem; color: var(--w35ee-light); font-size: 1.2rem; font-weight: 600;
}
.w35ee-catbar a:hover { background: var(--w35ee-dark-red); color: var(--w35ee-primary); }

/* Game grid */
.w35ee-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem;
}
.w35ee-game {
  background: var(--w35ee-card); border: 1px solid var(--w35ee-border);
  border-radius: 0.6rem; overflow: hidden; cursor: pointer;
  transition: transform 0.15s, border-color 0.15s;
}
.w35ee-game:hover { transform: translateY(-2px); border-color: var(--w35ee-gold); }
.w35ee-game img { width: 100%; height: 90px; object-fit: cover; }
.w35ee-game .w35ee-game-name {
  padding: 0.4rem; font-size: 1.1rem; color: var(--w35ee-light);
  text-align: center; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  min-height: 3.2rem; display: flex; align-items: center; justify-content: center;
}

/* Cards */
.w35ee-card {
  background: var(--w35ee-card); border: 1px solid var(--w35ee-border);
  border-radius: 0.8rem; padding: 1.2rem; margin: 0.8rem 0;
}
.w35ee-card-gold { border-left: 4px solid var(--w35ee-gold); }
.w35ee-card-red { border-left: 4px solid var(--w35ee-dark-red); }

.w35ee-feature-list { list-style: none; }
.w35ee-feature-list li { padding: 0.6rem 0; border-bottom: 1px dashed #222; color: var(--w35ee-text-dim); }
.w35ee-feature-list li i { color: var(--w35ee-primary); margin-right: 0.5rem; }

/* RTP table */
.w35ee-rtp { width: 100%; border-collapse: collapse; margin: 0.6rem 0; }
.w35ee-rtp th, .w35ee-rtp td { padding: 0.6rem; border: 1px solid var(--w35ee-border); text-align: center; font-size: 1.2rem; }
.w35ee-rtp th { background: var(--w35ee-dark-red); color: var(--w35ee-primary); }
.w35ee-rtp td:first-child { color: var(--w35ee-light); text-align: left; }

/* Testimonials */
.w35ee-quote { background: #121212; border-radius: 0.6rem; padding: 1rem; margin: 0.5rem 0; border-left: 3px solid var(--w35ee-gold); }
.w35ee-quote .w35ee-author { color: var(--w35ee-primary); font-weight: 700; font-size: 1.2rem; margin-top: 0.4rem; }
.w35ee-quote .w35ee-stars { color: var(--w35ee-gold); }

/* Winners */
.w35ee-winner { display: flex; align-items: center; justify-content: space-between; padding: 0.6rem 0; border-bottom: 1px solid #1f1f1f; }
.w35ee-winner .w35ee-name { color: var(--w35ee-light); }
.w35ee-winner .w35ee-amount { color: var(--w35ee-primary); font-weight: 700; }

/* Payment chips */
.w35ee-payrow { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.w35ee-pay { background: #161616; border: 1px solid var(--w35ee-border); border-radius: 0.4rem; padding: 0.5rem 0.8rem; color: var(--w35ee-light); font-size: 1.2rem; }

/* Promo inline links */
.w35ee-promolink {
  color: var(--w35ee-primary); font-weight: 700; cursor: pointer;
}
.w35ee-promolink:hover { color: var(--w35ee-gold); text-decoration: underline; }

/* Footer */
.w35ee-footer {
  background: #070707; border-top: 2px solid var(--w35ee-dark-red);
  padding: 1.6rem 1.2rem 2rem; margin-top: 1.6rem;
}
.w35ee-footer .w35ee-brand-line { color: var(--w35ee-text-dim); font-size: 1.2rem; margin-bottom: 1rem; }
.w35ee-footer-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.w35ee-footer-links a { color: var(--w35ee-light); font-size: 1.2rem; padding: 0.3rem 0.6rem; background: #141414; border-radius: 0.3rem; }
.w35ee-footer-links a:hover { color: var(--w35ee-primary); }
.w35ee-footer-promo { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
.w35ee-footer-promo button { padding: 0.5rem 1rem; border-radius: 0.4rem; font-size: 1.2rem; font-weight: 700; }
.w35ee-copyright { color: #777; font-size: 1.1rem; margin-top: 0.8rem; border-top: 1px solid #1a1a1a; padding-top: 0.8rem; }

/* Mobile bottom nav */
.w35ee-bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  max-width: 430px; margin: 0 auto;
  background: linear-gradient(180deg, #111, #0A0A0A);
  border-top: 1px solid var(--w35ee-border);
  display: flex; justify-content: space-around; align-items: stretch;
  height: 62px;
}
.w35ee-bottomnav button, .w35ee-bottomnav a {
  flex: 1; min-width: 60px; min-height: 60px;
  background: transparent; border: none; color: var(--w35ee-text-dim);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-size: 1rem; gap: 0.2rem; cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}
.w35ee-bottomnav button:active, .w35ee-bottomnav a:active { transform: scale(0.92); }
.w35ee-bottomnav .w35ee-bn-icon { font-size: 22px; line-height: 1; }
.w35ee-bottomnav .w35ee-bn-text { font-size: 10px; }
.w35ee-bottomnav .w35ee-active { color: var(--w35ee-primary); }
.w35ee-bottomnav .w35ee-promo-icon { color: var(--w35ee-gold); }

@media (min-width: 769px) {
  .w35ee-bottomnav { display: none; }
}
@media (max-width: 768px) {
  .w35ee-wrapper { padding-bottom: 80px; }
}

/* Desktop */
@media (min-width: 431px) {
  body { border-left: 1px solid #1a1a1a; border-right: 1px solid #1a1a1a; }
}
