/* ============================================================
   bajiaffiliateapps.click  -  Mobile-first base stylesheet
   Prefix  : view6352a-
   Palette : #34495E base  / #FDF5E6 ink  / #F4A460 warm
             #00CED1 accent / #FFFFFF surface
   Direction: geometric headings, low-radius zoning,
              image+caption cards, menu slide-in, soft CTA
   ============================================================ */

/* ---------- Design tokens ---------- */
:root{
  --view6352a-ink:        #34495E;
  --view6352a-ink-deep:   #22313F;
  --view6352a-ink-soft:   #4A6275;
  --view6352a-paper:      #FDF5E6;
  --view6352a-paper-mute: #F3E6CE;
  --view6352a-warm:       #F4A460;
  --view6352a-warm-deep:  #D9863E;
  --view6352a-aqua:       #00CED1;
  --view6352a-aqua-deep:  #06A8AB;
  --view6352a-snow:       #FFFFFF;
  --view6352a-line:       rgba(253,245,230,.14);
  --view6352a-line-dark:  rgba(52,73,94,.16);
  --view6352a-shadow:     0 6px 18px rgba(34,49,63,.18);
  --view6352a-shadow-soft:0 2px 8px rgba(34,49,63,.10);
  --view6352a-radius-lg:  14px;
  --view6352a-radius-md:  8px;
  --view6352a-radius-sm:  4px;
  --view6352a-track:      4px;
  --view6352a-header-h:   58px;
  --view6352a-bottom-h:   66px;
  --view6352a-frame:      460px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after{ box-sizing:border-box; margin:0; padding:0; }

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

body{
  font-family:"Hind Siliguri","Noto Sans Bengali","Segoe UI",system-ui,-apple-system,sans-serif;
  background:linear-gradient(180deg,#1B2A36 0%,#22313F 38%,#2C4051 100%);
  color:var(--view6352a-paper);
  line-height:1.65;
  font-size:15px;
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

img{ max-width:100%; display:block; border:0; }
a{ color:var(--view6352a-aqua); text-decoration:none; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
ul,ol{ list-style:none; }

h1,h2,h3,h4{
  font-family:"Hind Siliguri","Noto Sans Bengali",system-ui,sans-serif;
  font-weight:700;
  line-height:1.32;
  letter-spacing:.2px;
  color:var(--view6352a-snow);
}

/* ---------- Phone canvas frame ---------- */
.view6352a-shell{
  position:relative;
  width:100%;
  max-width:var(--view6352a-frame);
  margin:0 auto;
  min-height:100vh;
  background:var(--view6352a-ink);
  box-shadow:0 0 36px rgba(0,0,0,.35);
  overflow:hidden;
}

/* ---------- Header (compact brand bar) ---------- */
.view6352a-header{
  position:sticky;
  top:0;
  z-index:60;
  height:var(--view6352a-header-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:0 12px;
  background:linear-gradient(90deg,#22313F 0%,#2C4051 100%);
  border-bottom:1px solid var(--view6352a-line);
}

.view6352a-brand{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:0;
}

.view6352a-brand-logo{
  width:34px;
  height:34px;
  border-radius:var(--view6352a-radius-sm);
  object-fit:cover;
  background:var(--view6352a-warm);
  flex:0 0 auto;
}

.view6352a-brand-name{
  font-size:15px;
  font-weight:700;
  color:var(--view6352a-snow);
  line-height:1.15;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.view6352a-brand-name b{ color:var(--view6352a-warm); font-weight:700; }

.view6352a-actions{
  display:flex;
  align-items:center;
  gap:6px;
  flex:0 0 auto;
}

.view6352a-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:38px;
  padding:0 14px;
  border-radius:var(--view6352a-radius-md);
  font-size:13px;
  font-weight:600;
  letter-spacing:.2px;
  transition:transform .18s ease,background .25s ease,color .25s ease;
}

.view6352a-btn-login{
  background:transparent;
  color:var(--view6352a-paper);
  border:1px solid rgba(253,245,230,.28);
}

.view6352a-btn-login:hover{ background:rgba(253,245,230,.08); }

.view6352a-btn-register{
  background:linear-gradient(135deg,var(--view6352a-warm) 0%,var(--view6352a-warm-deep) 100%);
  color:#2A1809;
  font-weight:700;
  box-shadow:0 3px 10px rgba(217,134,62,.35);
}

.view6352a-btn-register:hover{ transform:translateY(-1px); }

.view6352a-menu-btn{
  width:38px;
  height:38px;
  border-radius:var(--view6352a-radius-md);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(253,245,230,.06);
  color:var(--view6352a-paper);
  border:1px solid var(--view6352a-line);
}

.view6352a-menu-btn:hover{ background:rgba(253,245,230,.12); }

.view6352a-menu-btn svg{ width:20px; height:20px; display:block; }

/* ---------- Slide-up route panel ---------- */
.view6352a-panel{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:80;
  max-width:var(--view6352a-frame);
  margin:0 auto;
  background:linear-gradient(180deg,#2C4051 0%,#22313F 100%);
  border-top:2px solid var(--view6352a-warm);
  border-radius:22px 22px 0 0;
  padding:18px 18px calc(18px + env(safe-area-inset-bottom));
  box-shadow:0 -10px 30px rgba(0,0,0,.35);
  transform:translateY(110%);
  transition:transform .32s cubic-bezier(.22,.61,.36,1);
  max-height:78vh;
  overflow-y:auto;
}

.view6352a-panel.is-open{ transform:translateY(0); }

.view6352a-panel-grip{
  width:42px;
  height:4px;
  border-radius:4px;
  background:rgba(253,245,230,.35);
  margin:0 auto 14px;
}

.view6352a-panel-title{
  font-size:13px;
  color:var(--view6352a-aqua);
  text-transform:uppercase;
  letter-spacing:.18em;
  margin-bottom:10px;
  font-weight:600;
}

.view6352a-panel-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
}

.view6352a-panel-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 12px;
  background:rgba(253,245,230,.05);
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
  color:var(--view6352a-paper);
  font-size:13.5px;
  font-weight:500;
  min-height:44px;
  transition:background .2s ease,border-color .2s ease,transform .18s ease;
}

.view6352a-panel-link:hover{
  background:rgba(0,206,209,.12);
  border-color:rgba(0,206,209,.35);
  transform:translateY(-1px);
}

.view6352a-panel-link .view6352a-panel-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--view6352a-warm);
  flex:0 0 auto;
}

.view6352a-panel-cta-row{
  display:flex;
  gap:8px;
  margin-top:14px;
}

.view6352a-panel-cta-row .view6352a-btn{ flex:1; }

.view6352a-panel-backdrop{
  position:fixed;
  inset:0;
  z-index:70;
  background:rgba(11,18,24,.55);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease,visibility .25s ease;
}

.view6352a-panel-backdrop.is-open{ opacity:1; visibility:visible; }

/* ---------- Hero / carousel ---------- */
.view6352a-hero{
  position:relative;
  padding:14px 12px 6px;
}

.view6352a-hero-track{
  position:relative;
  border-radius:var(--view6352a-radius-lg);
  overflow:hidden;
  box-shadow:var(--view6352a-shadow);
  background:#15212B;
}

.view6352a-hero-slides{
  display:flex;
  scroll-snap-type:x mandatory;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.view6352a-hero-slides::-webkit-scrollbar{ display:none; }

.view6352a-hero-slide{
  flex:0 0 100%;
  scroll-snap-align:start;
  position:relative;
  cursor:pointer;
}

.view6352a-hero-slide img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
}

.view6352a-hero-cap{
  position:absolute;
  left:14px;
  right:14px;
  bottom:14px;
  background:linear-gradient(0deg,rgba(11,18,24,.88) 0%,rgba(11,18,24,0) 100%);
  padding:30px 14px 12px;
  border-radius:0 0 var(--view6352a-radius-lg) var(--view6352a-radius-lg);
}

.view6352a-hero-cap-tag{
  display:inline-block;
  font-size:11px;
  letter-spacing:.12em;
  color:var(--view6352a-warm);
  background:rgba(244,164,96,.14);
  padding:3px 8px;
  border-radius:3px;
  margin-bottom:6px;
  font-weight:600;
}

.view6352a-hero-cap h2{
  font-size:18px;
  color:var(--view6352a-snow);
  margin-bottom:6px;
  text-shadow:0 2px 6px rgba(0,0,0,.55);
}

.view6352a-hero-cap p{
  font-size:12.5px;
  color:rgba(253,245,230,.86);
  margin-bottom:8px;
}

.view6352a-hero-cap-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 14px;
  border-radius:var(--view6352a-radius-md);
  background:var(--view6352a-warm);
  color:#2A1809;
  font-size:12.5px;
  font-weight:700;
}

.view6352a-hero-dots{
  display:flex;
  justify-content:center;
  gap:6px;
  padding:10px 0 4px;
}

.view6352a-hero-dot{
  width:7px;
  height:7px;
  border-radius:50%;
  background:rgba(253,245,230,.32);
  transition:background .2s ease,transform .2s ease,width .2s ease;
  border:0;
}

.view6352a-hero-dot.is-active{
  background:var(--view6352a-warm);
  width:22px;
  border-radius:4px;
}

/* ---------- Section zoning ---------- */
.view6352a-section{
  padding:18px 12px 6px;
}

.view6352a-section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
  padding-bottom:8px;
  border-bottom:1px solid var(--view6352a-line);
}

.view6352a-section-head h2{
  font-size:17px;
  color:var(--view6352a-snow);
  position:relative;
  padding-left:10px;
}

.view6352a-section-head h2::before{
  content:"";
  position:absolute;
  left:0;
  top:5px;
  bottom:5px;
  width:3px;
  border-radius:3px;
  background:linear-gradient(180deg,var(--view6352a-warm),var(--view6352a-aqua));
}

.view6352a-section-head .view6352a-section-more{
  font-size:12px;
  color:var(--view6352a-aqua);
  font-weight:600;
  white-space:nowrap;
}

.view6352a-section-intro{
  font-size:13px;
  color:rgba(253,245,230,.78);
  margin:-4px 0 12px;
  line-height:1.6;
}

/* ---------- Game grid (image + caption bar) ---------- */
.view6352a-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}

.view6352a-card{
  display:flex;
  flex-direction:column;
  background:rgba(253,245,230,.04);
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
  overflow:hidden;
  cursor:pointer;
  transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
  position:relative;
}

.view6352a-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--view6352a-shadow);
  border-color:rgba(0,206,209,.4);
}

.view6352a-card-thumb{
  position:relative;
  width:100%;
  aspect-ratio:1/1;
  background:#15212B;
  overflow:hidden;
}

.view6352a-card-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .4s ease;
}

.view6352a-card:hover .view6352a-card-thumb img{ transform:scale(1.05); }

.view6352a-card-badge{
  position:absolute;
  top:4px;
  left:4px;
  font-size:9px;
  letter-spacing:.06em;
  background:rgba(244,164,96,.92);
  color:#2A1809;
  padding:2px 5px;
  border-radius:3px;
  font-weight:700;
}

.view6352a-card-name{
  font-size:11px;
  line-height:1.3;
  padding:6px 6px 7px;
  text-align:center;
  color:var(--view6352a-paper);
  background:rgba(11,18,24,.42);
  border-top:1px solid var(--view6352a-line);
  min-height:32px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:500;
}

/* ---------- Category divider ribbon ---------- */
.view6352a-ribbon{
  display:flex;
  align-items:center;
  gap:8px;
  margin:18px 0 10px;
  padding:8px 12px;
  background:linear-gradient(90deg,rgba(244,164,96,.18) 0%,rgba(244,164,96,0) 100%);
  border-left:3px solid var(--view6352a-warm);
  border-radius:0 var(--view6352a-radius-sm) var(--view6352a-radius-sm) 0;
}

.view6352a-ribbon-icon{
  width:24px;
  height:24px;
  border-radius:50%;
  background:rgba(0,206,209,.16);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  color:var(--view6352a-aqua);
  flex:0 0 auto;
}

.view6352a-ribbon h3{
  font-size:15px;
  color:var(--view6352a-snow);
}

.view6352a-ribbon .view6352a-ribbon-count{
  margin-left:auto;
  font-size:11px;
  color:rgba(253,245,230,.6);
}

/* ---------- Info / SEO blocks ---------- */
.view6352a-prose{
  padding:16px 14px;
  background:rgba(253,245,230,.04);
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
  margin-top:14px;
}

.view6352a-prose p{
  font-size:13.5px;
  line-height:1.78;
  color:rgba(253,245,230,.88);
  margin-bottom:10px;
}

.view6352a-prose p:last-child{ margin-bottom:0; }

.view6352a-prose a{
  color:var(--view6352a-aqua);
  border-bottom:1px dashed rgba(0,206,209,.5);
  padding-bottom:1px;
}

.view6352a-prose a:hover{ color:var(--view6352a-warm); border-bottom-color:var(--view6352a-warm); }

.view6352a-prose strong{ color:var(--view6352a-warm); font-weight:700; }

/* ---------- Features comparison ---------- */
.view6352a-feat-list{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.view6352a-feat-item{
  display:grid;
  grid-template-columns:34px 1fr;
  gap:12px;
  padding:12px;
  background:rgba(253,245,230,.04);
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
}

.view6352a-feat-num{
  width:34px;
  height:34px;
  border-radius:8px;
  background:linear-gradient(135deg,var(--view6352a-warm),var(--view6352a-warm-deep));
  color:#2A1809;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
}

.view6352a-feat-body h4{
  font-size:14px;
  color:var(--view6352a-snow);
  margin-bottom:4px;
}

.view6352a-feat-body p{
  font-size:12.5px;
  color:rgba(253,245,230,.78);
  line-height:1.6;
}

/* ---------- Steps ---------- */
.view6352a-steps{
  display:grid;
  gap:8px;
  margin-top:12px;
  counter-reset:view6352a-step;
}

.view6352a-step{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:10px;
  padding:10px 12px;
  background:rgba(0,206,209,.06);
  border-left:2px solid var(--view6352a-aqua);
  border-radius:0 var(--view6352a-radius-sm) var(--view6352a-radius-sm) 0;
}

.view6352a-step::before{
  counter-increment:view6352a-step;
  content:counter(view6352a-step);
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--view6352a-aqua);
  color:#062E2F;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.view6352a-step-body h4{
  font-size:13.5px;
  color:var(--view6352a-snow);
  margin-bottom:2px;
}

.view6352a-step-body p{
  font-size:12.5px;
  color:rgba(253,245,230,.78);
}

/* ---------- Testimonials ---------- */
.view6352a-tm{
  display:grid;
  gap:10px;
  margin-top:12px;
}

.view6352a-tm-card{
  padding:12px;
  background:rgba(253,245,230,.04);
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
}

.view6352a-tm-head{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:6px;
}

.view6352a-tm-avatar{
  width:30px;
  height:30px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--view6352a-aqua),var(--view6352a-ink-soft));
  color:#062E2F;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}

.view6352a-tm-name{
  font-size:13px;
  color:var(--view6352a-snow);
  font-weight:600;
}

.view6352a-tm-meta{
  font-size:11px;
  color:rgba(253,245,230,.55);
  margin-left:auto;
}

.view6352a-tm-quote{
  font-size:12.5px;
  line-height:1.65;
  color:rgba(253,245,230,.84);
}

.view6352a-tm-stars{ color:var(--view6352a-warm); font-size:11px; letter-spacing:1px; }

/* ---------- FAQ ---------- */
.view6352a-faq{
  display:grid;
  gap:8px;
  margin-top:12px;
}

.view6352a-faq-item{
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
  overflow:hidden;
  background:rgba(253,245,230,.04);
}

.view6352a-faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 12px;
  text-align:left;
  font-size:13px;
  font-weight:600;
  color:var(--view6352a-snow);
  min-height:44px;
}

.view6352a-faq-q .view6352a-faq-mark{
  width:18px;
  height:18px;
  flex:0 0 auto;
  color:var(--view6352a-warm);
  transition:transform .25s ease;
}

.view6352a-faq-item.is-open .view6352a-faq-mark{ transform:rotate(45deg); }

.view6352a-faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .3s ease;
  padding:0 12px;
}

.view6352a-faq-item.is-open .view6352a-faq-a{ max-height:300px; padding-bottom:12px; }

.view6352a-faq-a p{
  font-size:12.5px;
  line-height:1.68;
  color:rgba(253,245,230,.84);
}

/* ---------- Direct answer banner ---------- */
.view6352a-direct{
  margin-top:14px;
  padding:14px;
  background:linear-gradient(135deg,rgba(244,164,96,.14) 0%,rgba(0,206,209,.1) 100%);
  border:1px solid rgba(244,164,96,.32);
  border-radius:var(--view6352a-radius-md);
}

.view6352a-direct-label{
  font-size:11px;
  letter-spacing:.16em;
  color:var(--view6352a-warm);
  font-weight:600;
  text-transform:uppercase;
  margin-bottom:6px;
}

.view6352a-direct p{
  font-size:13.5px;
  line-height:1.7;
  color:var(--view6352a-snow);
}

/* ---------- Page directory shortcuts ---------- */
.view6352a-directory{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin-top:12px;
}

.view6352a-directory a{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 11px;
  background:rgba(253,245,230,.04);
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
  font-size:12.5px;
  color:var(--view6352a-paper);
  min-height:42px;
  transition:background .2s ease,border-color .2s ease;
}

.view6352a-directory a:hover{
  background:rgba(0,206,209,.1);
  border-color:rgba(0,206,209,.4);
}

.view6352a-directory .view6352a-directory-ico{
  width:22px;
  height:22px;
  border-radius:5px;
  background:rgba(244,164,96,.16);
  color:var(--view6352a-warm);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  flex:0 0 auto;
}

/* ---------- Promo shortcut row ---------- */
.view6352a-promo-row{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:8px;
  margin-top:12px;
}

.view6352a-promo-row .view6352a-btn{
  width:100%;
  min-height:44px;
}

.view6352a-promo-warm{
  background:linear-gradient(135deg,var(--view6352a-warm),var(--view6352a-warm-deep));
  color:#2A1809;
  font-weight:700;
}

.view6352a-promo-aqua{
  background:linear-gradient(135deg,var(--view6352a-aqua),var(--view6352a-aqua-deep));
  color:#062E2F;
  font-weight:700;
}

.view6352a-promo-ghost{
  background:transparent;
  color:var(--view6352a-paper);
  border:1px solid rgba(253,245,230,.28);
}

.view6352a-promo-ink{
  background:rgba(253,245,230,.08);
  color:var(--view6352a-snow);
  border:1px solid var(--view6352a-line);
}

/* ---------- Disclaimer + brand block ---------- */
.view6352a-brand-block{
  margin-top:14px;
  padding:14px;
  background:rgba(11,18,24,.42);
  border:1px solid var(--view6352a-line);
  border-radius:var(--view6352a-radius-md);
}

.view6352a-brand-block h3{
  font-size:15px;
  color:var(--view6352a-snow);
  margin-bottom:6px;
}

.view6352a-brand-block p{
  font-size:12.5px;
  line-height:1.7;
  color:rgba(253,245,230,.82);
  margin-bottom:8px;
}

.view6352a-disclaimer{
  margin-top:12px;
  padding:10px 12px;
  background:rgba(244,164,96,.08);
  border-left:2px solid var(--view6352a-warm);
  border-radius:0 var(--view6352a-radius-sm) var(--view6352a-radius-sm) 0;
  font-size:11.5px;
  line-height:1.6;
  color:rgba(253,245,230,.72);
}

/* ---------- Footer (above bottom nav) ---------- */
.view6352a-footer{
  padding:18px 14px calc(var(--view6352a-bottom-h) + 22px);
  border-top:1px solid var(--view6352a-line);
  background:linear-gradient(180deg,rgba(11,18,24,.55) 0%,#1B2A36 100%);
  margin-top:20px;
}

.view6352a-footer h4{
  font-size:13px;
  color:var(--view6352a-snow);
  margin-bottom:8px;
  letter-spacing:.04em;
}

.view6352a-footer-cols{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 12px;
  margin-bottom:14px;
}

.view6352a-footer-col a{
  display:block;
  font-size:12px;
  color:rgba(253,245,230,.78);
  padding:4px 0;
  line-height:1.4;
}

.view6352a-footer-col a:hover{ color:var(--view6352a-aqua); }

.view6352a-footer-col button{
  display:block;
  width:100%;
  text-align:left;
  font-size:12px;
  color:rgba(253,245,230,.78);
  padding:4px 0;
  line-height:1.4;
  background:none;
  border:0;
  cursor:pointer;
}

.view6352a-footer-col button:hover{ color:var(--view6352a-aqua); }

.view6352a-footer-promo button{ color:var(--view6352a-warm); font-weight:600; }

.view6352a-footer-base{
  padding-top:10px;
  border-top:1px solid var(--view6352a-line);
  font-size:11px;
  color:rgba(253,245,230,.55);
  line-height:1.5;
}

.view6352a-footer-base span{ color:var(--view6352a-warm); }

/* ---------- Mobile bottom nav (layered) ---------- */
.view6352a-bottom{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:65;
  max-width:var(--view6352a-frame);
  margin:0 auto;
  height:var(--view6352a-bottom-h);
  display:grid;
  grid-template-columns:repeat(5,1fr);
  background:linear-gradient(180deg,#2C4051 0%,#1B2A36 100%);
  border-top:1px solid var(--view6352a-line);
  box-shadow:0 -6px 18px rgba(0,0,0,.32);
  padding-bottom:env(safe-area-inset-bottom);
}

.view6352a-bottom-item{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  color:rgba(253,245,230,.7);
  font-size:10px;
  line-height:1.2;
  text-align:center;
  padding:6px 2px;
  transition:color .25s ease;
}

.view6352a-bottom-item:hover{ color:var(--view6352a-paper); }

.view6352a-bottom-item::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:0;
  height:2px;
  background:var(--view6352a-warm);
  border-radius:0 0 2px 2px;
  transition:width .22s ease;
}

.view6352a-bottom-item.is-active{ color:var(--view6352a-warm); }

.view6352a-bottom-item.is-active::before{ width:26px; }

.view6352a-bottom-ico{
  width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.view6352a-bottom-ico svg{ width:22px; height:22px; }

.view6352a-bottom-label{ font-weight:600; }

.view6352a-bottom-item-promo{
  color:var(--view6352a-aqua);
}

.view6352a-bottom-item-promo .view6352a-bottom-ico{
  background:linear-gradient(135deg,var(--view6352a-warm),var(--view6352a-warm-deep));
  color:#2A1809;
  border-radius:50%;
  width:36px;
  height:36px;
  margin-top:-12px;
  box-shadow:0 3px 10px rgba(217,134,62,.45);
}

.view6352a-bottom-item-promo .view6352a-bottom-ico svg{ width:20px; height:20px; }

/* ---------- Utility ---------- */
.view6352a-sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

.view6352a-underline-on:hover{ text-decoration:underline; }

/* ---------- Responsive: from 430px upward ---------- */
@media (min-width:430px){
  .view6352a-grid{ grid-template-columns:repeat(5,1fr); gap:10px; }
  .view6352a-directory{ grid-template-columns:repeat(3,1fr); }
  .view6352a-promo-row{ grid-template-columns:repeat(4,1fr); }
  .view6352a-hero-cap h2{ font-size:20px; }
  .view6352a-section-head h2{ font-size:18px; }
  body{ font-size:15.5px; }
}

@media (min-width:430px) and (max-width:760px){
  .view6352a-grid{ grid-template-columns:repeat(5,1fr); }
}

/* Below 360px: keep 4 columns but compact captions */
@media (max-width:359px){
  .view6352a-grid{ gap:6px; }
  .view6352a-card-name{ font-size:10.5px; padding:5px 4px; }
  .view6352a-section{ padding:14px 8px 4px; }
  .view6352a-hero{ padding:10px 8px 4px; }
}

/* Reduced motion */
@media (prefers-reduced-motion:reduce){
  *{ scroll-behavior:auto !important; transition:none !important; }
}
