/* 13333.homes core stylesheet
   Class prefix: we032-
   Palette: #1E1E1E | #CD5C5C | #FF91A4 | #B22222 | #FF4500 */

:root {
  --we032-primary: #CD5C5C;
  --we032-accent: #FF4500;
  --we032-pink: #FF91A4;
  --we032-firebrick: #B22222;
  --we032-bg: #1E1E1E;
  --we032-bg-2: #262020;
  --we032-bg-3: #2f2828;
  --we032-text: #f7eaea;
  --we032-text-dim: #cbb4b4;
  --we032-border: #3a2c2c;
  --we032-gold: #f5c451;
  --we032-radius: 1.4rem;
  --we032-shadow: 0 4px 18px rgba(0,0,0,.35);
  --we032-header-h: 6rem;
  --we032-bnav-h: 6.2rem;
}

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

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

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

a { color: var(--we032-pink); text-decoration: none; }
a:hover { color: var(--we032-accent); }
img { max-width: 100%; display: block; }

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

/* ---------- Header ---------- */
.we032-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(90deg, #1E1E1E, #2a1717 60%, #1E1E1E);
  border-bottom: 2px solid var(--we032-primary);
  box-shadow: var(--we032-shadow);
  max-width: 430px; margin: 0 auto;
}
.we032-header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--we032-header-h); padding: 0 1rem;
}
.we032-logo { display: flex; align-items: center; gap: .7rem; color: var(--we032-text); }
.we032-logo img { width: 3rem; height: 3rem; border-radius: .6rem; }
.we032-logo-text { font-size: 2rem; font-weight: 800; color: var(--we032-pink); letter-spacing: .5px; }
.we032-logo-text span { color: var(--we032-accent); }

.we032-header-actions { display: flex; align-items: center; gap: .6rem; }
.we032-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .7rem 1.2rem; border-radius: 2rem; font-size: 1.3rem; font-weight: 700;
  border: none; cursor: pointer; transition: transform .15s, box-shadow .15s, background .15s;
  min-height: 3.6rem; white-space: nowrap;
}
.we032-btn:hover { transform: translateY(-1px); }
.we032-btn-register {
  background: linear-gradient(135deg, var(--we032-accent), var(--we032-firebrick));
  color: #fff; box-shadow: 0 3px 10px rgba(255,69,0,.35);
}
.we032-btn-login {
  background: transparent; color: var(--we032-pink);
  border: 1.5px solid var(--we032-pink);
}
.we032-btn-login:hover { background: rgba(255,145,164,.12); }

.we032-menu-btn {
  background: transparent; border: none; color: var(--we032-text);
  font-size: 2.2rem; cursor: pointer; padding: .4rem .6rem; border-radius: .6rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.we032-menu-btn:hover { background: rgba(255,145,164,.12); }

/* ---------- Mobile dropdown menu ---------- */
.we032-mobile-menu {
  position: fixed; top: var(--we032-header-h); left: 0; right: 0; z-index: 9999;
  background: #1a1414; border-bottom: 2px solid var(--we032-primary);
  max-height: 0; overflow: hidden; transition: max-height .3s ease;
  max-width: 430px; margin: 0 auto;
}
.we032-mobile-menu.we032-menu-open { max-height: 60rem; }
.we032-mobile-menu-inner { padding: 1rem 1.4rem 1.4rem; }
.we032-mobile-menu a {
  display: block; padding: 1.1rem 1rem; color: var(--we032-text);
  border-bottom: 1px solid var(--we032-border); font-size: 1.45rem;
}
.we032-mobile-menu a:hover { color: var(--we032-pink); padding-left: 1.4rem; }
.we032-mobile-menu a i { width: 2.2rem; color: var(--we032-pink); }

/* ---------- Main / spacing ---------- */
main { padding-top: calc(var(--we032-header-h) + .6rem); }
@media (max-width: 768px) { main { padding-bottom: calc(var(--we032-bnav-h) + 1rem); } }

/* ---------- Carousel ---------- */
.we032-carousel {
  position: relative; width: 100%; overflow: hidden; border-radius: var(--we032-radius);
  margin: 1.2rem 0; box-shadow: var(--we032-shadow);
}
.we032-carousel-track { display: flex; transition: transform .5s ease; }
.we032-slide { min-width: 100%; position: relative; }
.we032-slide img { width: 100%; height: 18rem; object-fit: cover; }
.we032-slide-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.2rem; background: linear-gradient(transparent, rgba(0,0,0,.8));
  color: #fff; font-size: 1.5rem; font-weight: 700;
}
.we032-slide-cap span { color: var(--we032-pink); }
.we032-dots { position: absolute; bottom: .8rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 2; }
.we032-dot { width: .8rem; height: .8rem; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; }
.we032-dot.we032-dot-active { background: var(--we032-accent); width: 2rem; border-radius: .5rem; }

/* ---------- Section titles ---------- */
.we032-section { padding: 1.6rem 0 .4rem; }
.we032-section-title {
  font-size: 2rem; font-weight: 800; margin-bottom: .8rem; color: var(--we032-text);
  display: flex; align-items: center; gap: .6rem;
}
.we032-section-title i { color: var(--we032-accent); }
.we032-section-title em { color: var(--we032-pink); font-style: normal; }
.we032-section-sub { color: var(--we032-text-dim); font-size: 1.35rem; margin-bottom: 1rem; }

/* ---------- Category quick nav ---------- */
.we032-cat-nav { display: flex; gap: .6rem; overflow-x: auto; padding: .6rem 0 1rem; -webkit-overflow-scrolling: touch; }
.we032-cat-nav::-webkit-scrollbar { display: none; }
.we032-cat-link {
  flex: 0 0 auto; padding: .6rem 1.2rem; border-radius: 2rem; font-size: 1.3rem; font-weight: 600;
  background: var(--we032-bg-3); color: var(--we032-text); border: 1px solid var(--we032-border);
}
.we032-cat-link.we032-cat-link-active, .we032-cat-link:hover { background: var(--we032-primary); color: #fff; }

/* ---------- Game grid ---------- */
.we032-game-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; }
.we032-game-card {
  background: var(--we032-bg-2); border: 1px solid var(--we032-border); border-radius: 1rem;
  overflow: hidden; cursor: pointer; transition: transform .15s, border-color .15s;
  display: flex; flex-direction: column; align-items: center; padding: .6rem .4rem .5rem;
}
.we032-game-card:hover { transform: translateY(-2px); border-color: var(--we032-primary); }
.we032-game-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: .7rem; }
.we032-game-card .we032-game-name {
  font-size: 1.15rem; color: var(--we032-text); text-align: center; margin-top: .5rem;
  line-height: 1.25rem; height: 2.5rem; overflow: hidden;
}
.we032-game-card .we032-game-tag {
  font-size: 1rem; color: var(--we032-gold); margin-top: .2rem;
}

/* ---------- Info / promo cards ---------- */
.we032-info-card {
  background: linear-gradient(135deg, var(--we032-bg-2), var(--we032-bg-3));
  border: 1px solid var(--we032-border); border-radius: var(--we032-radius);
  padding: 1.4rem; margin-bottom: 1.2rem; box-shadow: var(--we032-shadow);
}
.we032-info-card h2 { font-size: 1.8rem; margin-bottom: .6rem; color: var(--we032-pink); }
.we032-info-card h3 { font-size: 1.55rem; margin: .8rem 0 .4rem; color: var(--we032-accent); }
.we032-info-card p { color: var(--we032-text-dim); margin-bottom: .6rem; }
.we032-info-card a { color: var(--we032-pink); font-weight: 700; }

.we032-promo-banner {
  background: linear-gradient(135deg, var(--we032-firebrick), var(--we032-accent));
  border-radius: var(--we032-radius); padding: 1.4rem; color: #fff; text-align: center;
  margin: 1rem 0; box-shadow: 0 6px 20px rgba(178,34,34,.4);
}
.we032-promo-banner h3 { font-size: 1.8rem; margin-bottom: .4rem; }
.we032-promo-banner p { font-size: 1.3rem; opacity: .95; margin-bottom: .8rem; }
.we032-promo-banner .we032-btn { background: #fff; color: var(--we032-firebrick); margin: 0 auto; }

/* ---------- FAQ ---------- */
.we032-faq-item { border-bottom: 1px solid var(--we032-border); padding: 1rem 0; }
.we032-faq-q { font-size: 1.5rem; font-weight: 700; color: var(--we032-pink); }
.we032-faq-a { color: var(--we032-text-dim); margin-top: .4rem; }

/* ---------- RTP table ---------- */
.we032-rtp-row { display: flex; justify-content: space-between; padding: .7rem 0; border-bottom: 1px dashed var(--we032-border); font-size: 1.35rem; }
.we032-rtp-row span:first-child { color: var(--we032-text); }
.we032-rtp-row span:last-child { color: var(--we032-gold); font-weight: 700; }

/* ---------- Testimonials ---------- */
.we032-testi { background: var(--we032-bg-2); border-radius: 1rem; padding: 1rem; margin-bottom: .8rem; border-left: 3px solid var(--we032-primary); }
.we032-testi .we032-testi-name { font-weight: 700; color: var(--we032-pink); font-size: 1.35rem; }
.we032-testi .we032-testi-text { color: var(--we032-text-dim); font-size: 1.3rem; margin-top: .3rem; }

/* ---------- Winners ---------- */
.we032-winner { display: flex; justify-content: space-between; padding: .6rem .9rem; background: var(--we032-bg-2); border-radius: .8rem; margin-bottom: .5rem; font-size: 1.3rem; }
.we032-winner span:last-child { color: var(--we032-gold); font-weight: 700; }

/* ---------- Payment icons ---------- */
.we032-pay-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.we032-pay-chip { background: var(--we032-bg-3); border: 1px solid var(--we032-border); border-radius: .8rem; padding: .6rem 1rem; font-size: 1.25rem; color: var(--we032-text); }

/* ---------- Footer ---------- */
.we032-footer { background: #140f0f; border-top: 2px solid var(--we032-primary); padding: 1.6rem 1.2rem 2rem; margin-top: 1.4rem; }
.we032-footer-brand { color: var(--we032-text-dim); font-size: 1.3rem; margin-bottom: 1rem; line-height: 1.6rem; }
.we032-footer-brand strong { color: var(--we032-pink); }
.we032-footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.2rem; margin-bottom: 1rem; }
.we032-footer-links a { color: var(--we032-text-dim); font-size: 1.25rem; }
.we032-footer-links a:hover { color: var(--we032-pink); }
.we032-footer-promo { display: flex; flex-wrap: wrap; gap: .6rem; margin: .8rem 0; }
.we032-footer-promo .we032-btn { flex: 1 1 auto; justify-content: center; min-width: 12rem; }
.we032-footer-copy { color: #6b5555; font-size: 1.15rem; border-top: 1px solid var(--we032-border); padding-top: .8rem; }

/* ---------- Mobile bottom nav ---------- */
.we032-bnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  height: var(--we032-bnav-h); background: #1a1414;
  border-top: 2px solid var(--we032-primary);
  display: flex; justify-content: space-around; align-items: stretch;
  max-width: 430px; margin: 0 auto; box-shadow: 0 -4px 18px rgba(0,0,0,.4);
}
.we032-bnav-btn {
  flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: transparent; border: none; color: var(--we032-text-dim); cursor: pointer;
  text-decoration: none; min-width: 6rem; min-height: 6rem; padding: .3rem; gap: .2rem;
  transition: color .15s, transform .15s; position: relative;
}
.we032-bnav-btn i, .we032-bnav-btn .material-icons-outlined, .we032-bnav-btn ion-icon { font-size: 2.4rem; }
.we032-bnav-btn span { font-size: 1.1rem; }
.we032-bnav-btn:hover { color: var(--we032-pink); transform: translateY(-2px); }
.we032-bnav-btn.we032-bnav-active { color: var(--we032-accent); }
.we032-bnav-btn.we032-bnav-active::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 3rem; height: .3rem; border-radius: 0 0 .3rem .3rem; background: var(--we032-accent);
}
.we032-bnav-badge {
  position: absolute; top: .4rem; right: 1.2rem; background: var(--we032-accent); color: #fff;
  font-size: .9rem; font-weight: 700; border-radius: 1rem; padding: .1rem .4rem; min-width: 1.4rem; text-align: center;
}
@media (min-width: 769px) { .we032-bnav { display: none; } body { padding-bottom: 0; } }

/* ---------- Back to top ---------- */
.we032-back-top {
  position: fixed; bottom: calc(var(--we032-bnav-h) + .8rem); right: 1.2rem; z-index: 999;
  width: 4rem; height: 4rem; border-radius: 50%; background: var(--we032-primary); color: #fff;
  border: none; font-size: 2rem; cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .15s; box-shadow: var(--we032-shadow);
}
.we032-back-top.we032-back-top-show { opacity: 1; pointer-events: auto; }
.we032-back-top:hover { transform: translateY(-2px); background: var(--we032-accent); }
@media (min-width: 769px) { .we032-back-top { bottom: 1.2rem; } }

/* ---------- Misc helpers ---------- */
.we032-text-center { text-align: center; }
.we032-mt-1 { margin-top: 1rem; }
.we032-mt-2 { margin-top: 2rem; }
.we032-highlight { color: var(--we032-pink); font-weight: 700; }
.we032-fire { color: var(--we032-accent); font-weight: 700; }
.we032-seo-text { color: var(--we032-text-dim); font-size: 1.3rem; line-height: 1.7rem; margin: .6rem 0; }
.we032-seo-text a { color: var(--we032-pink); font-weight: 600; }

@media (min-width: 431px) and (max-width: 768px) {
  body { max-width: 430px; }
}
