/* =========================================================
   Playtime Gaming - dynamic-533eaf-palette.css
   Mobile-first (320-430px) palette and layout system.
   All custom classes and variables use the "frame33eaf-" prefix.
   Palette: #DEB887 | #2E4057 | #6F4E37 | #C71585 | #A0522D
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  --frame33eaf-bg-deep:#2E4057;
  --frame33eaf-bg-coffee:#6F4E37;
  --frame33eaf-bg-sienna:#A0522D;
  --frame33eaf-tan:#DEB887;
  --frame33eaf-tan-soft:#E7CBA6;
  --frame33eaf-magenta:#C71585;
  --frame33eaf-magenta-bright:#E03A9E;
  --frame33eaf-ink:#1C2A39;
  --frame33eaf-ink-soft:#243447;
  --frame33eaf-line:#3A526A;
  --frame33eaf-line-soft:#455E7A;
  --frame33eaf-text:#F2E6D5;
  --frame33eaf-text-dim:#C9B79A;
  --frame33eaf-text-muted:#9E9079;
  --frame33eaf-white:#FFFFFF;
  --frame33eaf-success:#7BB37A;
  --frame33eaf-warning:#E3B23C;

  --frame33eaf-radius-sm:8px;
  --frame33eaf-radius:14px;
  --frame33eaf-radius-lg:20px;

  --frame33eaf-shadow-soft:0 6px 18px rgba(0,0,0,.28);
  --frame33eaf-shadow-deep:0 14px 36px rgba(0,0,0,.42);
  --frame33eaf-shadow-press:0 2px 6px rgba(0,0,0,.35);

  --frame33eaf-header-h:58px;
  --frame33eaf-bottomnav-h:66px;
  --frame33eaf-maxw:480px;

  --frame33eaf-font:"Inter","Segoe UI",system-ui,-apple-system,Roboto,Arial,sans-serif;
}

/* ---------- Reset ---------- */
*{box-sizing:border-box;margin:0;padding:0;-webkit-tap-highlight-color:transparent;}
html,body{overflow-x:hidden;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--frame33eaf-font);
  background:linear-gradient(180deg,#2A3C52 0%,#2E4057 30%,#34495F 100%);
  color:var(--frame33eaf-text);
  line-height:1.6;
  font-size:15px;
  min-height:100vh;
  position:relative;
}
img{max-width:100%;display:block;border:0;}
a{color:var(--frame33eaf-tan);text-decoration:none;transition:color .18s ease;}
a:hover{color:var(--frame33eaf-white);}
button{font-family:inherit;cursor:pointer;border:0;background:none;color:inherit;}
ul,ol{list-style:none;}

/* ---------- App canvas ---------- */
.frame33eaf-canvas{
  max-width:var(--frame33eaf-maxw);
  margin:0 auto;
  background:
    radial-gradient(900px 280px at 50% -60px,rgba(199,21,133,.16),transparent 60%),
    linear-gradient(180deg,#2E4057 0%,#324A63 50%,#2C3F55 100%);
  min-height:100vh;
  position:relative;
  box-shadow:var(--frame33eaf-shadow-deep);
  padding-bottom:calc(var(--frame33eaf-bottomnav-h) + 24px);
}

/* ---------- Header (minimal action band) ---------- */
.frame33eaf-header{
  position:sticky;
  top:0;
  z-index:60;
  height:var(--frame33eaf-header-h);
  background:linear-gradient(90deg,#1F2E3F 0%,#2E4057 50%,#3A2A26 100%);
  border-bottom:1px solid rgba(222,184,135,.22);
  display:flex;
  align-items:center;
  padding:0 12px;
  gap:8px;
}
.frame33eaf-brand{
  display:flex;
  align-items:center;
  gap:8px;
  flex:1;
  min-width:0;
}
.frame33eaf-logo{
  width:38px;
  height:38px;
  border-radius:10px;
  object-fit:cover;
  background:radial-gradient(circle,#DEB887 0%,#A0522D 100%);
  padding:2px;
  box-shadow:0 0 0 1px rgba(222,184,135,.4),0 4px 10px rgba(0,0,0,.35);
  flex:0 0 auto;
}
.frame33eaf-brand-text{
  display:flex;
  flex-direction:column;
  min-width:0;
  line-height:1.1;
}
.frame33eaf-brand-name{
  font-size:15px;
  font-weight:800;
  letter-spacing:.3px;
  color:var(--frame33eaf-tan);
  text-transform:uppercase;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.frame33eaf-brand-sub{
  font-size:9.5px;
  color:var(--frame33eaf-text-dim);
  letter-spacing:1.4px;
  text-transform:uppercase;
  white-space:nowrap;
}
.frame33eaf-head-actions{
  display:flex;
  align-items:center;
  gap:6px;
}
.frame33eaf-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:5px;
  min-height:36px;
  padding:0 12px;
  border-radius:20px;
  font-size:12.5px;
  font-weight:700;
  letter-spacing:.4px;
  transition:transform .12s ease,box-shadow .18s ease,background .18s ease;
  white-space:nowrap;
}
.frame33eaf-btn:active{transform:translateY(1px) scale(.98);box-shadow:var(--frame33eaf-shadow-press);}
.frame33eaf-btn-login{
  background:transparent;
  border:1px solid rgba(222,184,135,.55);
  color:var(--frame33eaf-tan);
}
.frame33eaf-btn-login:hover{background:rgba(222,184,135,.12);color:var(--frame33eaf-white);}
.frame33eaf-btn-register{
  background:linear-gradient(135deg,#C71585 0%,#E03A9E 60%,#DEB887 140%);
  color:#fff;
  box-shadow:0 6px 14px rgba(199,21,133,.45),inset 0 1px 0 rgba(255,255,255,.25);
  padding:0 14px;
}
.frame33eaf-btn-register:hover{filter:brightness(1.06);}
.frame33eaf-menu-toggle{
  width:36px;
  height:36px;
  border-radius:10px;
  background:rgba(222,184,135,.1);
  border:1px solid rgba(222,184,135,.3);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--frame33eaf-tan);
  transition:background .15s ease,transform .12s ease;
}
.frame33eaf-menu-toggle:active{transform:scale(.94);background:rgba(222,184,135,.22);}
.frame33eaf-menu-toggle svg{width:18px;height:18px;}

/* ---------- Side drawer menu ---------- */
.frame33eaf-scrim{
  position:fixed;
  inset:0;
  background:rgba(10,16,24,.66);
  backdrop-filter:blur(2px);
  opacity:0;
  visibility:hidden;
  transition:opacity .25s ease,visibility .25s ease;
  z-index:80;
}
.frame33eaf-scrim.frame33eaf-is-open{opacity:1;visibility:visible;}
.frame33eaf-drawer{
  position:fixed;
  top:0;
  right:0;
  height:100%;
  width:84%;
  max-width:330px;
  background:linear-gradient(180deg,#26364A 0%,#2E4057 60%,#3A2A26 100%);
  border-left:1px solid rgba(222,184,135,.22);
  box-shadow:-18px 0 40px rgba(0,0,0,.55);
  transform:translateX(110%);
  transition:transform .28s cubic-bezier(.4,0,.2,1);
  z-index:90;
  display:flex;
  flex-direction:column;
  padding:18px 16px calc(var(--frame33eaf-bottomnav-h) + 18px);
  overflow-y:auto;
}
.frame33eaf-drawer.frame33eaf-is-open{transform:translateX(0);}
.frame33eaf-drawer-head{
  display:flex;
  align-items:center;
  gap:10px;
  padding-bottom:14px;
  border-bottom:1px solid rgba(222,184,135,.18);
  margin-bottom:14px;
}
.frame33eaf-drawer-head .frame33eaf-logo{width:42px;height:42px;}
.frame33eaf-drawer-title{
  font-size:16px;
  font-weight:800;
  color:var(--frame33eaf-tan);
  text-transform:uppercase;
  letter-spacing:.4px;
}
.frame33eaf-drawer-title small{
  display:block;
  font-size:10px;
  color:var(--frame33eaf-text-dim);
  letter-spacing:1.6px;
  font-weight:500;
}
.frame33eaf-drawer-cta{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:14px;
}
.frame33eaf-drawer-cta .frame33eaf-btn{min-height:42px;font-size:13px;}
.frame33eaf-drawer-nav{display:flex;flex-direction:column;gap:2px;}
.frame33eaf-drawer-nav a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 12px;
  border-radius:10px;
  color:var(--frame33eaf-text);
  font-size:13.5px;
  font-weight:600;
  transition:background .15s ease,color .15s ease,padding-left .15s ease;
  border-left:3px solid transparent;
}
.frame33eaf-drawer-nav a:hover,.frame33eaf-drawer-nav a.frame33eaf-active{
  background:rgba(222,184,135,.12);
  color:var(--frame33eaf-white);
  border-left-color:var(--frame33eaf-magenta);
}
.frame33eaf-drawer-nav a svg{width:18px;height:18px;color:var(--frame33eaf-tan);flex:0 0 auto;}
.frame33eaf-drawer-section-title{
  font-size:10.5px;
  letter-spacing:1.8px;
  text-transform:uppercase;
  color:var(--frame33eaf-text-muted);
  margin:14px 6px 6px;
}

/* ---------- Hero carousel ---------- */
.frame33eaf-hero{
  position:relative;
  margin:14px 12px 4px;
  border-radius:var(--frame33eaf-radius-lg);
  overflow:hidden;
  box-shadow:var(--frame33eaf-shadow-deep);
  background:#1A2533;
}
.frame33eaf-hero-track{
  display:flex;
  transition:transform .42s cubic-bezier(.4,0,.2,1);
  will-change:transform;
}
.frame33eaf-hero-slide{
  flex:0 0 100%;
  position:relative;
  display:block;
}
.frame33eaf-hero-slide img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
.frame33eaf-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(20,30,42,.1) 0%,rgba(20,30,42,.35) 45%,rgba(20,30,42,.86) 100%);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:14px;
}
.frame33eaf-hero-eyebrow{
  font-size:9.5px;
  letter-spacing:2.2px;
  color:var(--frame33eaf-magenta-bright);
  text-transform:uppercase;
  font-weight:700;
  margin-bottom:4px;
}
.frame33eaf-hero-title{
  font-size:18px;
  font-weight:800;
  color:var(--frame33eaf-white);
  line-height:1.18;
  margin-bottom:5px;
  text-shadow:0 2px 10px rgba(0,0,0,.55);
}
.frame33eaf-hero-desc{
  font-size:11.5px;
  color:var(--frame33eaf-tan-soft);
  margin-bottom:9px;
  line-height:1.4;
}
.frame33eaf-hero-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:linear-gradient(135deg,#C71585,#E03A9E);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:8px 16px;
  border-radius:18px;
  align-self:flex-start;
  box-shadow:0 6px 14px rgba(199,21,133,.5);
  transition:transform .12s ease,filter .15s ease;
}
.frame33eaf-hero-cta:active{transform:translateY(1px);}
.frame33eaf-hero-dots{
  position:absolute;
  bottom:8px;
  right:12px;
  display:flex;
  gap:5px;
  z-index:3;
}
.frame33eaf-hero-dot{
  width:6px;
  height:6px;
  border-radius:50%;
  background:rgba(255,255,255,.4);
  transition:all .2s ease;
}
.frame33eaf-hero-dot.frame33eaf-active{
  background:var(--frame33eaf-magenta-bright);
  width:18px;
  border-radius:4px;
}

/* ---------- Page intro / title ---------- */
.frame33eaf-main{padding:0 12px;}
.frame33eaf-intro{
  margin:14px 0 6px;
  padding:14px;
  border-radius:var(--frame33eaf-radius);
  background:linear-gradient(135deg,rgba(111,78,55,.55) 0%,rgba(46,64,87,.65) 100%);
  border:1px solid rgba(222,184,135,.22);
}
.frame33eaf-h1{
  font-size:22px;
  font-weight:800;
  line-height:1.2;
  color:var(--frame33eaf-white);
  margin-bottom:8px;
  letter-spacing:.2px;
}
.frame33eaf-h1 em{color:var(--frame33eaf-magenta-bright);font-style:normal;}
.frame33eaf-lead{
  font-size:13.5px;
  color:var(--frame33eaf-text-dim);
  line-height:1.55;
}
.frame33eaf-intro-cta{
  display:flex;
  gap:8px;
  margin-top:12px;
  flex-wrap:wrap;
}
.frame33eaf-intro-cta .frame33eaf-btn{flex:1;min-width:120px;min-height:40px;}

/* ---------- Section heading ---------- */
.frame33eaf-section{margin:22px 0 6px;}
.frame33eaf-section-head{
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  padding-bottom:6px;
  border-bottom:1px solid rgba(222,184,135,.2);
}
.frame33eaf-section-bar{
  width:4px;
  height:18px;
  background:linear-gradient(180deg,#C71585,#DEB887);
  border-radius:2px;
}
.frame33eaf-h2{
  font-size:17px;
  font-weight:800;
  color:var(--frame33eaf-white);
  line-height:1.22;
  letter-spacing:.2px;
}
.frame33eaf-h3{
  font-size:14.5px;
  font-weight:700;
  color:var(--frame33eaf-tan);
  margin:12px 0 6px;
  letter-spacing:.2px;
}
.frame33eaf-section-meta{
  margin-left:auto;
  font-size:10.5px;
  color:var(--frame33eaf-text-muted);
  letter-spacing:.6px;
  text-transform:uppercase;
}

/* ---------- Game grid ---------- */
.frame33eaf-game-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
@media (min-width:360px){
  .frame33eaf-game-grid{gap:9px;}
}
@media (min-width:400px){
  .frame33eaf-game-grid{grid-template-columns:repeat(5,1fr);}
}
.frame33eaf-game{
  background:linear-gradient(160deg,#3A2A26 0%,#2E4057 100%);
  border-radius:12px;
  overflow:hidden;
  border:1px solid rgba(222,184,135,.16);
  position:relative;
  display:flex;
  flex-direction:column;
  transition:transform .12s ease,box-shadow .18s ease,border-color .18s ease;
  box-shadow:var(--frame33eaf-shadow-soft);
  text-align:center;
}
.frame33eaf-game:active{
  transform:translateY(2px) scale(.97);
  box-shadow:var(--frame33eaf-shadow-press);
  border-color:rgba(199,21,133,.6);
}
.frame33eaf-game-img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  background:linear-gradient(135deg,#243447,#3A2A26);
}
.frame33eaf-game-name{
  font-size:10px;
  color:var(--frame33eaf-text-dim);
  padding:5px 4px 6px;
  line-height:1.2;
  font-weight:600;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  background:rgba(28,42,57,.7);
}
.frame33eaf-game-tag{
  position:absolute;
  top:4px;
  left:4px;
  font-size:8px;
  font-weight:800;
  letter-spacing:.5px;
  background:linear-gradient(135deg,#C71585,#E03A9E);
  color:#fff;
  padding:2px 5px;
  border-radius:6px;
  text-transform:uppercase;
}
.frame33eaf-game-tag.frame33eaf-tag-hot{background:linear-gradient(135deg,#A0522D,#DEB887);}
.frame33eaf-game-tag.frame33eaf-tag-new{background:linear-gradient(135deg,#7BB37A,#3E8E41);}

/* ---------- Category chips ---------- */
.frame33eaf-chips{
  display:flex;
  gap:6px;
  overflow-x:auto;
  padding:4px 0 10px;
  margin:0 -12px 6px;
  padding-left:12px;
  padding-right:12px;
  scrollbar-width:none;
}
.frame33eaf-chips::-webkit-scrollbar{display:none;}
.frame33eaf-chip{
  flex:0 0 auto;
  padding:6px 12px;
  border-radius:16px;
  font-size:11.5px;
  font-weight:700;
  background:rgba(222,184,135,.1);
  border:1px solid rgba(222,184,135,.28);
  color:var(--frame33eaf-tan);
  letter-spacing:.4px;
  transition:background .15s ease,color .15s ease;
}
.frame33eaf-chip:hover{background:rgba(222,184,135,.2);color:#fff;}

/* ---------- Info modules (features, security, what is, checklist) ---------- */
.frame33eaf-module{
  background:linear-gradient(160deg,rgba(58,42,38,.55) 0%,rgba(46,64,87,.55) 100%);
  border:1px solid rgba(222,184,135,.18);
  border-radius:var(--frame33eaf-radius);
  padding:14px;
  margin-top:12px;
}
.frame33eaf-module p{
  color:var(--frame33eaf-text-dim);
  font-size:13px;
  line-height:1.6;
  margin-bottom:8px;
}
.frame33eaf-module p:last-child{margin-bottom:0;}
.frame33eaf-module strong{color:var(--frame33eaf-tan);}
.frame33eaf-module a{color:var(--frame33eaf-magenta-bright);text-decoration:underline;text-decoration-color:rgba(224,58,158,.4);text-underline-offset:3px;}
.frame33eaf-module a:hover{color:#fff;text-decoration-color:var(--frame33eaf-magenta-bright);}

/* Feature list */
.frame33eaf-feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:10px;
}
.frame33eaf-feature{
  background:rgba(28,42,57,.55);
  border:1px solid rgba(222,184,135,.14);
  border-radius:10px;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:5px;
}
.frame33eaf-feature-ic{
  width:30px;
  height:30px;
  border-radius:8px;
  background:linear-gradient(135deg,#C71585,#6F4E37);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
}
.frame33eaf-feature-ic svg{width:16px;height:16px;}
.frame33eaf-feature-h{font-size:12.5px;font-weight:700;color:var(--frame33eaf-tan);line-height:1.25;}
.frame33eaf-feature-p{font-size:11px;color:var(--frame33eaf-text-dim);line-height:1.4;}

/* Security cards */
.frame33eaf-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-top:10px;
}
.frame33eaf-card-mini{
  background:rgba(28,42,57,.6);
  border-left:3px solid var(--frame33eaf-magenta);
  border-radius:8px;
  padding:9px 10px;
}
.frame33eaf-card-mini-h{font-size:12px;font-weight:700;color:var(--frame33eaf-tan);margin-bottom:3px;}
.frame33eaf-card-mini-p{font-size:11px;color:var(--frame33eaf-text-dim);line-height:1.4;}

/* Checklist */
.frame33eaf-checklist{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:7px;
}
.frame33eaf-check{
  display:flex;
  align-items:flex-start;
  gap:8px;
  background:rgba(28,42,57,.5);
  padding:9px 11px;
  border-radius:10px;
  border:1px solid rgba(222,184,135,.12);
}
.frame33eaf-check-ic{
  flex:0 0 auto;
  width:20px;
  height:20px;
  border-radius:50%;
  background:linear-gradient(135deg,#7BB37A,#3E8E41);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  margin-top:1px;
}
.frame33eaf-check-ic svg{width:12px;height:12px;}
.frame33eaf-check-t{font-size:12px;color:var(--frame33eaf-text);line-height:1.45;}
.frame33eaf-check-t b{color:var(--frame33eaf-tan);}

/* ---------- Promo strip ---------- */
.frame33eaf-promo-strip{
  margin:18px 12px 4px;
  background:linear-gradient(135deg,#6F4E37 0%,#A0522D 60%,#C71585 140%);
  border-radius:var(--frame33eaf-radius);
  padding:14px;
  display:flex;
  align-items:center;
  gap:12px;
  box-shadow:var(--frame33eaf-shadow-deep);
  position:relative;
  overflow:hidden;
}
.frame33eaf-promo-strip::before{
  content:"";
  position:absolute;
  top:-30px;right:-30px;
  width:120px;height:120px;
  background:radial-gradient(circle,rgba(255,255,255,.16),transparent 70%);
}
.frame33eaf-promo-strip-ic{
  width:44px;height:44px;border-radius:12px;
  background:rgba(255,255,255,.16);
  display:flex;align-items:center;justify-content:center;color:#fff;
  flex:0 0 auto;
}
.frame33eaf-promo-strip-ic svg{width:24px;height:24px;}
.frame33eaf-promo-strip-t{
  font-size:13.5px;font-weight:800;color:#fff;line-height:1.25;margin-bottom:2px;
}
.frame33eaf-promo-strip-s{font-size:11px;color:rgba(255,255,255,.82);line-height:1.4;}
.frame33eaf-promo-strip-a{
  margin-left:auto;flex:0 0 auto;
  background:#fff;color:#A0522D;font-weight:800;font-size:12px;
  padding:8px 14px;border-radius:18px;
  transition:transform .12s ease;
}
.frame33eaf-promo-strip-a:active{transform:scale(.96);}

/* ---------- Stats row ---------- */
.frame33eaf-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
  margin:14px 0 4px;
}
.frame33eaf-stat{
  background:rgba(28,42,57,.55);
  border:1px solid rgba(222,184,135,.16);
  border-radius:10px;
  padding:10px 6px;
  text-align:center;
}
.frame33eaf-stat-n{font-size:16px;font-weight:800;color:var(--frame33eaf-tan);line-height:1;}
.frame33eaf-stat-l{font-size:10px;color:var(--frame33eaf-text-dim);margin-top:3px;letter-spacing:.3px;}

/* ---------- FAQ ---------- */
.frame33eaf-faq{margin-top:10px;display:flex;flex-direction:column;gap:8px;}
.frame33eaf-faq-item{
  background:rgba(28,42,57,.5);
  border:1px solid rgba(222,184,135,.14);
  border-radius:10px;
  overflow:hidden;
}
.frame33eaf-faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  padding:11px 12px;
  font-size:12.5px;
  font-weight:700;
  color:var(--frame33eaf-tan);
  text-align:left;
}
.frame33eaf-faq-q .frame33eaf-faq-ic{
  flex:0 0 auto;
  width:18px;height:18px;
  display:flex;align-items:center;justify-content:center;
  color:var(--frame33eaf-magenta-bright);
  transition:transform .2s ease;
}
.frame33eaf-faq-q .frame33eaf-faq-ic svg{width:14px;height:14px;}
.frame33eaf-faq-item.frame33eaf-open .frame33eaf-faq-ic{transform:rotate(45deg);}
.frame33eaf-faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}
.frame33eaf-faq-item.frame33eaf-open .frame33eaf-faq-a{max-height:240px;}
.frame33eaf-faq-a p{
  padding:0 12px 12px;
  font-size:12px;
  color:var(--frame33eaf-text-dim);
  line-height:1.55;
}

/* ---------- Extended footer ---------- */
.frame33eaf-ext-footer{
  margin:24px 12px 8px;
  background:linear-gradient(180deg,#1F2E3F 0%,#243447 100%);
  border:1px solid rgba(222,184,135,.16);
  border-radius:var(--frame33eaf-radius);
  overflow:hidden;
}
.frame33eaf-ext-block{padding:14px;border-bottom:1px solid rgba(222,184,135,.1);}
.frame33eaf-ext-block:last-child{border-bottom:0;}
.frame33eaf-ext-h{
  display:flex;align-items:center;gap:8px;
  font-size:10.5px;letter-spacing:1.8px;text-transform:uppercase;
  color:var(--frame33eaf-tan);font-weight:800;
  margin-bottom:10px;
}
.frame33eaf-ext-h-ic{
  width:18px;height:18px;border-radius:5px;
  background:linear-gradient(135deg,#C71585,#DEB887);
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.frame33eaf-ext-h-ic svg{width:11px;height:11px;}
.frame33eaf-ext-brand-row{display:flex;gap:10px;align-items:flex-start;}
.frame33eaf-ext-brand-row .frame33eaf-logo{width:38px;height:38px;flex:0 0 auto;}
.frame33eaf-ext-brand-text{font-size:12px;color:var(--frame33eaf-text-dim);line-height:1.55;}
.frame33eaf-ext-brand-text b{color:var(--frame33eaf-tan);}

.frame33eaf-ext-promo-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
}
.frame33eaf-ext-promo{
  display:flex;align-items:center;gap:8px;
  padding:10px;border-radius:10px;
  background:rgba(199,21,133,.16);
  border:1px solid rgba(199,21,133,.35);
  transition:transform .12s ease,background .15s ease;
}
.frame33eaf-ext-promo:active{transform:scale(.97);background:rgba(199,21,133,.28);}
.frame33eaf-ext-promo-ic{
  width:24px;height:24px;border-radius:6px;flex:0 0 auto;
  background:linear-gradient(135deg,#C71585,#E03A9E);
  display:flex;align-items:center;justify-content:center;color:#fff;
}
.frame33eaf-ext-promo-ic svg{width:13px;height:13px;}
.frame33eaf-ext-promo-t{font-size:11.5px;font-weight:700;color:#fff;line-height:1.2;}
.frame33eaf-ext-promo-s{font-size:9.5px;color:var(--frame33eaf-tan-soft);margin-top:1px;}

.frame33eaf-ext-directory{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4px 10px;
}
.frame33eaf-ext-directory a{
  font-size:11.5px;
  color:var(--frame33eaf-text-dim);
  padding:5px 0;
  display:flex;align-items:center;gap:6px;
  border-bottom:1px dashed rgba(222,184,135,.1);
  transition:color .15s ease;
}
.frame33eaf-ext-directory a::before{
  content:"";width:4px;height:4px;border-radius:50%;
  background:var(--frame33eaf-magenta-bright);flex:0 0 auto;
}
.frame33eaf-ext-directory a:hover{color:var(--frame33eaf-white);}

.frame33eaf-ext-disclaimer{
  font-size:10.5px;
  color:var(--frame33eaf-text-muted);
  line-height:1.55;
  padding:10px 12px;
  background:rgba(0,0,0,.18);
  border-radius:8px;
}

/* ---------- Bottom copyright ---------- */
.frame33eaf-bottom-copy{
  text-align:center;
  font-size:10.5px;
  color:var(--frame33eaf-text-muted);
  padding:6px 12px 4px;
  letter-spacing:.3px;
}

/* ---------- Bottom navigation (brand emphasis band) ---------- */
.frame33eaf-bottomnav{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:0;
  width:100%;
  max-width:var(--frame33eaf-maxw);
  height:var(--frame33eaf-bottomnav-h);
  background:linear-gradient(180deg,rgba(31,46,63,.95) 0%,#1A2533 100%);
  backdrop-filter:blur(8px);
  border-top:1px solid rgba(222,184,135,.22);
  display:grid;
  grid-template-columns:repeat(5,1fr);
  z-index:70;
  box-shadow:0 -8px 24px rgba(0,0,0,.45);
}
.frame33eaf-bottomnav::before{
  content:"";
  position:absolute;
  top:-1px;left:50%;transform:translateX(-50%);
  width:60%;height:2px;
  background:linear-gradient(90deg,transparent,#C71585 50%,transparent);
  opacity:.7;
}
.frame33eaf-nav-btn{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:3px;
  padding:6px 2px 4px;
  color:var(--frame33eaf-text-dim);
  font-size:9.5px;
  font-weight:600;
  letter-spacing:.3px;
  position:relative;
  transition:color .15s ease;
}
.frame33eaf-nav-btn svg{width:20px;height:20px;transition:transform .15s ease;}
.frame33eaf-nav-btn:active{transform:scale(.92);}
.frame33eaf-nav-btn:active svg{transform:translateY(1px);}
.frame33eaf-nav-btn span{line-height:1;}
.frame33eaf-nav-btn.frame33eaf-active{
  color:var(--frame33eaf-white);
  background:linear-gradient(180deg,rgba(199,21,133,.22) 0%,rgba(199,21,133,0) 100%);
}
.frame33eaf-nav-btn.frame33eaf-active svg{
  color:var(--frame33eaf-magenta-bright);
  filter:drop-shadow(0 0 6px rgba(224,58,158,.55));
}
.frame33eaf-nav-btn.frame33eaf-active::after{
  content:"";
  position:absolute;
  bottom:2px;left:50%;transform:translateX(-50%);
  width:18px;height:2px;border-radius:2px;
  background:var(--frame33eaf-magenta-bright);
}
.frame33eaf-nav-btn-promo{
  color:var(--frame33eaf-tan);
}
.frame33eaf-nav-btn-promo svg{color:var(--frame33eaf-tan);}

/* ---------- Top scroll-to-top button ---------- */
.frame33eaf-to-top{
  position:fixed;
  right:14px;
  bottom:calc(var(--frame33eaf-bottomnav-h) + 14px);
  width:40px;height:40px;
  border-radius:50%;
  background:linear-gradient(135deg,#C71585,#E03A9E);
  color:#fff;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 8px 18px rgba(199,21,133,.5);
  opacity:0;visibility:hidden;
  transform:translateY(8px);
  transition:all .25s ease;
  z-index:65;
}
.frame33eaf-to-top.frame33eaf-show{opacity:1;visibility:visible;transform:translateY(0);}
.frame33eaf-to-top svg{width:18px;height:18px;}

/* ---------- Utility ---------- */
.frame33eaf-hide{display:none !important;}
.frame33eaf-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;
}

/* ---------- Safe area ---------- */
@supports (padding:max(0px)){
  .frame33eaf-bottomnav{
    padding-bottom:env(safe-area-inset-bottom,0);
    height:calc(var(--frame33eaf-bottomnav-h) + env(safe-area-inset-bottom,0));
  }
  .frame33eaf-canvas{
    padding-bottom:calc(var(--frame33eaf-bottomnav-h) + env(safe-area-inset-bottom,0) + 16px);
  }
}
