:root{
  --bg:#07101b;
  --panel:#0d1a2d;
  --text:#e6eefc;
  --muted:#9eb2ce;
  --line:rgba(136,176,255,.15);
  --blue:#56a6ff;
  --blue-2:#2f7bf0;
  --pink:#ff5fa6;
  --cyan:#62d9ff;
  --gold:#ffd76d;
  --shadow:0 12px 34px rgba(23,66,160,.18),0 0 0 1px rgba(118,171,255,.08);
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  min-height:100vh;color:var(--text);font:16px/1.55 Inter,Segoe UI,Arial,sans-serif;
  background:
    radial-gradient(circle at 15% 0%,rgba(86,166,255,.24),transparent 28%),
    radial-gradient(circle at 85% 0%,rgba(255,95,166,.15),transparent 26%),
    linear-gradient(180deg,#08101a 0%,#07101b 100%);
  overflow-x:hidden
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
code{padding:.15rem .4rem;border-radius:.4rem;background:rgba(255,255,255,.06);color:#bfe7ff}

.bg-grid{
  position:fixed;inset:auto 0 0 0;height:40vh;pointer-events:none;opacity:.42;
  background:
    linear-gradient(to top,rgba(98,217,255,.24),rgba(98,217,255,0) 60%),
    repeating-linear-gradient(90deg,transparent 0 58px,rgba(98,217,255,.10) 58px 60px),
    repeating-linear-gradient(0deg,transparent 0 40px,rgba(98,217,255,.08) 40px 42px);
  transform:perspective(780px) rotateX(72deg);
  transform-origin:bottom;
  filter:drop-shadow(0 -12px 36px rgba(98,217,255,.12));
  animation:gridPulse 4.5s ease-in-out infinite;
}
@keyframes gridPulse{
  0%,100%{opacity:.36;transform:perspective(780px) rotateX(72deg) translateY(0)}
  50%{opacity:.48;transform:perspective(780px) rotateX(72deg) translateY(-4px)}
}
.scanlines{
  position:fixed;inset:0;pointer-events:none;opacity:.10;
  background:repeating-linear-gradient(to bottom,rgba(255,255,255,.22) 0px,rgba(255,255,255,.22) 1px,transparent 2px,transparent 4px);
  mix-blend-mode:screen
}
.miami-sun{
  position:fixed;right:6%;top:88px;width:190px;height:190px;border-radius:50%;
  background:
    linear-gradient(180deg, rgba(255,214,109,.95), rgba(255,95,166,.92));
  opacity:.16;filter:blur(2px);
  box-shadow:0 0 40px rgba(255,95,166,.12), 0 0 80px rgba(255,214,109,.08);
  pointer-events:none;
}
.miami-sun::after{
  content:"";position:absolute;inset:0;border-radius:50%;
  background:repeating-linear-gradient(to bottom, rgba(7,16,27,.0) 0 10px, rgba(7,16,27,.24) 10px 14px);
}

.wrap{width:min(1120px,calc(100% - 32px));margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:40;backdrop-filter:blur(12px);
  background:rgba(7,16,27,.72);border-bottom:1px solid var(--line);
  box-shadow:0 8px 24px rgba(0,0,0,.12)
}
.nav{display:flex;justify-content:space-between;align-items:center;padding:16px 0;gap:20px}
.brand{font-size:1.3rem;font-weight:800;letter-spacing:.02em}
.brand span{color:var(--blue);text-shadow:0 0 18px rgba(86,166,255,.35)}
.nav nav{display:flex;gap:10px;flex-wrap:wrap}
.nav nav a{padding:10px 14px;color:var(--muted);border-radius:999px;transition:.2s ease}
.nav nav a:hover,.nav nav a.active{color:var(--text);background:rgba(86,166,255,.10);box-shadow:0 0 0 1px rgba(86,166,255,.18) inset}

.hero,.hero-lite,.panel,.card,.detail-shell,.fact-box,.offer-box{
  position:relative;overflow:hidden;border:1px solid var(--line);
  background:
    linear-gradient(180deg,rgba(255,255,255,.028),rgba(255,255,255,.01)),
    linear-gradient(180deg,rgba(12,27,48,.96),rgba(9,20,35,.95));
  box-shadow:var(--shadow)
}
.hero::before,.hero-lite::before,.panel::before,.card::before,.detail-shell::before,.fact-box::before,.offer-box::before{
  content:"";position:absolute;inset:0;pointer-events:none;
  background:linear-gradient(135deg, rgba(86,166,255,.05), transparent 22%, transparent 70%, rgba(255,95,166,.04));
}
.hero,.hero-lite,.detail-shell{border-radius:28px}
.hero{padding:66px 34px;margin:34px 0 24px}
.hero-lite{padding:34px}
.hero-glow{
  position:absolute;inset:-40% auto auto -10%;width:380px;height:380px;border-radius:50%;
  background:radial-gradient(circle,rgba(86,166,255,.34),transparent 65%);
  filter:blur(8px);pointer-events:none
}
.eyebrow{display:inline-block;margin:0 0 12px;color:#a7c3ff;font-weight:700;font-size:.74rem;letter-spacing:.22em;text-transform:uppercase}
h1,h2,h3{margin:0 0 12px}
h1{font-size:clamp(2rem,5vw,4.2rem);line-height:1.05;letter-spacing:-.03em}
h2{font-size:1.7rem}
h3{font-size:1.1rem}
.lead{max-width:760px;color:var(--muted);font-size:1.06rem}

.hero-actions,.detail-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;min-height:46px;padding:0 18px;border-radius:14px;
  font-weight:700;transition:.18s ease;border:1px solid transparent
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{color:white;background:linear-gradient(135deg,var(--blue-2),var(--blue));box-shadow:0 10px 30px rgba(47,123,240,.22)}
.btn-secondary{color:var(--text);background:rgba(255,255,255,.03);border-color:var(--line)}
.btn-secondary:hover{background:rgba(255,255,255,.06)}
.btn-pink{color:white;background:linear-gradient(135deg,#d63d89,var(--pink));box-shadow:0 10px 30px rgba(255,95,166,.18)}

.page-pad{padding:34px 0 60px}
.section{margin:24px 0}
.section-head{display:flex;justify-content:space-between;align-items:end;gap:16px;margin-bottom:18px}
.feature-grid,.cards-grid{display:grid;gap:18px}
.feature-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.cards-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
.panel,.card,.offer-box,.fact-box{border-radius:22px;padding:20px}
.toolbar{margin-top:18px;display:flex;gap:12px;flex-wrap:wrap}
.toolbar-split{justify-content:space-between}
.search,.select{
  width:min(100%,360px);min-height:46px;border-radius:14px;border:1px solid var(--line);
  background:rgba(255,255,255,.04);color:var(--text);padding:0 14px;outline:none
}
.select{width:220px}
.search::placeholder{color:#8fa3bf}

.card-top{display:flex;align-items:start;justify-content:space-between;gap:14px}
.logo-wrap{display:flex;gap:14px;align-items:center;min-width:0}
.logo-box{
  width:64px;height:64px;flex:0 0 64px;border-radius:18px;display:grid;place-items:center;
  background:linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.10);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04), 0 8px 18px rgba(0,0,0,.18)
}
.logo{
  width:78%;height:78%;object-fit:contain;object-position:center;
  filter:drop-shadow(0 4px 10px rgba(0,0,0,.18))
}
.title-wrap{min-width:0}
.title-wrap h3{margin-bottom:6px}
.small{color:var(--muted);font-size:.92rem}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.badge{
  display:inline-flex;align-items:center;padding:7px 11px;font-size:.8rem;line-height:1;border-radius:999px;
  color:#d6e3f8;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.06)
}
.badge-pink{background:rgba(255,95,166,.12);border-color:rgba(255,95,166,.18)}
.badge-blue{background:rgba(86,166,255,.12);border-color:rgba(86,166,255,.18)}
.badge-gold{background:rgba(255,215,109,.10);border-color:rgba(255,215,109,.18);color:#ffefc2}
.rating{
  font-size:1rem;font-weight:800;color:#fff6c7;text-shadow:0 0 12px rgba(255,230,125,.14);
  display:flex;align-items:center;gap:8px
}
.starline{display:inline-flex;align-items:center;gap:1px}
.star{
  color:rgba(255,215,109,.26);
  text-shadow:none;
  font-size:.98rem
}
.star.on{
  color:var(--gold);
  text-shadow:0 0 10px rgba(255,215,109,.16)
}
.card-footer{
  display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;align-items:center;margin-top:18px
}
.text-link{color:#bfe7ff;font-weight:700}
.text-link:hover{color:white}

.detail-shell{padding:28px}
.detail-header{display:flex;justify-content:space-between;align-items:start;gap:18px;margin-bottom:20px}
.detail-main{display:grid;grid-template-columns:1.35fr .9fr;gap:18px}
.content-body p,.content-body li{color:var(--muted)}
.content-body ul,.content-body ol{padding-left:22px}
.content-body h3{margin-top:22px}
.fact-grid{display:grid;gap:14px}
.fact-title{color:#b6caf0;font-weight:700;font-size:.86rem;text-transform:uppercase;letter-spacing:.12em;margin-bottom:8px}
.kv{display:flex;justify-content:space-between;gap:10px;color:var(--muted)}
.kv strong{color:var(--text)}
.offer-list,.related-list{display:grid;gap:14px;margin-top:18px}
.offer-box .logo-wrap{margin-bottom:10px}
.site-footer{margin-top:36px;border-top:1px solid var(--line);background:rgba(6,12,20,.72)}
.footer-inner{
  min-height:88px;display:flex;justify-content:space-between;align-items:center;gap:12px;color:var(--muted);font-size:.9rem
}
.socials{display:flex;flex-wrap:wrap;gap:10px}
.social-link{
  padding:9px 12px;border-radius:999px;border:1px solid var(--line);
  background:rgba(255,255,255,.03);color:var(--text);transition:.18s ease
}
.social-link:hover{background:rgba(255,255,255,.07);transform:translateY(-1px)}
.empty{grid-column:1/-1;text-align:center;padding:28px;border-radius:22px;border:1px dashed var(--line);color:var(--muted);background:rgba(255,255,255,.02)}

@media (max-width:920px){
  .feature-grid,.cards-grid,.detail-main{grid-template-columns:1fr}
}
@media (max-width:640px){
  .hero,.hero-lite,.detail-shell{padding:24px}
  .nav{flex-direction:column;align-items:flex-start}
  .footer-inner{flex-direction:column;align-items:flex-start;padding:16px 0}
}


/* v3 polish */
.home-feature-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:22px;
  margin-top:22px;
}
.feature-spotlight{
  border-radius:30px;
  padding:26px;
  border:1px solid rgba(134,185,255,.18);
  background:
    radial-gradient(circle at top left, rgba(86,166,255,.18), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
    linear-gradient(180deg, rgba(10,22,39,.98), rgba(8,18,32,.98));
  box-shadow:
    0 18px 46px rgba(23,66,160,.18),
    0 0 0 1px rgba(118,171,255,.10),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.feature-spotlight::after{
  content:"";
  position:absolute;
  inset:auto -10% -30% auto;
  width:220px;height:220px;border-radius:50%;
  background:radial-gradient(circle, rgba(255,95,166,.16), transparent 64%);
  pointer-events:none;filter:blur(8px);
}
.feature-spotlight .section-mini{
  margin-bottom:18px;
}
.feature-stack{
  display:grid;
  gap:14px;
}
.mini-card{
  border-radius:22px;
  padding:16px 18px;
  border:1px solid rgba(134,185,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    linear-gradient(180deg, rgba(10,22,39,.96), rgba(8,18,32,.96));
  box-shadow:0 10px 24px rgba(0,0,0,.14);
}
.mini-card:hover,
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(134,185,255,.24);
}
.card{
  transition:transform .18s ease,border-color .18s ease,background .18s ease,box-shadow .18s ease;
}
.sleek-card{
  border-radius:26px;
  padding:22px;
  border:1px solid rgba(134,185,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.008)),
    linear-gradient(180deg, rgba(9,19,34,.98), rgba(7,16,29,.98));
  box-shadow:
    0 14px 34px rgba(0,0,0,.16),
    0 0 0 1px rgba(118,171,255,.06);
}
.sleek-card .offer-box{
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.05);
}
.home-slim{
  max-width:760px;
}
.section-muted{
  color:var(--muted);
  max-width:640px;
}
.compact-actions{
  display:flex;gap:10px;flex-wrap:wrap;align-items:center;
}
@media (max-width: 920px){
  .home-feature-grid{grid-template-columns:1fr}
}


/* v4 layout + offer-centric polish */
.home-feature-grid{
  grid-template-columns:1fr;
  gap:18px;
}
.cards-grid{
  grid-template-columns:1fr;
}
.hero{
  background:
    linear-gradient(180deg, rgba(255,255,255,.018), rgba(255,255,255,.006)),
    linear-gradient(180deg, rgba(9,19,34,.92), rgba(7,16,29,.92));
  box-shadow:
    0 10px 22px rgba(0,0,0,.12),
    0 0 0 1px rgba(118,171,255,.05);
}
.hero::before{
  background:linear-gradient(135deg, rgba(86,166,255,.025), transparent 26%, transparent 70%, rgba(255,95,166,.02));
}
.feature-spotlight{
  box-shadow:
    0 22px 56px rgba(23,66,160,.20),
    0 0 0 1px rgba(118,171,255,.10),
    inset 0 1px 0 rgba(255,255,255,.04);
}
.feature-stack{
  grid-template-columns:1fr;
}
.mini-card{
  border-radius:24px;
  padding:18px 20px;
}
.sleek-card{
  border-radius:24px;
}
.sleek-card .card-top{
  align-items:center;
}
.offer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.offer-box.single-logo{
  padding:16px 18px;
}
.offer-box.single-logo p{
  margin:10px 0 0;
}
.section-spacer{
  margin-top:8px;
}
@media (max-width:920px){
  .cards-grid{grid-template-columns:1fr}
}


/* v5 header + hero adjustments */
.site-header{
  padding:10px 0;
  backdrop-filter:blur(6px);
}
.nav{
  min-height:44px;
}
.brand{
  font-size:18px;
}
.site-header nav a{
  font-size:14px;
  padding:6px 12px;
}

.hero{
  padding:36px 38px;
  margin-bottom:10px;
}
.hero h1{
  font-size:44px;
  line-height:1.15;
}
.hero .lead{
  font-size:15px;
}

.hero-actions{
  margin-top:16px;
}

.feature-spotlight{
  margin-top:6px;
}

/* stronger contrast so features pop more */
.feature-spotlight{
  background:
    radial-gradient(circle at top left, rgba(86,166,255,.22), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.012)),
    linear-gradient(180deg, rgba(10,22,39,1), rgba(8,18,32,1));
}

/* button styling for review links */
.btn-review{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(134,185,255,.25);
  padding:8px 14px;
  border-radius:10px;
  font-size:13px;
  text-decoration:none;
  color:#d6e7ff;
}
.btn-review:hover{
  background:rgba(134,185,255,.15);
}


/* v6 premium layout */
.logo-box{
  width:76px;
  height:76px;
  flex:0 0 76px;
  border-radius:20px;
  background:
    radial-gradient(circle at 30% 20%, rgba(86,166,255,.10), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 10px 22px rgba(0,0,0,.20),
    0 0 0 1px rgba(134,185,255,.10);
}
.logo{
  width:80%;
  height:80%;
  filter:
    drop-shadow(0 5px 10px rgba(0,0,0,.20))
    drop-shadow(0 0 10px rgba(86,166,255,.08));
}

.card,
.mini-card,
.sleek-card{
  position:relative;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}
.card::after,
.mini-card::after,
.sleek-card::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius:inherit;
  pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
}
.card:hover,
.mini-card:hover,
.sleek-card:hover{
  transform:translateY(-3px);
  border-color:rgba(134,185,255,.28);
  box-shadow:
    0 18px 42px rgba(0,0,0,.20),
    0 0 0 1px rgba(118,171,255,.10),
    0 0 24px rgba(86,166,255,.08);
}

.directory-card{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:18px;
  align-items:center;
}
.directory-main{
  min-width:0;
}
.directory-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:6px;
}
.directory-title h3{
  margin:0;
}
.directory-summary{
  color:var(--muted);
  font-size:.94rem;
}
.directory-actions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.directory-meta{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:14px;
}
.directory-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-top:14px;
  flex-wrap:wrap;
}
.btn-primary,
.btn-secondary,
.btn-review{
  min-height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-review{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(134,185,255,.25);
  padding:8px 14px;
  border-radius:12px;
  font-size:13px;
  text-decoration:none;
  color:#d6e7ff;
  box-shadow:0 8px 16px rgba(0,0,0,.12);
}
.btn-review:hover{
  background:rgba(134,185,255,.15);
  transform:translateY(-1px);
}
.btn-primary{
  box-shadow:
    0 12px 28px rgba(47,123,240,.26),
    0 0 20px rgba(86,166,255,.08);
}
.offer-hero-card{
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:16px;
  align-items:center;
}
.offer-kicker{
  color:var(--muted);
  font-size:.85rem;
  margin-bottom:4px;
}
.offer-name{
  font-size:1.12rem;
  font-weight:800;
  line-height:1.2;
}
.offer-site-tag{
  display:inline-flex;
  align-items:center;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,215,109,.10);
  border:1px solid rgba(255,215,109,.18);
  color:#ffefc2;
  font-size:.82rem;
  margin-top:12px;
}
.compact-stack{
  display:grid;
  gap:12px;
}
@media (max-width:900px){
  .directory-card,
  .offer-hero-card{
    grid-template-columns:1fr;
    align-items:flex-start;
  }
  .directory-actions{
    justify-content:flex-start;
  }
}


/* v7 cleaner site/review sections + custom featured ribbon */
.detail-shell{
  overflow:visible;
}
.detail-header{
  align-items:flex-start;
  margin-bottom:18px;
}
.detail-header .logo-wrap{
  align-items:flex-start;
}
.detail-header .logo-box{
  margin-top:4px;
}
.detail-header h1{
  font-size:clamp(2rem, 4vw, 3.75rem);
  line-height:1.05;
  margin-bottom:10px;
}
.detail-header .lead{
  max-width:780px;
}
.badges{
  margin-top:10px;
  margin-bottom:10px;
}
.badges.no-overlap{
  row-gap:10px;
  column-gap:10px;
}
.badges.no-overlap .badge{
  white-space:nowrap;
}

.clean-panel{
  border-radius:26px;
  padding:22px 22px 20px;
  border:1px solid rgba(134,185,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.028), rgba(255,255,255,.01)),
    linear-gradient(180deg, rgba(9,19,34,.98), rgba(7,16,29,.98));
  box-shadow:
    0 12px 30px rgba(0,0,0,.16),
    0 0 0 1px rgba(118,171,255,.06);
}
.clean-panel h3{
  margin-bottom:12px;
}
.clean-panel ul{
  margin:0;
  padding-left:22px;
}
.clean-panel li{
  margin-bottom:8px;
}

.info-card{
  border-radius:24px;
  padding:20px;
  border:1px solid rgba(134,185,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)),
    linear-gradient(180deg, rgba(10,22,39,.98), rgba(8,18,32,.98));
  box-shadow:
    0 12px 28px rgba(0,0,0,.15),
    0 0 0 1px rgba(118,171,255,.06);
}
.info-card .logo-wrap{
  align-items:center;
}
.info-card .logo-box{
  width:72px;
  height:72px;
  flex:0 0 72px;
}
.info-card .btn,
.info-card .btn-review,
.info-card .btn-secondary{
  width:100%;
  margin-top:14px;
}
.fact-title{
  margin-bottom:14px;
}
.info-stack{
  display:grid;
  gap:14px;
}

/* custom featured style */
.feature-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid rgba(86,166,255,.24);
  background:
    linear-gradient(135deg, rgba(86,166,255,.18), rgba(255,95,166,.12));
  color:#eef6ff;
  box-shadow:
    0 10px 22px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.05);
}
.feature-chip .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:linear-gradient(180deg, #62d9ff, #56a6ff);
  box-shadow:0 0 10px rgba(98,217,255,.4);
}
.feature-bar{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.feature-frame{
  position:relative;
}
.feature-frame::before{
  content:"";
  position:absolute;
  inset:-1px;
  border-radius:inherit;
  padding:1px;
  background:linear-gradient(135deg, rgba(86,166,255,.5), rgba(255,95,166,.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  opacity:.75;
}
.feature-frame:hover::before{
  opacity:1;
}

.site-review-card{
  grid-template-columns: 96px minmax(0,1.3fr) minmax(280px,.9fr) auto;
  align-items:stretch;
  gap:0;
  overflow:hidden;
  padding:0;
}
.site-review-logo-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(255,255,255,.02);
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-main,
.site-review-meta,
.site-review-cta{
  padding:22px 20px;
}
.site-review-main{
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-meta{
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
}
.site-review-cta .btn{
  min-width:170px;
}
.site-review-meta-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px 18px;
}
.meta-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:var(--muted);
  font-size:.95rem;
}
.meta-bullet{
  width:20px;
  height:20px;
  border-radius:50%;
  display:inline-grid;
  place-items:center;
  background:rgba(86,166,255,.18);
  color:#d8ebff;
  font-size:.78rem;
  font-weight:800;
  flex:0 0 20px;
}

@media (max-width: 1120px){
  .site-review-card{
    grid-template-columns:96px 1fr;
  }
  .site-review-main,
  .site-review-meta,
  .site-review-cta{
    border-right:none;
    border-top:1px solid rgba(134,185,255,.08);
  }
  .site-review-main{grid-column:2}
  .site-review-meta{grid-column:1 / -1}
  .site-review-cta{grid-column:1 / -1; justify-content:flex-start}
}
@media (max-width: 720px){
  .site-review-meta-grid{
    grid-template-columns:1fr;
  }
  .detail-header h1{
    font-size:2.35rem;
  }
}


/* v8 featured frame system */
.is-featured{
  position:relative;
}
.is-featured::before{
  content:"";
  position:absolute;
  inset:-2px;
  border-radius:inherit;
  padding:2px;
  background:
    linear-gradient(135deg, rgba(86,166,255,.95), rgba(98,217,255,.45) 35%, rgba(255,95,166,.4) 70%, rgba(86,166,255,.9));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events:none;
  opacity:.95;
}
.is-featured::after{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:inherit;
  background:
    radial-gradient(circle at top left, rgba(86,166,255,.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255,95,166,.12), transparent 30%);
  filter:blur(14px);
  z-index:-1;
  pointer-events:none;
}
.feature-corner{
  position:absolute;
  top:-1px;
  left:20px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 14px 10px;
  border-radius:0 0 14px 14px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.02em;
  color:#eef6ff;
  background:linear-gradient(135deg, rgba(62,120,255,.96), rgba(86,166,255,.92));
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}
.feature-corner .dot{
  width:8px;height:8px;border-radius:50%;
  background:#8fe7ff;
  box-shadow:0 0 12px rgba(143,231,255,.55);
}

.featured-inline{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.featured-inline .feature-chip{
  margin:0;
}

.site-review-main .directory-title{
  margin-top:0;
}
.site-review-main.no-review{
  border-right:none;
}
.site-review-card.no-review{
  grid-template-columns: 96px minmax(0,1.5fr) minmax(280px,1fr);
}
.site-review-card.no-review .site-review-cta{
  display:none;
}
@media (max-width:1120px){
  .site-review-card.no-review{
    grid-template-columns:96px 1fr;
  }
}


/* v9 footer consistency + improved featured ribbon + restore site layout */
.feature-corner{
  top:16px;
  left:16px;
  border-radius:999px;
  padding:8px 14px;
  max-width:calc(100% - 32px);
}
.is-featured{
  padding-top:0;
}
.is-featured .site-review-main,
.is-featured .site-review-logo-panel,
.is-featured .site-review-meta,
.is-featured .site-review-cta{
  padding-top:30px;
}
.is-featured .detail-header{
  margin-top:24px !important;
}
.is-featured .logo-wrap{
  min-width:0;
}
.is-featured .feature-corner{
  box-shadow:0 10px 18px rgba(0,0,0,.14), 0 0 0 1px rgba(255,255,255,.05) inset;
}

.site-review-card,
.site-review-card.no-review{
  grid-template-columns:96px minmax(0,1.3fr) minmax(280px,.9fr);
  align-items:stretch;
  gap:0;
  overflow:hidden;
  padding:0;
}
.site-review-card .site-review-logo-panel{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(255,255,255,.02);
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-card .site-review-main{
  padding:22px 20px;
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-card .site-review-meta{
  padding:22px 20px;
}
.site-review-card.no-review .site-review-main{
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-card.no-review .site-review-meta{
  border-top:none;
}
.directory-bottom.single-cta{
  margin-top:18px;
}
.directory-bottom.single-cta .btn{
  min-width:170px;
}

.site-footer{
  margin-top:40px;
  padding:20px 0 16px;
}
.footer-inner{
  min-height:auto;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:14px;
}
.footer-top{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.footer-bottom{
  width:100%;
  padding-top:12px;
  border-top:1px solid rgba(134,185,255,.10);
  color:var(--muted);
  font-size:.86rem;
}

@media (max-width:1120px){
  .site-review-card,
  .site-review-card.no-review{
    grid-template-columns:96px 1fr;
  }
  .site-review-card .site-review-main,
  .site-review-card .site-review-meta,
  .site-review-card .site-review-cta,
  .site-review-card.no-review .site-review-main,
  .site-review-card.no-review .site-review-meta{
    border-right:none;
    border-top:1px solid rgba(134,185,255,.08);
  }
  .site-review-card .site-review-main,
  .site-review-card.no-review .site-review-main{
    grid-column:2;
  }
  .site-review-card .site-review-meta,
  .site-review-card.no-review .site-review-meta{
    grid-column:1 / -1;
  }
}


/* v10 footer/socials + featured revert + site CTA restore + payout colors */
.footer-top{
  justify-content:space-between;
  align-items:flex-start;
}
.footer-top .socials{
  margin-left:auto;
  justify-content:flex-end;
}
.social-link{
  color:#d9eeff;
  background:linear-gradient(180deg, rgba(86,166,255,.16), rgba(255,95,166,.08));
  border:1px solid rgba(86,166,255,.22);
  box-shadow:0 8px 18px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.04);
}
.social-link:hover{
  background:linear-gradient(180deg, rgba(86,166,255,.24), rgba(255,95,166,.14));
  color:#ffffff;
}

.feature-corner{
  top:0;
  left:16px;
  border-radius:0 0 16px 16px;
  padding:10px 14px 11px;
}
.is-featured .site-review-main,
.is-featured .site-review-logo-panel,
.is-featured .site-review-meta,
.is-featured .site-review-cta{
  padding-top:22px;
}
.is-featured .detail-header{
  margin-top:18px !important;
}

.badge.payout{
  background:linear-gradient(180deg, rgba(86,166,255,.16), rgba(98,217,255,.08));
  border-color:rgba(86,166,255,.22);
  color:#dff4ff;
}
.badge.payout.alt{
  background:linear-gradient(180deg, rgba(255,95,166,.14), rgba(255,95,166,.06));
  border-color:rgba(255,95,166,.18);
  color:#ffe3f1;
}
.badge.payout.gold{
  background:linear-gradient(180deg, rgba(255,215,109,.16), rgba(255,215,109,.06));
  border-color:rgba(255,215,109,.20);
  color:#fff1c6;
}

.site-review-card.no-review{
  grid-template-columns:96px minmax(0,1.15fr) minmax(300px,.95fr) auto;
}
.site-review-card.no-review .site-review-cta{
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  padding:22px 20px;
  border-left:1px solid rgba(134,185,255,.08);
}
.site-review-card.no-review .site-review-main{
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-card.no-review .site-review-meta{
  border-right:1px solid rgba(134,185,255,.08);
}
.site-review-card.no-review .site-review-cta .btn{
  min-width:170px;
}
.directory-bottom.single-cta{
  display:none;
}

@media (max-width:1120px){
  .site-review-card.no-review{
    grid-template-columns:96px 1fr;
  }
  .site-review-card.no-review .site-review-main,
  .site-review-card.no-review .site-review-meta,
  .site-review-card.no-review .site-review-cta{
    border-right:none;
    border-left:none;
    border-top:1px solid rgba(134,185,255,.08);
  }
  .site-review-card.no-review .site-review-main{grid-column:2}
  .site-review-card.no-review .site-review-meta,
  .site-review-card.no-review .site-review-cta{grid-column:1 / -1}
  .site-review-card.no-review .site-review-cta{justify-content:flex-start}
}


/* v11 featured sizing + cleaner footer lock + offer page cleanup */
.is-featured{
  min-height:132px;
}
.mini-card.is-featured,
.offer-hero-card.is-featured{
  padding-top:28px;
}
.site-review-card.is-featured{
  min-height:154px;
}
.site-review-card.is-featured .site-review-logo-panel,
.site-review-card.is-featured .site-review-main,
.site-review-card.is-featured .site-review-meta,
.site-review-card.is-featured .site-review-cta{
  padding-top:34px;
}
.detail-shell.is-featured{
  padding-top:30px;
}
.feature-corner{
  top:12px;
  left:16px;
  z-index:3;
}
.offer-hero-card .offer-name,
.mini-card .offer-name{
  padding-right:8px;
}
.footer-top{
  display:grid;
  grid-template-columns:1fr auto;
  align-items:start;
  width:100%;
  gap:20px;
}
.footer-top > div:first-child{
  min-width:0;
}
.footer-top .socials{
  justify-self:end;
  margin-left:0;
  display:flex;
  flex-wrap:nowrap;
  gap:10px;
}
.footer-inner{
  width:100%;
}
.footer-bottom{
  text-align:left;
}
@media (max-width:900px){
  .footer-top{
    grid-template-columns:1fr;
  }
  .footer-top .socials{
    justify-self:start;
    flex-wrap:wrap;
  }
}


/* v12 featured strip + footer cleanup */
.mini-card.is-featured,
.offer-hero-card.is-featured,
.site-review-card.is-featured,
.detail-shell.is-featured{
  min-height: unset;
  padding-top: unset;
}
.site-review-card.is-featured .site-review-logo-panel,
.site-review-card.is-featured .site-review-main,
.site-review-card.is-featured .site-review-meta,
.site-review-card.is-featured .site-review-cta{
  padding-top: 22px;
}
.detail-shell.is-featured{
  padding-top: 28px;
}
.feature-corner{
  display:none !important;
}
.feature-strip{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:38px;
  margin:-22px -20px 18px;
  padding:0 18px;
  border-bottom:1px solid rgba(134,185,255,.12);
  background:
    linear-gradient(90deg, rgba(86,166,255,.16), rgba(255,95,166,.08) 60%, rgba(255,255,255,.02));
  color:#eef6ff;
  font-size:.83rem;
  font-weight:800;
  letter-spacing:.02em;
}
.site-review-card .feature-strip{
  margin:-22px -20px 18px;
}
.detail-shell .feature-strip{
  margin:-28px -28px 18px;
  border-radius:28px 28px 0 0;
}
.feature-strip .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#8fe7ff;
  box-shadow:0 0 12px rgba(143,231,255,.55);
  flex:0 0 8px;
}
.footer-inner{
  display:block;
}
.footer-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  width:100%;
}
.footer-brand{
  min-width:0;
}
.footer-socials{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:nowrap;
}
.footer-bottom{
  width:100%;
  margin-top:14px;
  padding-top:12px;
  border-top:1px solid rgba(134,185,255,.10);
}
@media (max-width:900px){
  .footer-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-socials{
    margin-left:0;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
}


/* v13 revert to top ribbon + centered copyright */
.feature-strip{
  display:none !important;
}
.feature-corner{
  display:inline-flex !important;
  position:absolute;
  top:8px;
  left:16px;
  z-index:3;
  align-items:center;
  gap:8px;
  padding:9px 14px 10px;
  border-radius:999px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.02em;
  color:#eef6ff;
  background:linear-gradient(135deg, rgba(62,120,255,.96), rgba(86,166,255,.92));
  box-shadow:0 10px 18px rgba(0,0,0,.14), 0 0 0 1px rgba(255,255,255,.05) inset;
}
.feature-corner .dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#8fe7ff;
  box-shadow:0 0 12px rgba(143,231,255,.55);
  flex:0 0 8px;
}
.footer-bottom{
  text-align:center;
}


/* v14: restore v8-style ribbon, tighten offer sidebar, clean footer, custom scrollbar */

/* Scrollbar */
html {
  scrollbar-color: rgba(160,176,205,.85) rgba(255,255,255,.06);
  scrollbar-width: thin;
}
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: rgba(255,255,255,.06);
  border-left: 1px solid rgba(255,255,255,.04);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(168,178,198,.95), rgba(120,132,156,.95));
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.06);
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(188,196,212,.98), rgba(132,145,170,.98));
}
::-webkit-scrollbar-corner {
  background: rgba(255,255,255,.06);
}

/* Restore cleaner ribbon from v8 */
.feature-corner{
  top:-1px;
  left:20px;
  border-radius:0 0 14px 14px;
  padding:9px 14px 10px;
  box-shadow:0 10px 22px rgba(0,0,0,.16);
}
.is-featured .site-review-main,
.is-featured .site-review-logo-panel,
.is-featured .site-review-meta,
.is-featured .site-review-cta{
  padding-top:26px;
}
.detail-shell.is-featured{
  padding-top:22px;
}

/* Tighten offer detail sidebar */
.detail-main{
  align-items:start;
}
.info-stack{
  align-content:start;
}
.info-card{
  height:auto;
}
.info-card .btn,
.info-card .btn-review,
.info-card .btn-secondary{
  width:auto;
  min-width:220px;
}
.info-card .logo-wrap{
  margin-bottom:10px;
}
.info-card .small{
  line-height:1.55;
}

/* Footer cleanup */
.site-footer{
  margin-top:42px;
  padding:20px 0 16px;
  border-top:1px solid rgba(134,185,255,.12);
  background: linear-gradient(180deg, rgba(6,12,20,.88), rgba(6,12,20,.94));
}
.site-footer .wrap{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}
.footer-inner{
  width:100%;
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-top{
  width:100%;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}
.footer-brand{
  max-width:420px;
}
.footer-socials{
  margin-left:auto;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:10px;
  flex-wrap:nowrap;
}
.footer-bottom{
  width:100%;
  padding-top:12px;
  border-top:1px solid rgba(134,185,255,.10);
  text-align:center;
  color:var(--muted);
  font-size:.86rem;
}
.social-link{
  min-width:0;
  white-space:nowrap;
}

@media (max-width: 900px){
  .footer-top{
    flex-direction:column;
    align-items:flex-start;
  }
  .footer-socials{
    margin-left:0;
    justify-content:flex-start;
    flex-wrap:wrap;
  }
  .info-card .btn,
  .info-card .btn-review,
  .info-card .btn-secondary{
    width:100%;
    min-width:0;
  }
}


/* v15 top nav polish + cleaner scrollbar */
.brand{
  font-size:1.55rem;
  font-weight:900;
  letter-spacing:-0.02em;
  display:inline-flex;
  align-items:center;
  gap:2px;
  text-shadow:0 0 18px rgba(86,166,255,.14);
}
.brand span{
  color:var(--blue);
  text-shadow:
    0 0 14px rgba(86,166,255,.30),
    0 0 28px rgba(86,166,255,.14);
}
.site-header{
  padding:12px 0;
  background:linear-gradient(180deg, rgba(5,12,22,.92), rgba(5,12,22,.84));
  border-bottom:1px solid rgba(134,185,255,.12);
}
.nav{
  min-height:52px;
}
.site-header nav{
  display:flex;
  align-items:center;
  gap:12px;
}
.site-header nav a{
  font-size:15px;
  font-weight:700;
  padding:10px 16px;
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  border:1px solid transparent;
  color:#d9e9ff;
  background:rgba(255,255,255,.02);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.02);
}
.site-header nav a:hover{
  background:linear-gradient(180deg, rgba(86,166,255,.10), rgba(255,95,166,.04));
  border-color:rgba(86,166,255,.18);
  color:#ffffff;
}
.site-header nav a.active{
  background:linear-gradient(180deg, rgba(86,166,255,.16), rgba(86,166,255,.08));
  border-color:rgba(86,166,255,.24);
  box-shadow:
    0 10px 22px rgba(0,0,0,.14),
    inset 0 1px 0 rgba(255,255,255,.03);
}

/* Scrollbar: remove arrows/outer outline look */
html{
  scrollbar-color: rgba(150,162,184,.92) rgba(255,255,255,.03);
  scrollbar-width: thin;
}
::-webkit-scrollbar{
  width:14px;
  height:14px;
}
::-webkit-scrollbar-track{
  background:rgba(255,255,255,.03);
  border:none;
  box-shadow:none;
}
::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg, rgba(176,184,200,.96), rgba(126,136,158,.96));
  border-radius:999px;
  border:3px solid transparent;
  background-clip:padding-box;
  box-shadow:none;
}
::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg, rgba(194,201,214,.98), rgba(138,148,171,.98));
  background-clip:padding-box;
}
::-webkit-scrollbar-button{
  display:none;
  width:0;
  height:0;
}
::-webkit-scrollbar-corner{
  background:transparent;
}


/* ===== V16 Scrollbar (strong custom look) ===== */
html, body{
  scrollbar-width: auto;
  scrollbar-color: #8fa4c6 #0b1424;
}

::-webkit-scrollbar{
  width:16px;
  height:16px;
}

::-webkit-scrollbar-track{
  background:linear-gradient(180deg,#0b1424,#0a1322);
  border-left:1px solid rgba(255,255,255,.04);
}

::-webkit-scrollbar-thumb{
  background:linear-gradient(180deg,#a7b6d6,#7e90b4);
  border-radius:999px;
  border:4px solid #0b1424;
}

::-webkit-scrollbar-thumb:hover{
  background:linear-gradient(180deg,#c2cee8,#8ea3c8);
}

::-webkit-scrollbar-button{
  display:none;
}

/* ===== Featured card spacing so ribbon doesn't cut text ===== */
.mini-card,
.offer-card,
.site-card{
  padding-top:26px;
}

.is-featured.mini-card,
.is-featured.offer-card,
.is-featured.site-card{
  padding-top:36px;
  transform:scale(1.01);
}

.is-featured{
  box-shadow:
    0 0 0 1px rgba(120,170,255,.35),
    0 12px 30px rgba(0,0,0,.35);
}


/* ===== Simple featured glow for list cards only ===== */
.directory-card.is-featured,
.site-review-card.is-featured{
  box-shadow:
    0 0 0 1px rgba(104,176,255,.40),
    0 10px 26px rgba(0,0,0,.28),
    0 0 18px rgba(86,166,255,.10),
    0 0 30px rgba(255,95,166,.05);
}
.directory-card.is-featured:hover,
.site-review-card.is-featured:hover{
  box-shadow:
    0 0 0 1px rgba(104,176,255,.52),
    0 12px 30px rgba(0,0,0,.32),
    0 0 22px rgba(86,166,255,.14),
    0 0 36px rgba(255,95,166,.07);
}


/* ===== Featured sorting + larger featured offer cards ===== */
.directory-card.is-featured{
  padding-top: 34px;
  min-height: 150px;
}
.directory-card.is-featured .card-top{
  align-items: flex-start;
}
.directory-card.is-featured .directory-main{
  padding-top: 2px;
}

.site-review-card.is-featured{
  padding-top: 8px;
}

@media (max-width: 900px){
  .directory-card.is-featured{
    min-height: 0;
    padding-top: 32px;
  }
}


/* ===== V22: force featured glow on list cards + restore site CTA + align offer tag ===== */
.directory-card.is-featured,
.site-review-card.is-featured{
  border-color: rgba(104,176,255,.48) !important;
  box-shadow:
    0 0 0 1px rgba(104,176,255,.42),
    0 0 0 3px rgba(104,176,255,.05),
    0 14px 34px rgba(0,0,0,.30),
    0 0 22px rgba(86,166,255,.12),
    0 0 36px rgba(255,95,166,.06) !important;
}

/* ensure featured ribbon sits nicely on list cards */
.directory-card.is-featured,
.site-review-card.is-featured{
  overflow: visible;
}

/* offers page: site tag aligns with CTA instead of floating */
.offer-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:12px;
}
.offer-actions .badge{
  margin:0;
}

/* sites page: restore right CTA column even with old no-review styles in file */
.site-review-card.no-review{
  grid-template-columns:96px minmax(0,1.15fr) minmax(280px,.95fr) auto !important;
}
.site-review-card.no-review .site-review-cta{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  min-width:220px !important;
  padding:22px 20px !important;
  border-left:1px solid rgba(134,185,255,.08) !important;
  border-top:none !important;
}
.site-review-card.no-review .site-review-main{
  border-right:1px solid rgba(134,185,255,.08) !important;
}

@media (max-width:1120px){
  .site-review-card.no-review{
    grid-template-columns:96px 1fr !important;
  }
  .site-review-card.no-review .site-review-main,
  .site-review-card.no-review .site-review-meta,
  .site-review-card.no-review .site-review-cta{
    border-right:none !important;
    border-left:none !important;
    border-top:1px solid rgba(134,185,255,.08) !important;
  }
  .site-review-card.no-review .site-review-main{grid-column:2 !important;}
  .site-review-card.no-review .site-review-meta,
  .site-review-card.no-review .site-review-cta{grid-column:1 / -1 !important;}
  .site-review-card.no-review .site-review-cta{justify-content:flex-start !important;}
}


/* ===== V27 footer restore + blue-accent brand ===== */
.site-footer{
  padding:26px 0 30px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}
.footer-left{
  font-size:.9rem;
  color:var(--muted);
}
.footer-socials{
  display:flex;
  gap:10px;
  align-items:center;
}
.footer-socials a{
  padding:8px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(134,185,255,.18);
  font-size:.85rem;
  color:#dce9ff;
  transition:.2s ease;
}
.footer-socials a:hover{
  background:rgba(86,166,255,.18);
  border-color:rgba(86,166,255,.35);
}
.footer-copy{
  width:100%;
  text-align:center;
  margin-top:16px;
  font-size:.8rem;
  color:var(--muted);
}

/* Brand accent */
.brand{
  font-size:1.3rem;
  font-weight:800;
  letter-spacing:.02em;
}
.brand .brand-accent{
  color:var(--blue);
  text-shadow:0 0 18px rgba(86,166,255,.35);
}


/* ===== V28 mobile polish pass ===== */
.btn,
.btn-primary,
.btn-secondary,
.btn-review,
.site-header nav a,
.social-link{
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media (max-width: 900px){
  .hero{
    padding:30px 22px;
    margin:20px 0 16px;
  }
  .hero h1{
    font-size:clamp(2rem, 8vw, 3rem);
    line-height:1.08;
  }
  .lead{font-size:1rem;}
  .feature-spotlight,.hero-lite,.detail-shell{padding:22px;}

  .offer-hero-card,
  .directory-card{
    grid-template-columns:1fr !important;
    align-items:flex-start !important;
    gap:14px;
  }

  .directory-actions,
  .compact-actions,
  .hero-actions,
  .detail-actions{
    justify-content:flex-start;
    width:100%;
  }

  .directory-title{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .site-review-card,
  .site-review-card.no-review{
    grid-template-columns:1fr !important;
    overflow:visible;
  }
  .site-review-logo-panel,
  .site-review-main,
  .site-review-meta,
  .site-review-cta{
    border-right:none !important;
    border-left:none !important;
    border-top:1px solid rgba(134,185,255,.08) !important;
  }
  .site-review-logo-panel{
    border-top:none !important;
    justify-content:flex-start;
  }
  .site-review-cta{
    justify-content:flex-start !important;
    min-width:0 !important;
    padding-top:18px !important;
  }
  .site-review-cta .btn{
    width:100%;
    max-width:320px;
  }

  .detail-main{
    grid-template-columns:1fr !important;
    gap:14px;
  }

  .info-card .btn,
  .info-card .btn-secondary,
  .info-card .btn-review{
    width:100%;
    min-width:0;
  }
}

@media (max-width: 640px){
  .wrap{width:min(100% - 20px, 1120px);}
  .site-header{padding:10px 0;}
  .nav{gap:12px;padding:10px 0;}
  .brand{font-size:1.15rem;}
  .site-header nav{width:100%;gap:8px;}
  .site-header nav a{
    padding:10px 12px;
    min-height:42px;
    font-size:14px;
  }

  .hero,.hero-lite,.feature-spotlight,.detail-shell{
    border-radius:22px;
    padding:18px;
  }

  .hero h1{font-size:clamp(1.8rem, 9vw, 2.4rem);}
  .eyebrow{font-size:.68rem;letter-spacing:.18em;}

  .logo-box{
    width:64px;
    height:64px;
    flex:0 0 64px;
  }

  .feature-corner{
    left:14px;
    top:0;
    padding:8px 12px 9px;
    font-size:.74rem;
    max-width:calc(100% - 28px);
  }

  .offer-name{font-size:1rem;}
  .directory-summary,.small{font-size:.9rem;}

  .badge{
    font-size:.76rem;
    padding:7px 10px;
  }

  .btn,.btn-primary,.btn-secondary,.btn-review{
    width:100%;
    min-height:44px;
  }

  .directory-actions,
  .compact-actions,
  .hero-actions,
  .detail-actions{
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .offer-actions{
    width:100%;
    align-items:stretch !important;
  }
  .offer-actions .badge{
    align-self:flex-start;
  }

  .directory-card.is-featured{
    min-height:0;
    padding-top:30px;
  }

  .site-review-meta-grid{
    grid-template-columns:1fr !important;
    gap:10px;
  }

  .meta-row{font-size:.9rem;}

  .footer-socials{
    width:100%;
    justify-content:flex-start !important;
  }
  .footer-socials a{padding:8px 12px;}

  .footer-copy{
    margin-top:12px;
    line-height:1.5;
  }
}

@media (max-width: 380px){
  .brand{font-size:1.02rem;}
  .site-header nav a{
    font-size:13px;
    padding:9px 10px;
  }
  .logo-box{
    width:58px;
    height:58px;
    flex:0 0 58px;
  }
  .hero h1{font-size:1.65rem;}
}


/* ===== V29 guides simplify + centered footer ===== */
.offer-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  justify-content:center;
  gap:12px;
}
.offer-actions .badge{
  margin:0;
}

.footer-inner{
  justify-content:center !important;
}
.footer-center{
  width:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  text-align:center;
}
.footer-brand-name{
  font-size:1rem;
  font-weight:800;
  color:var(--text);
}
.footer-socials{
  display:flex;
  align-items:center;
  justify-content:center !important;
  gap:10px;
  flex-wrap:wrap;
  width:100%;
}
.footer-copy{
  width:100%;
  text-align:center !important;
  margin-top:4px;
  color:var(--muted);
  font-size:.82rem;
}

@media (max-width: 640px){
  .offer-actions{
    width:100%;
    align-items:stretch !important;
  }
  .offer-actions .badge{
    align-self:flex-start;
  }
}


/* ===== V34 performance + responsive polish ===== */
html{
  scroll-behavior:smooth;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
}
body{
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
.site-header{
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.hero,
.hero-lite,
.card,
.sleek-card,
.detail-shell,
.feature-frame,
.offer-box,
.fact-box{
  transform:translateZ(0);
  backface-visibility:hidden;
  will-change:transform;
}
.wrap{
  width:min(1120px, calc(100vw - 32px));
}
.hero h1,
.hero-lite h1{
  text-wrap:balance;
}
.hero .lead,
.hero-lite .lead{
  max-width:820px;
}

/* landing helper cards */
.landing-helper{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
  margin-top:20px;
}
.helper-card{
  border:1px solid rgba(134,185,255,.12);
  border-radius:18px;
  padding:16px 16px 15px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
}
.helper-card strong{
  display:block;
  font-size:.95rem;
  margin-bottom:4px;
}
.helper-card span{
  color:var(--muted);
  font-size:.9rem;
  line-height:1.5;
}
.hero-lite .toolbar{
  margin-top:20px;
}
.search{
  width:min(100%, 420px);
}
.page-kicker{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:16px;
}
.page-kicker .badge{
  font-size:.8rem;
}

/* better mobile fit */
@media (max-width: 900px){
  .wrap{
    width:min(100vw - 22px, 1120px);
  }
  .cards-grid,
  .feature-grid,
  .home-feature-grid{
    grid-template-columns:1fr !important;
  }
  .hero{
    padding:30px 22px;
    margin:22px 0 18px;
  }
  .hero-lite{
    padding:24px 20px;
  }
  .hero h1{
    font-size:clamp(2rem, 7vw, 3.1rem);
    line-height:1.08;
  }
  .hero-lite h1{
    font-size:clamp(1.8rem, 6vw, 2.6rem);
    line-height:1.08;
  }
  .landing-helper{
    grid-template-columns:1fr;
    gap:10px;
  }
  .site-header{
    position:sticky;
    top:0;
  }
}
@media (max-width: 640px){
  .wrap{
    width:calc(100vw - 18px);
  }
  .site-header{
    padding:0;
  }
  .nav{
    gap:12px;
    padding:12px 0;
    align-items:flex-start;
  }
  .brand{
    font-size:1.08rem;
    line-height:1.1;
  }
  .nav nav{
    width:100%;
    gap:8px;
  }
  .nav nav a{
    min-height:44px;
    padding:10px 16px;
    font-size:14px;
  }
  .hero,
  .hero-lite,
  .detail-shell,
  .feature-spotlight{
    border-radius:22px;
  }
  .hero,
  .hero-lite{
    padding:18px;
  }
  .hero h1{
    font-size:clamp(1.9rem, 10vw, 2.5rem);
  }
  .hero-lite h1{
    font-size:clamp(1.65rem, 9vw, 2.1rem);
  }
  .lead{
    font-size:.98rem;
  }
  .search{
    width:100%;
  }
  .toolbar{
    width:100%;
  }
  .logo-box{
    width:60px;
    height:60px;
    flex:0 0 60px;
  }
  .page-pad{
    padding:20px 0 48px;
  }
  .section{
    margin:18px 0;
  }
  .feature-corner{
    left:14px;
    top:0;
    max-width:calc(100% - 28px);
  }
  .helper-card{
    padding:14px 14px 13px;
  }
}


/* ===== V35 real performance + mobile-fit fixes ===== */
html{
  background:#07101b !important;
  width:100%;
  max-width:100%;
  overflow-x:hidden !important;
}
body{
  background:
    radial-gradient(circle at 15% 0%,rgba(86,166,255,.18),transparent 24%),
    radial-gradient(circle at 85% 0%,rgba(255,95,166,.10),transparent 22%),
    linear-gradient(180deg,#08101a 0%,#07101b 100%) !important;
  width:100%;
  max-width:100%;
  overflow-x:hidden !important;
}

/* main cause of mobile white edge / overflow */
.wrap{
  width:min(1120px, calc(100% - 24px)) !important;
  max-width:1120px;
  margin:0 auto;
}

/* reduce desktop lag by simplifying heavy fixed effects */
.bg-grid{
  animation:none !important;
  opacity:.22 !important;
  filter:none !important;
  transform:perspective(780px) rotateX(72deg) !important;
}
.scanlines{
  opacity:.05 !important;
}
.miami-sun{
  opacity:.10 !important;
  filter:none !important;
  box-shadow:none !important;
}
.site-header{
  backdrop-filter:blur(4px) !important;
  -webkit-backdrop-filter:blur(4px) !important;
  box-shadow:0 4px 14px rgba(0,0,0,.10) !important;
}
.hero::before,.hero-lite::before,.panel::before,.card::before,.detail-shell::before,.fact-box::before,.offer-box::before{
  opacity:.6;
}
.card,.sleek-card,.feature-frame,.hero,.hero-lite,.detail-shell{
  will-change:auto !important;
}

/* desktop scrolling feel */
@media (min-width: 901px){
  .bg-grid,.scanlines,.miami-sun{
    pointer-events:none;
  }
}

/* better landing page fit */
.hero{
  padding:48px 30px !important;
}
.hero-lite{
  padding:28px 24px !important;
}
.page-pad{
  padding:24px 0 48px !important;
}

/* mobile */
@media (max-width: 900px){
  .wrap{
    width:calc(100% - 16px) !important;
  }
  .bg-grid{
    height:28vh !important;
    opacity:.14 !important;
  }
  .scanlines{
    opacity:.03 !important;
  }
  .miami-sun{
    width:120px !important;
    height:120px !important;
    top:92px !important;
    right:-12px !important;
    opacity:.08 !important;
  }
  .nav{
    flex-direction:column !important;
    align-items:flex-start !important;
    gap:10px !important;
  }
  .site-header nav{
    width:100%;
    display:flex;
    flex-wrap:wrap;
    gap:8px !important;
  }
  .site-header nav a{
    flex:0 0 auto;
  }
  .hero{
    padding:24px 16px !important;
    margin:14px 0 14px !important;
  }
  .hero-lite{
    padding:20px 16px !important;
  }
  .feature-spotlight{
    padding:18px !important;
  }
  .landing-helper{
    margin-top:14px !important;
  }
  .home-feature-grid,
  .cards-grid,
  .feature-grid{
    gap:14px !important;
  }
}

@media (max-width: 640px){
  html,body{
    min-height:100%;
  }
  .wrap{
    width:calc(100% - 12px) !important;
  }
  .site-header{
    position:sticky;
    top:0;
    left:0;
    right:0;
  }
  .brand{
    font-size:1rem !important;
  }
  .site-header nav a{
    padding:10px 14px !important;
    min-height:42px !important;
    font-size:14px !important;
  }
  .hero,.hero-lite,.detail-shell,.feature-spotlight{
    border-radius:20px !important;
  }
  .hero h1{
    font-size:clamp(1.7rem, 9vw, 2.3rem) !important;
    line-height:1.06 !important;
  }
  .hero-lite h1{
    font-size:clamp(1.45rem, 8vw, 1.95rem) !important;
    line-height:1.08 !important;
  }
  .lead{
    font-size:.95rem !important;
    line-height:1.55 !important;
  }
  .toolbar{
    margin-top:14px !important;
  }
  .search{
    width:100% !important;
    min-height:44px !important;
  }
  .page-kicker{
    gap:6px !important;
    margin-top:12px !important;
  }
  .helper-card{
    border-radius:16px !important;
  }
  .logo-box{
    width:56px !important;
    height:56px !important;
    flex:0 0 56px !important;
  }
  .panel,.card,.offer-box,.fact-box{
    padding:16px !important;
  }
  .feature-corner{
    left:12px !important;
    top:0 !important;
    font-size:.72rem !important;
    padding:8px 11px 9px !important;
  }
  .footer-center{
    gap:10px !important;
  }
}

/* very small screens */
@media (max-width: 380px){
  .wrap{
    width:calc(100% - 10px) !important;
  }
  .site-header nav{
    gap:6px !important;
  }
  .site-header nav a{
    padding:9px 12px !important;
    font-size:13px !important;
  }
}


/* ===== V101 logo fit polish ===== */
.logo-box{
  width:68px;
  height:68px;
  flex:0 0 68px;
  border-radius:20px;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    linear-gradient(180deg, rgba(10,23,41,.94), rgba(8,18,31,.96));
  border:1px solid rgba(134,185,255,.12);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.04),
    0 8px 18px rgba(0,0,0,.16);
}
.logo{
  width:76%;
  height:76%;
  object-fit:contain;
  object-position:center;
  image-rendering:auto;
  filter:none;
}
.site-review-logo-panel .logo-box,
.directory-card .logo-box,
.offer-box .logo-box{
  margin:0;
}
.site-review-logo-panel{
  display:flex;
  align-items:center;
  justify-content:center;
}
@media (max-width: 640px){
  .logo-box{
    width:58px !important;
    height:58px !important;
    flex:0 0 58px !important;
    border-radius:18px !important;
  }
  .logo{
    width:74% !important;
    height:74% !important;
  }
}


/* ===== V103 final polish ===== */
.hero-lite{
  padding:22px 20px !important;
}
.hero{
  padding:42px 28px !important;
}
.lead{
  max-width:760px;
  color:rgba(230,238,252,.82);
}
.btn-primary{
  background:linear-gradient(135deg,#69b0ff 0%, #4b8cff 52%, #78acff 100%);
  box-shadow:0 8px 20px rgba(86,166,255,.24);
}
.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(86,166,255,.34);
}
.card,
.sleek-card,
.feature-frame,
.offer-box,
.fact-box{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover,
.sleek-card:hover,
.feature-frame:hover,
.offer-box:hover,
.fact-box:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(0,0,0,.22);
}
.top-pick-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
  color:#fff5d1;
  background:linear-gradient(135deg, rgba(255,214,109,.28), rgba(255,170,70,.18));
  border:1px solid rgba(255,214,109,.28);
  box-shadow:0 8px 18px rgba(255,214,109,.08);
}
.top-pick-badge::before{
  content:"★";
  color:#ffd76d;
}
.site-review-main .top-pick-badge,
.directory-main .top-pick-badge{
  margin-bottom:12px;
}
@media (max-width:640px){
  .hero{
    padding:26px 18px !important;
  }
  .hero-lite{
    padding:18px 16px !important;
  }
  .lead{
    max-width:100%;
    font-size:.95rem !important;
  }
}


/* ===== V104 cleaner mobile top + footer ===== */
@media (max-width: 640px){
  .site-header{
    background:rgba(7,16,27,.88) !important;
    border-bottom:1px solid rgba(134,185,255,.10) !important;
    box-shadow:0 3px 10px rgba(0,0,0,.10) !important;
    backdrop-filter:blur(3px) !important;
    -webkit-backdrop-filter:blur(3px) !important;
  }
  .nav{
    padding:10px 0 12px !important;
    gap:10px !important;
    align-items:flex-start !important;
  }
  .brand{
    font-size:1.02rem !important;
    letter-spacing:.01em !important;
    line-height:1.05 !important;
  }
  .nav nav{
    width:100% !important;
    display:flex !important;
    flex-wrap:nowrap !important;
    gap:8px !important;
    overflow-x:auto !important;
    padding-bottom:2px;
    scrollbar-width:none;
  }
  .nav nav::-webkit-scrollbar{
    display:none;
  }
  .nav nav a{
    flex:1 1 0 !important;
    min-width:0 !important;
    text-align:center !important;
    padding:9px 12px !important;
    min-height:40px !important;
    border-radius:999px !important;
    font-size:13px !important;
    font-weight:700 !important;
    background:rgba(255,255,255,.025);
    border:1px solid rgba(134,185,255,.10);
  }

  .hero{
    margin-top:12px !important;
  }

  .site-footer{
    margin-top:24px !important;
    padding:18px 0 26px !important;
    background:linear-gradient(180deg, rgba(6,12,20,.72), rgba(5,10,18,.86)) !important;
  }
  .footer-inner{
    min-height:auto !important;
    padding:0 !important;
  }
  .footer-center{
    gap:10px !important;
    max-width:420px;
    margin:0 auto;
  }
  .footer-brand-name{
    font-size:1rem !important;
    margin-top:2px;
  }
  .footer-center .small{
    font-size:.92rem !important;
    line-height:1.45 !important;
    color:rgba(230,238,252,.74) !important;
    max-width:300px;
  }
  .footer-socials{
    display:grid !important;
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:10px !important;
    width:100% !important;
    max-width:340px;
  }
  .footer-socials a{
    justify-content:center !important;
    text-align:center !important;
    padding:10px 12px !important;
    min-height:42px !important;
    font-size:.92rem !important;
    border-radius:16px !important;
    background:rgba(255,255,255,.025) !important;
    border:1px solid rgba(134,185,255,.12) !important;
    box-shadow:none !important;
  }
  .footer-socials a:last-child{
    grid-column:1 / -1;
    max-width:180px;
    margin:0 auto;
  }
  .footer-copy{
    margin-top:6px !important;
    font-size:.84rem !important;
    line-height:1.45 !important;
    color:rgba(158,178,206,.9) !important;
  }
}

/* extra small phones */
@media (max-width: 380px){
  .brand{
    font-size:.96rem !important;
  }
  .nav nav a{
    font-size:12.5px !important;
    padding:8px 10px !important;
  }
  .footer-socials{
    max-width:100%;
    gap:8px !important;
  }
  .footer-socials a{
    font-size:.88rem !important;
    padding:9px 10px !important;
  }
}


/* ===== V113 brand spacing + mobile centering ===== */
.brand{
  white-space:nowrap !important;
  word-spacing:0 !important;
  letter-spacing:0 !important;
  display:inline-flex;
  align-items:center;
  gap:0 !important;
}
.brand .brand-accent{
  margin-right:0 !important;
  padding-right:0 !important;
}
@media (max-width: 640px){
  .nav{
    align-items:center !important;
  }
  .brand{
    width:100%;
    justify-content:center !important;
    text-align:center !important;
    font-size:1.04rem !important;
    line-height:1.05 !important;
  }
  .site-header nav{
    justify-content:center !important;
  }
}


/* ===== V114 final ui tweaks ===== */
.offer-site-badges{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
}
.offer-actions .offer-site-badges{
  width:100%;
}
.social-icon-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:44px;
  padding:11px 16px;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
  border:1px solid rgba(134,185,255,.16);
  box-shadow:0 0 0 rgba(86,166,255,0);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.social-icon-link svg{
  width:18px;
  height:18px;
  fill:#8fbfff;
  flex:0 0 18px;
}
.social-icon-link:hover{
  transform:translateY(-1px);
  border-color:rgba(86,166,255,.34);
  background:linear-gradient(180deg, rgba(86,166,255,.16), rgba(255,255,255,.03));
  box-shadow:0 0 20px rgba(86,166,255,.16), 0 0 34px rgba(86,166,255,.08);
}
.social-icon-link:hover svg{
  fill:#d5ebff;
}

.nav nav a{
  position:relative;
  min-height:46px;
  padding:11px 18px;
  font-weight:700;
  color:#d8e6ff;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(134,185,255,.10);
  box-shadow:0 6px 14px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.03);
}
.nav nav a:hover,
.nav nav a.active{
  color:#ffffff;
  background:linear-gradient(135deg, rgba(69,132,255,.28), rgba(86,166,255,.16));
  border-color:rgba(116,173,255,.28);
  box-shadow:0 10px 24px rgba(47,123,240,.18), 0 0 0 1px rgba(116,173,255,.12) inset;
}

@media (max-width: 640px){
  .offer-site-badges{
    justify-content:flex-start;
  }
  .social-icon-link{
    width:100%;
  }
  .social-icon-link span{
    display:inline;
  }
  .nav nav a{
    min-height:44px;
    padding:10px 14px;
    font-size:14px;
  }
}
