/* ============================================================
   xe66 app  -  Mobile-first gaming canvas
   Prefix: w0935-
   Palette: #FFCC02 | #2E4057 | #808080 | #FFD700 | #E65100 | #40E0D0
   ============================================================ */

:root{
  --w0935-bg:#0d1b27;
  --w0935-bg-soft:#142a3d;
  --w0935-panel:#1b3a52;
  --w0935-panel-2:#224460;
  --w0935-ink:#2E4057;
  --w0935-line:#2c4763;
  --w0935-text:#f3f6fb;
  --w0935-text-mute:#a9bbc9;
  --w0935-gold:#FFCC02;
  --w0935-gold-2:#FFD700;
  --w0935-orange:#E65100;
  --w0935-teal:#40E0D0;
  --w0935-gray:#808080;
  --w0935-white:#ffffff;
  --w0935-shadow:0 6px 22px rgba(0,0,0,.38);
  --w0935-radius:14px;
  --w0935-radius-sm:10px;
  --w0935-header-h:60px;
  --w0935-bottom-h:64px;
  --w0935-max:480px;
}

*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent}
html,body{background:var(--w0935-bg);color:var(--w0935-text);font-family:"Hind Siliguri","Noto Sans Bengali",system-ui,"Segoe UI",sans-serif;font-size:15px;line-height:1.55}
img{display:block;max-width:100%}
a{color:var(--w0935-teal);text-decoration:none}
button{font-family:inherit;cursor:pointer;border:0;background:transparent;color:inherit}
ul,ol{list-style:none}

/* ---------- Phone canvas frame ---------- */
.w0935-shell{
  position:relative;
  width:100%;
  max-width:var(--w0935-max);
  margin:0 auto;
  min-height:100vh;
  background:
    radial-gradient(120% 60% at 50% -8%, rgba(64,224,208,.10), transparent 60%),
    linear-gradient(180deg,#0d1b27 0%, #102330 100%);
  box-shadow:0 0 40px rgba(0,0,0,.45);
  overflow:hidden;
}
@media (min-width:520px){
  body{background:#050b12}
  .w0935-shell{box-shadow:0 0 60px rgba(0,0,0,.6)}
}

/* ---------- Header (tab-style top bar) ---------- */
.w0935-header{
  position:sticky;top:0;z-index:40;
  height:var(--w0935-header-h);
  background:linear-gradient(180deg,#16324a 0%, #102939 100%);
  border-bottom:1px solid rgba(255,204,2,.18);
  display:flex;align-items:center;gap:10px;
  padding:0 12px;
}
.w0935-brand{display:flex;align-items:center;gap:9px;flex:1;min-width:0}
.w0935-logo{
  width:38px;height:38px;border-radius:10px;
  object-fit:cover;
  background:radial-gradient(circle at 30% 30%, var(--w0935-gold), var(--w0935-orange));
  box-shadow:0 2px 8px rgba(255,204,2,.35);
  flex-shrink:0;
}
.w0935-brand-name{font-weight:800;font-size:17px;color:var(--w0935-gold);letter-spacing:.3px;line-height:1.1}
.w0935-brand-name small{display:block;font-size:10.5px;color:var(--w0935-text-mute);font-weight:500;letter-spacing:.4px}
.w0935-head-tabs{display:flex;align-items:center;gap:6px}
.w0935-btn{
  font-weight:700;font-size:13px;
  min-height:36px;padding:0 14px;border-radius:20px;
  display:inline-flex;align-items:center;justify-content:center;gap:5px;
  transition:transform .15s ease, box-shadow .15s ease, background .2s;
}
.w0935-btn:active{transform:translateY(1px) scale(.97)}
.w0935-btn-login{
  color:var(--w0935-gold);
  background:transparent;
  border:1px solid rgba(255,204,2,.55);
}
.w0935-btn-register{
  color:#1a1206;
  background:linear-gradient(135deg,var(--w0935-gold) 0%, var(--w0935-orange) 100%);
  box-shadow:0 4px 14px rgba(230,81,0,.35);
}
.w0935-menu-btn{
  width:36px;height:36px;border-radius:10px;
  display:grid;place-items:center;
  background:rgba(64,224,208,.12);
  border:1px solid rgba(64,224,208,.32);
}
.w0935-menu-btn span,.w0935-menu-btn span::before,.w0935-menu-btn span::after{
  content:"";display:block;width:18px;height:2px;background:var(--w0935-teal);border-radius:2px;transition:.25s
}
.w0935-menu-btn span::before{transform:translateY(-6px)}
.w0935-menu-btn span::after{transform:translateY(4px)}

/* ---------- Slide-down compact route panel ---------- */
.w0935-route-panel{
  position:absolute;top:var(--w0935-header-h);left:0;right:0;z-index:39;
  background:linear-gradient(180deg,#122e44 0%, #0e2436 100%);
  border-bottom:1px solid rgba(64,224,208,.22);
  padding:14px 14px 16px;
  transform:translateY(-130%);
  opacity:0;visibility:hidden;
  transition:transform .28s ease, opacity .25s, visibility 0s linear .28s;
  box-shadow:0 14px 26px rgba(0,0,0,.4);
}
.w0935-route-panel.w0935-open{transform:translateY(0);opacity:1;visibility:visible;transition:transform .28s ease, opacity .25s}
.w0935-route-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.w0935-route-item{
  display:flex;align-items:center;gap:9px;
  padding:10px 11px;border-radius:10px;
  background:rgba(64,224,208,.07);
  border:1px solid rgba(64,224,208,.18);
  color:var(--w0935-text);font-size:13px;font-weight:600;
}
.w0935-route-item:active{background:rgba(255,204,2,.14)}
.w0935-route-item .w0935-dot{width:7px;height:7px;border-radius:50%;background:var(--w0935-teal);box-shadow:0 0 8px var(--w0935-teal);flex-shrink:0}
.w0935-route-promo{color:var(--w0935-gold)}
.w0935-route-promo .w0935-dot{background:var(--w0935-gold);box-shadow:0 0 8px var(--w0935-gold)}

/* ---------- Main / sections ---------- */
.w0935-main{padding:14px 12px 24px}
.w0935-main focus{outline:none}

/* ---------- Hero carousel ---------- */
.w0935-carousel{
  position:relative;border-radius:var(--w0935-radius);overflow:hidden;
  box-shadow:var(--w0935-shadow);
  border:1px solid rgba(255,204,2,.18);
}
.w0935-track{display:flex;transition:transform .42s cubic-bezier(.22,.61,.36,1)}
.w0935-slide{min-width:100%;position:relative}
.w0935-slide img{width:100%;height:188px;object-fit:cover}
.w0935-slide-cap{
  position:absolute;left:0;right:0;bottom:0;
  padding:14px 14px 14px;
  background:linear-gradient(0deg, rgba(8,16,24,.92) 0%, rgba(8,16,24,.55) 60%, transparent 100%);
}
.w0935-slide-cap h2{font-size:17px;color:var(--w0935-gold);font-weight:800;line-height:1.25;margin-bottom:4px}
.w0935-slide-cap p{font-size:12px;color:var(--w0935-text-mute)}
.w0935-slide-cta{
  position:absolute;top:12px;right:12px;
  background:linear-gradient(135deg,var(--w0935-gold),var(--w0935-orange));
  color:#1a1206;font-weight:800;font-size:12px;
  padding:7px 13px;border-radius:20px;box-shadow:0 4px 12px rgba(230,81,0,.45)
}
.w0935-dots{position:absolute;bottom:10px;right:12px;display:flex;gap:5px;z-index:3}
.w0935-dots button{width:7px;height:7px;border-radius:50%;background:rgba(255,255,255,.35);transition:.25s}
.w0935-dots button.w0935-active{background:var(--w0935-gold);width:18px;border-radius:5px}

/* ---------- Trust strip ---------- */
.w0935-trust{display:flex;gap:8px;margin-top:12px;flex-wrap:wrap}
.w0935-trust-item{
  flex:1 1 30%;min-width:90px;
  display:flex;flex-direction:column;align-items:center;gap:4px;
  padding:9px 6px;border-radius:10px;
  background:rgba(64,224,208,.06);
  border:1px solid rgba(64,224,208,.18);
  text-align:center;
}
.w0935-trust-item strong{font-size:14px;color:var(--w0935-gold);font-weight:800}
.w0935-trust-item span{font-size:10.5px;color:var(--w0935-text-mute)}

/* ---------- Promo CTA banner ---------- */
.w0935-promo-banner{
  margin-top:14px;
  background:linear-gradient(135deg,#1f425e 0%, #142a3d 100%);
  border:1px solid rgba(255,204,2,.32);
  border-radius:var(--w0935-radius);
  padding:14px;
  display:flex;align-items:center;gap:12px;
  position:relative;overflow:hidden;
}
.w0935-promo-banner::before{
  content:"";position:absolute;right:-30px;top:-30px;width:120px;height:120px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,204,2,.18),transparent 70%);
}
.w0935-promo-text{flex:1}
.w0935-promo-text h3{font-size:15px;color:var(--w0935-gold);font-weight:800;margin-bottom:3px}
.w0935-promo-text p{font-size:11.5px;color:var(--w0935-text-mute);line-height:1.4}
.w0935-promo-cta{
  background:linear-gradient(135deg,var(--w0935-gold),var(--w0935-orange));
  color:#1a1206;font-weight:800;font-size:13px;
  padding:11px 16px;border-radius:22px;white-space:nowrap;
  box-shadow:0 4px 14px rgba(230,81,0,.4);
}

/* ---------- Section heads ---------- */
.w0935-section{margin-top:22px}
.w0935-sec-head{
  display:flex;align-items:center;justify-content:space-between;
  margin-bottom:10px;padding-bottom:7px;
  border-bottom:1px solid rgba(64,224,208,.18);
}
.w0935-sec-title{
  display:flex;align-items:center;gap:8px;
  font-size:16px;font-weight:800;color:var(--w0935-text);
}
.w0935-sec-title::before{
  content:"";width:4px;height:18px;border-radius:3px;
  background:linear-gradient(180deg,var(--w0935-gold),var(--w0935-orange));
}
.w0935-sec-more{font-size:12px;color:var(--w0935-teal);font-weight:600}

/* ---------- Game grid ---------- */
.w0935-game-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
@media (min-width:360px){.w0935-game-grid{gap:9px}}
@media (min-width:400px){.w0935-game-grid{grid-template-columns:repeat(5,1fr)}}
.w0935-game{
  cursor:pointer;
  display:flex;flex-direction:column;align-items:center;
  background:linear-gradient(180deg,#16324a 0%,#0f2638 100%);
  border:1px solid rgba(64,224,208,.16);
  border-radius:11px;
  padding:6px 4px 7px;
  transition:transform .18s, box-shadow .18s, border-color .2s;
  position:relative;overflow:hidden;
}
.w0935-game:hover{border-color:rgba(255,204,2,.5)}
.w0935-game:active{transform:scale(.95)}
.w0935-game-img{
  width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:8px;
  background:#0a1722;margin-bottom:4px;
}
.w0935-game-name{
  font-size:10.5px;color:var(--w0935-text-mute);font-weight:600;
  text-align:center;line-height:1.25;
  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
  min-height:26px;
}
.w0935-game-hot{
  position:absolute;top:4px;left:4px;
  background:linear-gradient(135deg,var(--w0935-orange),#ff4d4d);
  color:#fff;font-size:8.5px;font-weight:800;
  padding:2px 6px;border-radius:8px;
}

/* ---------- Feature cards ---------- */
.w0935-feat-row{
  display:grid;grid-template-columns:1fr 1fr;gap:9px;margin-top:10px;
}
.w0935-feat{
  background:linear-gradient(180deg,#173a55 0%, #102939 100%);
  border:1px solid rgba(64,224,208,.18);
  border-radius:12px;padding:12px;
  display:flex;flex-direction:column;gap:6px;
}
.w0935-feat h4{font-size:13.5px;color:var(--w0935-gold);font-weight:800}
.w0935-feat p{font-size:11.5px;color:var(--w0935-text-mute);line-height:1.45}

/* ---------- Winner ticker ---------- */
.w0935-ticker{
  margin-top:14px;border-radius:11px;overflow:hidden;
  border:1px solid rgba(64,224,208,.18);
  background:#0e2436;
}
.w0935-ticker-head{
  padding:8px 12px;background:rgba(255,204,2,.08);
  font-size:12px;font-weight:800;color:var(--w0935-gold);
  display:flex;align-items:center;gap:6px;
}
.w0935-ticker ul{padding:6px 12px}
.w0935-ticker li{
  display:flex;justify-content:space-between;
  font-size:12px;padding:5px 0;border-bottom:1px dashed rgba(64,224,208,.14);
}
.w0935-ticker li:last-child{border-bottom:0}
.w0935-ticker li span:first-child{color:var(--w0935-text)}
.w0935-ticker li span:last-child{color:var(--w0935-teal);font-weight:700}

/* ---------- FAQ list ---------- */
.w0935-faq-item{
  background:#0e2436;border:1px solid rgba(64,224,208,.16);
  border-radius:10px;padding:11px 12px;margin-bottom:8px;
}
.w0935-faq-item h4{font-size:13px;color:var(--w0935-gold);font-weight:700;margin-bottom:5px}
.w0935-faq-item p{font-size:12.5px;color:var(--w0935-text-mute);line-height:1.55}

/* ---------- Payment grid ---------- */
.w0935-pay-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px;margin-top:10px}
.w0935-pay{
  background:#122e44;border:1px solid rgba(64,224,208,.18);
  border-radius:10px;padding:9px 6px;text-align:center;
}
.w0935-pay strong{display:block;color:var(--w0935-gold);font-size:12px;font-weight:800}
.w0935-pay span{display:block;color:var(--w0935-text-mute);font-size:10.5px;margin-top:2px}

/* ---------- SEO content ---------- */
.w0935-seo{
  margin-top:18px;padding:14px;
  background:#0e2436;border-radius:12px;
  border:1px solid rgba(64,224,208,.16);
}
.w0935-seo h3{font-size:14.5px;color:var(--w0935-gold);font-weight:800;margin-bottom:8px}
.w0935-seo p{font-size:12.5px;color:var(--w0935-text-mute);margin-bottom:8px;line-height:1.7}
.w0935-seo a{color:var(--w0935-teal);font-weight:600;text-decoration:underline;text-underline-offset:2px}

/* ---------- Extended footer ---------- */
.w0935-ext-footer{margin-top:22px;padding-top:16px;border-top:1px solid rgba(64,224,208,.18)}
.w0935-ext-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.w0935-ext-col h5{
  font-size:12.5px;color:var(--w0935-gold);font-weight:800;margin-bottom:8px;
  text-transform:uppercase;letter-spacing:.6px;
}
.w0935-ext-col p{font-size:11.5px;color:var(--w0935-text-mute);line-height:1.6;margin-bottom:6px}
.w0935-ext-col ul li{margin-bottom:5px}
.w0935-ext-col ul li a{font-size:12px;color:var(--w0935-text-mute)}
.w0935-ext-col ul li a:hover{color:var(--w0935-teal)}
.w0935-ext-promo-list{display:flex;flex-direction:column;gap:6px}
.w0935-ext-promo{
  display:flex;align-items:center;justify-content:space-between;gap:8px;
  background:linear-gradient(135deg,#1f425e,#142a3d);
  border:1px solid rgba(255,204,2,.3);
  border-radius:9px;padding:8px 10px;font-size:12px;color:var(--w0935-text);font-weight:600;
}
.w0935-ext-promo span{color:var(--w0935-gold);font-weight:800;font-size:11.5px}
.w0935-disclaimer{
  margin-top:14px;padding:10px 12px;border-radius:9px;
  background:rgba(230,81,0,.08);border:1px solid rgba(230,81,0,.3);
  font-size:10.8px;color:var(--w0935-text-mute);line-height:1.55;
}

/* ---------- Footer ---------- */
.w0935-footer{
  padding:14px 14px calc(var(--w0935-bottom-h) + 18px);
  text-align:center;font-size:11px;color:var(--w0935-text-mute);
  border-top:1px solid rgba(64,224,208,.14);
  background:#0a1722;
}

/* ---------- Bottom nav (segmented action bar) ---------- */
.w0935-bottom{
  position:fixed;left:0;right:0;bottom:0;z-index:50;
  max-width:var(--w0935-max);margin:0 auto;
  height:var(--w0935-bottom-h);
  background:linear-gradient(180deg,#16324a 0%,#0c1c2b 100%);
  border-top:1px solid rgba(255,204,2,.22);
  display:grid;grid-template-columns:repeat(5,1fr);
  box-shadow:0 -6px 18px rgba(0,0,0,.45);
}
.w0935-bottom-item{
  position:relative;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  gap:2px;height:100%;
  color:var(--w0935-text-mute);font-size:10px;font-weight:600;
  transition:color .2s;
}
.w0935-bottom-item .w0935-ico{
  width:24px;height:24px;display:grid;place-items:center;color:var(--w0935-text-mute);
  transition:color .25s, transform .25s;
}
.w0935-bottom-item.w0935-active{color:var(--w0935-gold)}
.w0935-bottom-item.w0935-active .w0935-ico{color:var(--w0935-gold);transform:translateY(-1px)}
.w0935-bottom-item.w0935-active::before{
  content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);
  width:22px;height:3px;border-radius:0 0 4px 4px;
  background:linear-gradient(90deg,var(--w0935-gold),var(--w0935-orange));
  transition:left .3s ease;
}
.w0935-bottom-item.w0935-promo .w0935-ico{color:var(--w0935-teal)}
.w0935-bottom-item:active{transform:scale(.94)}

/* ---------- Utility ---------- */
.w0935-hidden{display:none}
.w0935-clearfix::after{content:"";display:table;clear:both}

/* ---------- Backdrop ---------- */
.w0935-backdrop{
  position:fixed;inset:0;z-index:35;
  background:rgba(5,11,18,.55);
  opacity:0;visibility:hidden;transition:opacity .25s;
}
.w0935-backdrop.w0935-open{opacity:1;visibility:visible}

/* ---------- Mobile breakpoint max-width 430px ---------- */
@media (max-width: 430px) {
  body { font-size: 14px; }
  .w0935-shell { font-size: 14px; }
  .w0935-header { height: 56px; padding: 0 10px; gap: 8px; }
  .w0935-logo { width: 34px; height: 34px; }
  .w0935-brand-name { font-size: 15px; }
  .w0935-brand-name small { font-size: 9.5px; }
  .w0935-btn { font-size: 12px; min-height: 34px; padding: 0 12px; }
  .w0935-menu-btn { width: 34px; height: 34px; }
  .w0935-main { padding: 12px 10px 22px; }
  .w0935-slide img { height: 168px; }
  .w0935-slide-cap { padding: 12px; }
  .w0935-slide-cap h2 { font-size: 15px; }
  .w0935-slide-cap p { font-size: 11px; }
  .w0935-slide-cta { top: 10px; right: 10px; font-size: 11px; padding: 6px 11px; }
  .w0935-trust { gap: 6px; }
  .w0935-trust-item { flex: 1 1 30%; min-width: 84px; padding: 8px 5px; }
  .w0935-trust-item strong { font-size: 13px; }
  .w0935-trust-item span { font-size: 9.5px; }
  .w0935-promo-banner { padding: 12px; gap: 10px; }
  .w0935-promo-text h3 { font-size: 14px; }
  .w0935-promo-text p { font-size: 11px; }
  .w0935-promo-cta { font-size: 12px; padding: 10px 14px; }
  .w0935-section { margin-top: 18px; }
  .w0935-sec-title { font-size: 15px; }
  .w0935-sec-more { font-size: 11px; }
  .w0935-game-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .w0935-game { padding: 5px 3px 6px; }
  .w0935-game-name { font-size: 9.5px; min-height: 24px; }
  .w0935-game-hot { font-size: 8px; padding: 2px 5px; }
  .w0935-feat-row { gap: 7px; }
  .w0935-feat { padding: 10px; }
  .w0935-feat h4 { font-size: 12.5px; }
  .w0935-feat p { font-size: 11px; }
  .w0935-pay-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .w0935-pay strong { font-size: 11px; }
  .w0935-pay span { font-size: 9.5px; }
  .w0935-seo { padding: 12px; }
  .w0935-seo h3 { font-size: 13.5px; }
  .w0935-seo p { font-size: 12px; }
  .w0935-ext-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .w0935-ext-col h5 { font-size: 11.5px; }
  .w0935-ext-col p { font-size: 11px; }
  .w0935-ext-col ul li a { font-size: 11.5px; }
  .w0935-ext-promo { font-size: 11px; padding: 7px 9px; }
  .w0935-disclaimer { font-size: 10px; padding: 9px 10px; }
  .w0935-footer { padding: 12px 12px calc(var(--w0935-bottom-h) + 16px); font-size: 10px; }
  .w0935-bottom { height: 58px; }
  .w0935-bottom-item { font-size: 9px; }
  .w0935-bottom-item .w0935-ico { width: 22px; height: 22px; }
  .w0935-route-grid { gap: 6px; }
  .w0935-route-item { padding: 9px 10px; font-size: 12px; }
}
