/* =========================================================
   Game Zone (game-zone.cfd) - Mobile-First Stylesheet
   Prefix : vd9b-
   Palette: #87CEFA / #141414 / #40E0D0 / #F0F0F0 / #5D5D5D / #AFEEEE
   ========================================================= */

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

:root{
  --vd9b-bg:        #0a0e14;
  --vd9b-bg-2:      #141414;
  --vd9b-surface:   #1a2230;
  --vd9b-surface-2: #232d3f;
  --vd9b-primary:   #87CEFA;
  --vd9b-accent:    #40E0D0;
  --vd9b-mint:      #AFEEEE;
  --vd9b-text:      #F0F0F0;
  --vd9b-muted:     #5D5D5D;
  --vd9b-gold:      #f5c451;
  --vd9b-grad: linear-gradient(135deg,#87CEFA 0%,#40E0D0 60%,#AFEEEE 100%);
  --vd9b-radius:    14px;
  --vd9b-shadow:    0 6px 22px rgba(0,0,0,.45);
  --vd9b-header-h:  58px;
  --vd9b-nav-h:     64px;
}

html,body{
  background: var(--vd9b-bg);
  color: var(--vd9b-text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body{
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background:
    radial-gradient(900px 480px at 50% -120px, rgba(135,206,250,.20), transparent 60%),
    radial-gradient(700px 400px at 100% 8%, rgba(64,224,208,.12), transparent 60%),
    var(--vd9b-bg);
  padding-bottom: calc(var(--vd9b-nav-h) + 18px);
  overflow-x: hidden;
}

a { color: var(--vd9b-mint); text-decoration: none; }
a:hover, a:focus { color: var(--vd9b-primary); }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- Header ---------- */
.vd9b-header{
  position: sticky;
  top: 0;
  z-index: 60;
  height: var(--vd9b-header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  background: rgba(10,14,20,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(135,206,250,.18);
}

.vd9b-brand{
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.vd9b-brand img{
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(135,206,250,.35), var(--vd9b-shadow);
}
.vd9b-brand-name{
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .3px;
  background: var(--vd9b-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.vd9b-brand-name small{
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: var(--vd9b-muted);
  -webkit-text-fill-color: var(--vd9b-muted);
}

.vd9b-header-actions{
  display: flex;
  align-items: center;
  gap: 7px;
}
.vd9b-btn{
  border: 0;
  cursor: pointer;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  transition: transform .15s ease, box-shadow .15s ease, opacity .2s;
  line-height: 1;
  white-space: nowrap;
}
.vd9b-btn:active { transform: scale(.95); }
.vd9b-btn-ghost{
  background: rgba(135,206,250,.10);
  color: var(--vd9b-text);
  border: 1px solid rgba(135,206,250,.35);
}
.vd9b-btn-primary{
  background: var(--vd9b-grad);
  color: #0a0e14;
  box-shadow: 0 4px 14px rgba(64,224,208,.35);
}
.vd9b-icon-btn{
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(64,224,208,.10);
  border: 1px solid rgba(64,224,208,.25);
  color: var(--vd9b-accent);
  cursor: pointer;
}
.vd9b-icon-btn svg{ width: 18px; height: 18px; display:block; }

/* ---------- Mobile Slide Menu ---------- */
.vd9b-menu-backdrop{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s;
  z-index: 90;
}
.vd9b-menu-backdrop.vd9b-open{ opacity: 1; visibility: visible; }
.vd9b-side-menu{
  position: fixed; top: 0; right: -82%;
  width: 78%; max-width: 340px;
  height: 100%;
  background: var(--vd9b-bg-2);
  z-index: 100;
  padding: 18px 16px calc(var(--vd9b-nav-h) + 18px);
  overflow-y: auto;
  transition: right .28s ease;
  border-left: 1px solid rgba(135,206,250,.18);
}
.vd9b-side-menu.vd9b-open{ right: 0; }
.vd9b-menu-head{
  display:flex; align-items:center; justify-content: space-between;
  margin-bottom: 14px;
}
.vd9b-menu-head img{ width: 32px; height: 32px; border-radius: 8px; }
.vd9b-menu-title{ font-weight: 800; font-size: 15px; }
.vd9b-menu-close{
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(255,255,255,.06);
  color: var(--vd9b-text); border: 0; cursor: pointer;
  font-size: 18px; line-height: 1;
}
.vd9b-menu-section{
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--vd9b-muted); margin: 14px 4px 8px;
}
.vd9b-menu-list li a{
  display:flex; align-items:center; gap: 10px;
  padding: 11px 10px;
  border-radius: 10px;
  color: var(--vd9b-text);
  font-size: 14px;
  border: 1px solid transparent;
}
.vd9b-menu-list li a:hover{
  background: rgba(135,206,250,.08);
  border-color: rgba(135,206,250,.22);
}
.vd9b-menu-list li a span.dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--vd9b-accent);
}
.vd9b-menu-cta{
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
}

/* ---------- Hero / Banner ---------- */
.vd9b-hero{
  margin: 12px 12px 6px;
  border-radius: 18px;
  padding: 18px 16px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #16203a 0%, #0e1a30 60%, #1a2a3f 100%);
  border: 1px solid rgba(135,206,250,.22);
  box-shadow: var(--vd9b-shadow);
}
.vd9b-hero::before{
  content:"";
  position:absolute; top:-60px; right:-40px;
  width: 220px; height: 220px; border-radius:50%;
  background: radial-gradient(circle, rgba(64,224,208,.35), transparent 65%);
  filter: blur(2px);
}
.vd9b-hero-tag{
  display:inline-block;
  font-size: 10px; letter-spacing: 1.4px; text-transform: uppercase;
  color: #0a0e14; font-weight: 800;
  background: var(--vd9b-grad);
  padding: 4px 10px; border-radius: 999px;
  margin-bottom: 10px;
}
.vd9b-hero h1{
  font-size: 22px; line-height: 1.25; font-weight: 800;
  margin-bottom: 8px;
}
.vd9b-hero h1 em{
  font-style: normal;
  background: var(--vd9b-grad);
  -webkit-background-clip:text; background-clip:text; color: transparent;
}
.vd9b-hero p{
  font-size: 13px; color: #c7d2e0; margin-bottom: 14px; max-width: 92%;
}
.vd9b-hero-cta{ display:flex; gap: 8px; flex-wrap: wrap; }
.vd9b-hero-stats{
  margin-top: 14px;
  display:grid; grid-template-columns: repeat(3,1fr); gap: 8px;
}
.vd9b-hero-stat{
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(135,206,250,.18);
  border-radius: 12px;
  padding: 8px 6px;
  text-align:center;
}
.vd9b-hero-stat b{
  display:block; font-size: 16px; color: var(--vd9b-mint);
}
.vd9b-hero-stat span{ font-size: 10px; color: var(--vd9b-muted); }

/* ---------- Marquee ---------- */
.vd9b-marquee{
  margin: 10px 12px;
  background: rgba(64,224,208,.08);
  border: 1px dashed rgba(64,224,208,.3);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  color: var(--vd9b-mint);
  overflow: hidden;
  white-space: nowrap;
}
.vd9b-marquee b{ color: var(--vd9b-gold); }

/* ---------- Section / Title ---------- */
.vd9b-section{
  margin: 18px 12px 6px;
}
.vd9b-section-head{
  display:flex; align-items:center; justify-content: space-between;
  margin-bottom: 10px;
}
.vd9b-section-head h2{
  font-size: 16px; font-weight: 800;
  display:flex; align-items:center; gap: 8px;
}
.vd9b-section-head h2::before{
  content:""; width: 4px; height: 16px; border-radius: 2px;
  background: var(--vd9b-grad);
  display:inline-block;
}
.vd9b-section-head a{ font-size: 12px; color: var(--vd9b-mint); }

/* ---------- Category Chips ---------- */
.vd9b-chips{
  display:flex; gap: 7px; overflow-x:auto;
  padding: 4px 12px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.vd9b-chips::-webkit-scrollbar{ display:none; }
.vd9b-chip{
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(135,206,250,.18);
  color: var(--vd9b-text);
  cursor: pointer;
  white-space: nowrap;
  transition: all .18s;
}
.vd9b-chip.vd9b-active,
.vd9b-chip:hover{
  background: var(--vd9b-grad);
  color: #0a0e14;
  border-color: transparent;
}

/* ---------- Game Grid ---------- */
.vd9b-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 4px 12px;
}
.vd9b-card{
  background: var(--vd9b-surface);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(135,206,250,.10);
  transition: transform .18s, box-shadow .18s, border-color .18s;
  cursor: pointer;
}
.vd9b-card:hover, .vd9b-card:focus-within{
  transform: translateY(-2px);
  border-color: rgba(64,224,208,.55);
  box-shadow: 0 8px 20px rgba(0,0,0,.5);
}
.vd9b-card .vd9b-card-img{
  position: relative;
  aspect-ratio: 1 / 1;
  background: #0e1422;
  overflow: hidden;
}
.vd9b-card .vd9b-card-img img{
  width: 100%; height: 100%; object-fit: cover;
}
.vd9b-card .vd9b-card-tag{
  position:absolute; top: 5px; left: 5px;
  font-size: 9px; font-weight: 700; letter-spacing:.4px;
  padding: 2px 6px; border-radius: 6px;
  background: rgba(10,14,20,.78);
  color: var(--vd9b-mint);
  border: 1px solid rgba(64,224,208,.3);
}
.vd9b-card .vd9b-card-tag.vd9b-hot{
  color: #0a0e14;
  background: var(--vd9b-gold);
  border-color: transparent;
}
.vd9b-card .vd9b-card-play{
  position:absolute; inset:0;
  display:flex; align-items:center; justify-content:center;
  opacity: 0; transition: opacity .18s;
  background: linear-gradient(180deg, rgba(10,14,20,0) 30%, rgba(10,14,20,.78) 100%);
}
.vd9b-card:hover .vd9b-card-play{ opacity: 1; }
.vd9b-card .vd9b-card-play span{
  background: var(--vd9b-grad); color:#0a0e14;
  font-weight: 700; font-size: 11px;
  padding: 6px 12px; border-radius: 999px;
}
.vd9b-card-title{
  font-size: 11px;
  text-align: center;
  padding: 6px 4px 8px;
  color: var(--vd9b-text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* Grid responsive: 5 columns on slightly wider phones */
@media (min-width: 375px){
  .vd9b-grid{ grid-template-columns: repeat(5, 1fr); gap: 9px; }
}

/* ---------- Promo strip ---------- */
.vd9b-promo-row{
  display:grid; grid-template-columns: 1fr 1fr; gap: 9px;
  padding: 4px 12px;
}
.vd9b-promo-card{
  border-radius: 14px;
  padding: 14px 12px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(135,206,250,.2);
  background: linear-gradient(135deg,#15243b,#0e1726);
  min-height: 88px;
  display:flex; flex-direction:column; justify-content: space-between;
}
.vd9b-promo-card b{ font-size: 14px; color: var(--vd9b-mint); }
.vd9b-promo-card span{ font-size: 11px; color: #b9c4d4; }
.vd9b-promo-card .vd9b-more{
  align-self: flex-start;
  margin-top: 6px;
  font-size: 11px; color: var(--vd9b-primary); font-weight: 700;
}
.vd9b-promo-card::after{
  content:""; position:absolute; right:-20px; bottom:-20px;
  width: 80px; height: 80px; border-radius:50%;
  background: radial-gradient(circle, rgba(64,224,208,.3), transparent 60%);
}

/* ---------- Feature list (SEO text + internal links) ---------- */
.vd9b-feature{
  margin: 16px 12px;
  background: var(--vd9b-surface);
  border-radius: 14px;
  padding: 16px;
  border: 1px solid rgba(135,206,250,.12);
}
.vd9b-feature h3{
  font-size: 15px; margin-bottom: 8px; color: var(--vd9b-mint);
  display:flex; align-items:center; gap:8px;
}
.vd9b-feature p{ font-size: 13px; color: #c7d2e0; margin-bottom: 10px; }
.vd9b-feature ul{ display:grid; gap: 8px; margin-top:6px; }
.vd9b-feature ul li{
  font-size: 13px; color: #c7d2e0;
  padding-left: 18px; position: relative;
}
.vd9b-feature ul li::before{
  content:"›"; position:absolute; left:4px; top:-2px;
  color: var(--vd9b-accent); font-weight: 800;
}
.vd9b-feature a.inline-link{ color: var(--vd9b-primary); border-bottom: 1px dashed rgba(135,206,250,.5); }

/* ---------- Steps ---------- */
.vd9b-steps{
  display:grid; gap:10px; padding: 0 12px; margin-top: 4px;
}
.vd9b-step{
  display:flex; gap:12px; align-items:flex-start;
  background: var(--vd9b-surface);
  border: 1px solid rgba(135,206,250,.12);
  border-radius: 12px; padding: 12px;
}
.vd9b-step b{
  flex: 0 0 28px; height: 28px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--vd9b-grad); color:#0a0e14; font-size: 13px;
}
.vd9b-step div h4{ font-size: 13px; margin-bottom: 3px; color: var(--vd9b-text); }
.vd9b-step div p{ font-size: 12px; color: #b9c4d4; }

/* ---------- SEO Article block ---------- */
.vd9b-article{
  margin: 16px 12px;
  background: var(--vd9b-surface);
  border: 1px solid rgba(135,206,250,.10);
  border-radius: 14px;
  padding: 16px;
}
.vd9b-article h2{
  font-size: 17px; font-weight: 800; margin-bottom: 10px;
  background: var(--vd9b-grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.vd9b-article h3{
  font-size: 14px; color: var(--vd9b-mint);
  margin: 14px 0 6px;
}
.vd9b-article p{
  font-size: 13px; color: #c7d2e0; margin-bottom: 10px;
}
.vd9b-article p a{ color: var(--vd9b-primary); border-bottom: 1px dashed rgba(135,206,250,.45); }

/* ---------- FAQ ---------- */
.vd9b-faq{ display:grid; gap:8px; }
.vd9b-faq details{
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(135,206,250,.14);
  border-radius: 10px;
  padding: 10px 12px;
}
.vd9b-faq summary{
  font-size: 13px; font-weight: 700; cursor: pointer;
  list-style: none;
  display:flex; justify-content: space-between; align-items: center;
  color: var(--vd9b-text);
}
.vd9b-faq summary::-webkit-details-marker{ display:none; }
.vd9b-faq summary::after{
  content:"+"; color: var(--vd9b-accent); font-weight: 800; font-size: 16px;
}
.vd9b-faq details[open] summary::after{ content:"–"; }
.vd9b-faq p{ font-size: 12px; color:#b9c4d4; margin-top: 8px; }

/* ---------- Footer ---------- */
.vd9b-footer{
  margin: 20px 12px 0;
  background: var(--vd9b-bg-2);
  border: 1px solid rgba(135,206,250,.10);
  border-radius: 14px 14px 0 0;
  padding: 18px 14px 14px;
}
.vd9b-footer-top{
  display:flex; align-items:center; gap: 10px; margin-bottom: 12px;
}
.vd9b-footer-top img{ width: 30px; height: 30px; border-radius: 8px; }
.vd9b-footer-top b{ font-size: 14px; color: var(--vd9b-text); }
.vd9b-footer-cols{
  display:grid; grid-template-columns: 1fr 1fr; gap: 14px;
  margin-bottom: 12px;
}
.vd9b-footer-cols h4{
  font-size: 12px; letter-spacing:1px; text-transform: uppercase;
  color: var(--vd9b-muted); margin-bottom: 6px;
}
.vd9b-footer-cols a{
  display:block; font-size: 12px; color: #c7d2e0;
  padding: 3px 0;
}
.vd9b-footer-cols a:hover{ color: var(--vd9b-primary); }
.vd9b-footer-desc{
  font-size: 11px; color: var(--vd9b-muted); line-height: 1.5;
  margin-bottom: 10px;
}
.vd9b-footer-bottom{
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 10px;
  font-size: 11px;
  color: var(--vd9b-muted);
  display:flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 4px;
}
.vd9b-18plus{
  display:inline-flex; align-items:center; justify-content:center;
  width: 22px; height: 22px; border-radius:50%;
  border: 1px solid var(--vd9b-muted); color: var(--vd9b-muted);
  font-weight: 800; font-size: 11px; margin-right: 6px;
}

/* ---------- Mobile Bottom Nav ---------- */
.vd9b-bottom-nav{
  position: fixed;
  left: 50%; transform: translateX(-50%);
  bottom: 0;
  width: 100%; max-width: 430px;
  height: var(--vd9b-nav-h);
  background: rgba(10,14,20,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(135,206,250,.20);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 80;
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.vd9b-nav-item{
  display:flex; flex-direction: column;
  align-items:center; justify-content:center;
  gap: 3px;
  color: var(--vd9b-muted);
  font-size: 10px;
  cursor: pointer;
  background: none;
  border: 0;
  position: relative;
  transition: color .18s;
}
.vd9b-nav-item svg{ width: 22px; height: 22px; }
.vd9b-nav-item:hover{ color: var(--vd9b-text); }
.vd9b-nav-item.vd9b-active{ color: var(--vd9b-accent); }
.vd9b-nav-item.vd9b-active::before{
  content:""; position:absolute; top: 0;
  width: 26px; height: 3px; border-radius: 0 0 4px 4px;
  background: var(--vd9b-grad);
}
.vd9b-nav-item.vd9b-promote{
  color: #0a0e14;
}
.vd9b-nav-item.vd9b-promote .vd9b-nav-bubble{
  background: var(--vd9b-grad);
  width: 38px; height: 38px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: 0 4px 14px rgba(64,224,208,.45);
  margin-top: -14px;
  border: 3px solid #0a0e14;
}
.vd9b-nav-item.vd9b-promote .vd9b-nav-bubble svg{ width: 20px; height: 20px; }
.vd9b-nav-item.vd9b-promote span{ font-weight: 700; }

/* ---------- Utility ---------- */
.vd9b-container{ padding: 0 12px; }
.vd9b-text-muted{ color: var(--vd9b-muted); }
.vd9b-hide{ display:none !important; }

/* Desktop guard: keep mobile canvas centered */
@media (min-width: 431px){
  body{
    border-left: 1px solid rgba(135,206,250,.08);
    border-right: 1px solid rgba(135,206,250,.08);
    box-shadow: 0 0 40px rgba(0,0,0,.5);
  }
}

/* ---------- Part one additions ---------- */
.vd9b-carousel{margin:12px;position:relative;border-radius:18px;overflow:hidden;border:1px solid rgba(135,206,250,.28);box-shadow:var(--vd9b-shadow);background:#101a2a}
.vd9b-carousel-track{display:flex;transition:transform .45s ease}
.vd9b-slide{min-width:100%;position:relative;aspect-ratio:16/7;background:#101a2a;cursor:pointer}
.vd9b-slide img{width:100%;height:100%;object-fit:cover;opacity:.82}
.vd9b-slide-copy{position:absolute;inset:auto 14px 12px;color:#fff;text-shadow:0 2px 8px #000}
.vd9b-slide-copy strong{display:block;font-size:16px;line-height:1.2}
.vd9b-slide-copy span{font-size:11px;color:var(--vd9b-mint)}
.vd9b-carousel-dots{position:absolute;right:12px;bottom:12px;display:flex;gap:5px}
.vd9b-carousel-dots button{width:7px;height:7px;padding:0;border:0;border-radius:50%;background:rgba(240,240,240,.45)}
.vd9b-carousel-dots button.vd9b-active{background:var(--vd9b-accent);transform:scale(1.35)}
.vd9b-answer{margin:12px;padding:13px 15px;border-left:3px solid var(--vd9b-accent);background:rgba(64,224,208,.08);border-radius:0 12px 12px 0;color:#d9f7f3;font-size:13px}
.vd9b-page-hero{margin:12px;padding:20px 16px;border-radius:18px;background:linear-gradient(140deg,#172b43,#111a28);border:1px solid rgba(135,206,250,.25)}
.vd9b-page-hero h1{font-size:22px;line-height:1.2;margin-bottom:8px;color:#fff}
.vd9b-page-hero p{color:#c7d2e0;font-size:13px}
.vd9b-content{margin:12px;padding:16px;border:1px solid rgba(135,206,250,.13);border-radius:15px;background:rgba(26,34,48,.9)}
.vd9b-content h2{font-size:17px;line-height:1.3;margin:4px 0 9px;color:var(--vd9b-mint)}
.vd9b-content h3{font-size:14px;color:var(--vd9b-primary);margin:15px 0 5px}
.vd9b-content p{font-size:13px;color:#c7d2e0;margin:0 0 11px}
.vd9b-content ul{display:grid;gap:8px;margin:8px 0 13px}
.vd9b-content li{font-size:13px;color:#c7d2e0;padding-left:15px;position:relative}
.vd9b-content li::before{content:'•';position:absolute;left:0;color:var(--vd9b-accent);font-weight:900}
.vd9b-content a{color:var(--vd9b-primary);text-decoration:underline;text-decoration-color:rgba(135,206,250,.45);text-underline-offset:2px}
.vd9b-compare{display:grid;grid-template-columns:repeat(2,1fr);gap:8px;margin:10px 0 14px}
.vd9b-compare div{padding:11px;border-radius:11px;background:#111925;border:1px solid rgba(135,206,250,.12)}
.vd9b-compare b{display:block;color:var(--vd9b-mint);font-size:12px;margin-bottom:4px}
.vd9b-compare span{font-size:11px;color:#b9c4d4}
.vd9b-action{display:inline-flex;align-items:center;justify-content:center;min-height:44px;margin:3px 4px 6px 0;padding:9px 14px;border-radius:9px;font-size:12px;font-weight:800;background:var(--vd9b-grad);color:#0a0e14!important;text-decoration:none!important}
.vd9b-action-alt{background:rgba(135,206,250,.1);color:var(--vd9b-text)!important;border:1px solid rgba(135,206,250,.28)}
.vd9b-directory{margin:12px;padding:15px;border-radius:15px;background:#141b27;border:1px solid rgba(64,224,208,.16)}
.vd9b-directory h2{font-size:16px;color:var(--vd9b-mint);margin-bottom:8px}
.vd9b-directory-list{display:flex;flex-wrap:wrap;gap:6px}
.vd9b-directory-list a{padding:8px 9px;border-radius:8px;background:rgba(135,206,250,.08);font-size:11px;color:#d8eaf2}
.vd9b-help-callout{padding:12px;border-radius:10px;background:rgba(245,196,81,.08);border:1px solid rgba(245,196,81,.25);color:#f5e7bd;font-size:12px;margin:10px 0}
@media (max-width:360px){.vd9b-grid{gap:6px}.vd9b-card-title{font-size:10px}.vd9b-slide-copy strong{font-size:14px}.vd9b-content{padding:13px}}

