
:root{
  --bg: #0f172b;                 /* bg-slate-900 */
  --text: #ffffff;

  --panel: rgba(2,6,24,.62);
  --panel2: rgba(2,6,24,.72);

  --stroke: rgba(255,255,255,.12);
  --stroke2: rgba(255,255,255,.18);

  --muted: rgba(255,255,255,.70);

  --accent: #f6339a;             /* pink-500 */
  --accent2: #e30076;            /* pink-600 */
  --accentRing: rgba(246,51,154,.35);

  --shadow: 0 18px 55px rgba(0,0,0,.42);
  --shadow2: 0 28px 90px rgba(0,0,0,.55);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}
::selection{ background: rgba(246,51,154,.30); }

.hidden{ display:none !important; }
b{ font-weight:800; }

.wrap{ max-width:1200px; margin:0 auto; padding:0 16px; }
.header{
  padding-top:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.main{ padding-top:18px; padding-bottom:30px; }

.grid-main{ display:grid; grid-template-columns:2fr 1fr; gap:16px; }
@media (max-width:980px){ .grid-main{ grid-template-columns:1fr; } }

.col-left, .col-right{ display:flex; flex-direction:column; gap:16px; min-width:0; }

/* Brand */
.brand{ display:flex; align-items:center; gap:12px; min-width:0; }
.brand-text{ min-width:0; }
.brand-title{
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  font-size:20px;
  font-weight:800;
  letter-spacing:-.02em;
}
.grad-text{
  background: linear-gradient(90deg, #fff 0%, var(--accent) 60%, #fff 120%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.brand-sub{ font-size:12px; color: rgba(255,255,255,.65); margin-top:2px; }

.header-actions{ display:flex; gap:10px; align-items:center; }

/* Logo */
.logo{
  width:44px; height:44px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  box-shadow: var(--shadow);
  display:grid;
  place-items:center;
}
.logo-inner{
  width:28px; height:28px;
  border-radius:50%;
  background: transparent; /* logo SVG already includes its own pink circle */
  display:grid;
  place-items:center;
  box-shadow: none;
  color: inherit;
}
.logo-mark{
  width:28px;
  height:28px;
  display:block;
  color: inherit;
  filter:none;
}
.logo-mark path{
  stroke:none !important;
}

/* Cards: simple pink border illumination on hover */
.card{
  background: var(--panel);
  border:1px solid var(--stroke);
  border-radius:20px;
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: var(--accentRing);
  box-shadow:
    var(--shadow2),
    0 0 0 1px rgba(246,51,154,.22),
    0 0 22px rgba(246,51,154,.18);
}
.card-hero{ background: var(--panel2); }

.card-head{
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.card-head-left{ display:flex; align-items:center; gap:10px; }
.card-title{
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  font-weight:800;
}
.card-sub{ font-size:12px; color: rgba(255,255,255,.65); margin-top:2px; }
/* Card body padding (content pages use .card-body) */
.card-body{
  padding: 0 18px 18px;
}
.card-body.quick-body{
  padding: 18px;
}

/* Make stacked button labels readable (Downloads / CTA blocks) */
div.btn-block{ display:flex; flex-direction:column; gap:10px; }
.btn.btn-block{ width:100%; white-space:normal; }
.btn.btn-block .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:100%;
  min-width:0;
}
.btn.btn-block .row > span:first-child{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
  flex:1 1 auto;
}
.btn.btn-block .b{
  display:block;
  min-width:0;
  line-height:1.15;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.btn.btn-block .s{
  display:block;
  min-width:0;
  font-size:11px;
  line-height:1.25;
  font-weight:700;
  color: rgba(255,255,255,.62);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.btn.btn-block i{ flex:0 0 auto; }

/* Content pages hero without the left icon */
.hero-row-simple{
  grid-template-columns: 1fr !important;
}

/* Hard overflow guards */
.card-title, .h1, .h2, .p, p, li, a{
  overflow-wrap:anywhere;
  word-break:break-word;
}


.mini{
  width:38px; height:38px;
  border-radius:16px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
  display:grid;
  place-items:center;
}

/* Hero */
.hero-top{
  padding:18px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
}
@media (max-width:720px){
  .hero-top{ flex-direction:column; align-items:stretch; }
}
.hero-actions{ display:flex; gap:10px; }

.h1{
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  font-size:28px;
  font-weight:800;
  letter-spacing:-.02em;
  margin:10px 0 6px;
}
.p{ font-size:14px; color: rgba(255,255,255,.70); margin:0; max-width:720px; }

.badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:800;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(246,51,154,.10);
  border:1px solid rgba(246,51,154,.22);
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background: var(--accent);
  animation: pulse 1.2s ease-in-out infinite;
}
.dot-ok{ background:#34d399; }
.dot-warn{ background:#fbbf24; }

.hero-row{
  padding:0 18px 12px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:12px;
  align-items:center;
}
@media (max-width:720px){
  .hero-row{ grid-template-columns:1fr; }
}

.toggle{
  display:inline-flex;
  padding:6px;
  border-radius:16px;
  gap:6px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--stroke);
}
.toggle-btn{
  border:0;
  background:transparent;
  padding:10px 14px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
  color:#fff;
  transition: transform .15s ease, background .15s ease;
}
.toggle-btn:hover{ transform: translateY(-1px); }
.toggle-btn.active{
  background: rgba(246,51,154,.16);
  box-shadow: inset 0 0 0 1px rgba(246,51,154,.22);
}

.input-wrap{ position:relative; }
.input{
  width:100%;
  padding:14px 14px 14px 42px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color:#fff;
  outline:none;
  transition: box-shadow .16s ease, border-color .16s ease, transform .16s ease;
}
.input::placeholder{ color: rgba(255,255,255,.55); }
.input:focus{
  border-color: rgba(246,51,154,.45);
  box-shadow: 0 0 0 3px rgba(246,51,154,.14);
  transform: translateY(-1px);
}
.input-ico{
  position:absolute;
  left:14px;
  top:50%;
  transform: translateY(-50%);
  pointer-events:none;
}

.hero-bottom{
  padding:0 18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
@media (max-width:720px){
  .hero-bottom{ flex-direction:column; align-items:flex-start; }
}
.tip{ font-size:12px; color: rgba(255,255,255,.60); }
.pills{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:900;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
}

/* Buttons */
.btn{
  border:0;
  cursor:pointer;
  border-radius:12px;
  padding:12px 14px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:14px;
  user-select:none;
  white-space:nowrap;
  transition: transform .15s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
}
.btn:active{ transform: scale(.98); }
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }

.btn-primary{
  background: var(--accent);
  color:#fff;
  box-shadow: 0 14px 40px rgba(246,51,154,.18);
}
.btn-primary:hover{ background: var(--accent2); }

.btn-dark{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}
.btn-dark:hover{ border-color: rgba(246,51,154,.28); }

.btn-ghost{
  background: transparent;
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
}
.btn-ghost:hover{ border-color: rgba(246,51,154,.35); background: rgba(246,51,154,.06); }

.btn-sm{ padding:10px 12px; border-radius:12px; font-size:13px; }
.btn-block{ width:100%; justify-content:space-between; }

.btn-run .btn-run-content{ display:inline-block; }

/* Icons */
.ico{ width:18px; height:18px; }
.ico-accent{ color: var(--accent); }
.ico-white{ color:#fff; }

/* Sidebar usability */
@media (min-width:1181px){
  .col-right{
    position: sticky;
    top: 18px;
    align-self: start;
    height: fit-content;
  }
}

/* Results */
.results{ padding:0 18px 18px; display:flex; flex-direction:column; gap:12px; }
.result{
  display:grid;
  grid-template-columns:108px 1fr;
  gap:12px;
  min-height:146px;
  height:auto;
  align-items:stretch;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:12px;
  box-shadow: 0 10px 26px rgba(0,0,0,.30);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.result-mid{
  min-width:0;
  display:flex;
  flex-direction:column;
  height:100%;
}

.result:hover{
  transform: translateY(-2px);
  border-color: rgba(246,51,154,.35);
  box-shadow:
    var(--shadow2),
    0 0 0 1px rgba(246,51,154,.16),
    0 0 20px rgba(246,51,154,.14);
}

.thumb{
  width:108px; height:72px;
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
}
.thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.thumb img.thumb-logo-img{ object-fit:contain; padding:14px; background: radial-gradient(circle at 30% 20%, rgba(246,51,154,.18), transparent 60%), rgba(255,255,255,.02); }

.result-title{
  font-weight:900;
  line-height:1.15;
  margin:2px 0 6px;
  /* fixed layout: allow wrap but clamp to 2 lines */
  white-space:normal;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.chips{ display:flex; gap:8px; flex-wrap:wrap; overflow:visible; }
.chip{
  font-size:11px;
  max-width: 100%;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  font-weight:900;
  color: rgba(255,255,255,.70);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
}
.result-actions{ margin-top:auto; display:flex; gap:10px; flex-wrap:wrap; overflow:visible; padding-bottom:2px; }
.result-actions::-webkit-scrollbar{ display:none; }
.result-actions{ scrollbar-width:none; -ms-overflow-style:none; }

@media (max-width:560px){
  .result{ grid-template-columns:1fr; }
  .thumb{ width:100%; height:180px; }
}


/* Skeleton */
.skeleton{ padding:0 18px 18px; display:flex; flex-direction:column; gap:12px; }
.sk{
  height:76px;
  border-radius:16px;
  background: linear-gradient(90deg, rgba(255,255,255,.04) 0%, rgba(246,51,154,.10) 40%, rgba(255,255,255,.04) 80%);
  background-size: 200% 100%;
  border:1px solid rgba(255,255,255,.12);
}
.anim-shimmer{ animation: shimmer 1.7s linear infinite; }

/* Downloads */
.dl {
    display: flex;
    flex-direction: column;
    padding: 0 18px 18px;
    gap: 12px;

    max-height: 420px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
}
.dl::-webkit-scrollbar {
    width: 10px;
}

.dl::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.22);
    border-radius: 10px;
}

.dl::-webkit-scrollbar-track {
    background: transparent;
}
.job{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
  padding:12px;
}
.job-title{ font-weight:900; }
.job-sub{ font-size:12px; color: rgba(255,255,255,.65); margin-top:4px; }

.bar{ height:10px; border-radius:999px; background: rgba(255,255,255,.10); overflow:hidden; margin-top:10px; }
.bar-in{
  height:100%;
  width:0%;
  background: var(--accent);
  border-radius:999px;
  transition: width .45s ease;
}
.job-foot{ margin-top:8px; font-size:11px; color: rgba(255,255,255,.70); display:flex; justify-content:space-between; font-weight:800; }
.job-done{ border-color: rgba(246,51,154,.32); box-shadow: 0 0 0 2px rgba(246,51,154,.12), var(--shadow2); }

/* Modal */
.modal{ position:fixed; inset:0; z-index:50; display:grid; place-items:center; padding:18px; overflow:auto; }
.modal-back{ position:absolute; inset:0; background: rgba(0,0,0,.72); backdrop-filter: blur(6px); }
.modal-box{
  position:relative;
  width:min(720px,100%);
  max-height: calc(100vh - 44px);
  height: min(720px, calc(100vh - 44px));
  background: rgba(2,6,24,.88);
  border:1px solid rgba(255,255,255,.14);
  border-radius:20px;
  padding:16px;
  box-shadow: var(--shadow2);
  display:flex;
  flex-direction:column;
  overflow:hidden;
}
.modal-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; }
.modal-title{ font-family:"Space Grotesk", Inter, system-ui, sans-serif; font-weight:900; font-size:18px; }
.modal-text{ min-height:0; margin-top:6px; font-size:14px; color: rgba(255,255,255,.70); overflow:auto; overflow-y:auto; -webkit-overflow-scrolling:touch; flex: 1 1 auto; padding-right:8px; padding-bottom:10px; }
.modal-text::-webkit-scrollbar{ width:10px; }
.modal-text::-webkit-scrollbar-thumb{ background: rgba(255,255,255,.12); border-radius:10px; }
.modal-text::-webkit-scrollbar-thumb:hover{ background: rgba(255,255,255,.18); }

.modal-note{
  margin-top:14px;
  padding:12px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.90);
  font-size:12px;
  font-weight:800;
}

/* Toast */
.toast{
  position:fixed;
  left:50%;
  bottom:22px;
  transform: translateX(-50%);
  z-index:60;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(2,6,24,.88);
  border:1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  box-shadow: var(--shadow2);
  font-weight:900;
  font-size:13px;
}
.toast.out{ opacity:0; transform: translateX(-50%) translateY(8px); transition: all .22s ease; }

/* FX toggle */
body.fx .card, body.fx .result{
  border-color: rgba(246,51,154,.26);
  box-shadow: var(--shadow2), 0 0 0 1px rgba(246,51,154,.14), 0 0 26px rgba(246,51,154,.16);
}

/* NEW: quick actions layout + folder status */
.quick-body{
  padding: 0 18px 18px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

.settings{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
}
.settings-title{
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.92);
}
.setting-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.setting-label{
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.75);
}
.select{
  appearance:none;
  background: rgba(2,6,24,.55);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 900;
  min-width: 170px;
}
.select:focus{
  outline:none;
  border-color: rgba(246,51,154,.35);
  box-shadow: 0 0 0 3px rgba(246,51,154,.18);
}
.toggle-row{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top: 10px;
  cursor:pointer;
  user-select:none;
}
.toggle-row input{ display:none; }
.toggle-ui{
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
  position:relative;
  flex: 0 0 auto;
}
.toggle-ui::after{
  content:"";
  position:absolute;
  top:50%;
  left:3px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  transition: all .18s ease;
}
.toggle-row input:checked + .toggle-ui{
  background: rgba(246,51,154,.26);
  border-color: rgba(246,51,154,.42);
}
.toggle-row input:checked + .toggle-ui::after{
  left: 21px;
  background: var(--accent);
}
.toggle-text{
  font-size: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.86);
}
.settings-hint{
  margin-top: 8px;
  font-size: 11px;
  color: rgba(255,255,255,.62);
  line-height: 1.35;
}


.folder-status{
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.70);
  word-break: break-word;
}
.folder-status.ok{
  border-color: rgba(246,51,154,.35);
  color: rgba(255,255,255,.92);
  box-shadow: 0 0 0 1px rgba(246,51,154,.12);
}
.folder-status.warn{
  border-color: rgba(255,255,255,.14);
}

/* Editorial content + ad placeholders */
.content-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1fr;
  gap:16px;
}
.article-card{ overflow:hidden; }
.article-body{
  padding: 0 18px 18px;
  color: rgba(255,255,255,.84);
  font-size: 14px;
  line-height: 1.55;
}
.article-body p{
  margin: 0 0 12px;
}
.article-h3{
  margin: 14px 0 8px;
  font-family:"Space Grotesk", Inter, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing:-.01em;
}
.article-list{
  margin: 0 0 12px 0;
  padding-left: 18px;
  color: rgba(255,255,255,.86);
}
.article-list li{
  margin: 0 0 6px;
}
.ad-slot{
  margin: 14px 0;
  padding: 12px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(246,51,154,.06), rgba(255,255,255,.02));
  border:1px dashed rgba(246,51,154,.34);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.ad-slot-label{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: rgba(255,255,255,.78);
}
.ad-slot-box{
  max-height: 260px;

  margin-top:8px;
  min-height: 90px;
  display:grid;
  place-items:center;
  border-radius: 12px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.62);
  font-weight: 800;
  text-align:center;
  padding: 10px;
}
.ad-slot-note{
  margin:8px 0 0;
  font-size:12px;
  line-height:1.4;
  color: rgba(255,255,255,.66);
}
.ad-card-side{
  overflow: hidden;
}
.ad-card-side .ad-slot{
  margin: 0;
}
.ad-slot-side .ad-slot-box{
  min-height: 120px;
}
@media (min-width: 1100px){
  .ad-slot-side .ad-slot-box{
    min-height: 180px;
  }
}

/* Animations */
@keyframes pop{ from{ transform: scale(.98); opacity:0 } to{ transform: scale(1); opacity:1 } }
@keyframes slide{ from{ transform: translateY(10px); opacity:0 } to{ transform: translateY(0); opacity:1 } }
@keyframes shimmer{ from{ background-position:-200% 0 } to{ background-position:200% 0 } }
@keyframes pulse{ 0%,100%{ transform:scale(1); opacity:1 } 50%{ transform:scale(.78); opacity:.7 } }

.anim-pop{ animation: pop .22s ease-out both; }
.anim-slide{ animation: slide .26s ease-out both; }


/* RIGHT PANEL RESPONSIVE FIXES */
.card-head-left{ min-width:0; }
.card-head-left > div{ min-width:0; }
.card-sub{ overflow-wrap:anywhere; word-break:break-word; }

.quick-body .btn{
  white-space:normal;          /* allow multi-line labels */
  min-width:0;
}
.quick-body .btn-block{
  width:100%;
  justify-content:flex-start;  /* inner .row handles alignment */
  text-align:left;
  padding:12px;
}
.quick-body .btn-block .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  width:100%;
  min-width:0;
}
.quick-body .btn-block .row > span:first-child{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
  flex:1 1 auto;
}
.quick-body .btn-block .b{
  display:block;
  min-width:0;
  line-height:1.15;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.quick-body .btn-block .s{
  display:block;
  min-width:0;
  font-size:11px;
  line-height:1.25;
  font-weight:700;
  color: rgba(255,255,255,.62);
  overflow-wrap:anywhere;
  word-break:break-word;
}
.quick-body .btn-block .ico{
  flex:0 0 auto;
}

.setting-row{
  min-width:0;
}
.setting-label{
  min-width:0;
  overflow-wrap:anywhere;
  word-break:break-word;
}
.select{
  min-width:0;                /* prevent overflow in 1/3 column */
  max-width:100%;
}

@media (max-width:1180px){
  .quick-body .btn-block{ padding:11px; }
  .setting-row{
    flex-direction:column;
    align-items:stretch;
  }
  .setting-label{
    margin-bottom:6px;
  }
  .select{
    width:100%;
  }
}


/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}


/* ===== Content pages helpers ===== */
a{ color:inherit; text-decoration:none; }
a:hover{ text-decoration:none; }

.nav{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; justify-content:flex-end; }
@media (max-width:980px){ .nav{ justify-content:flex-start; } }

.p + .p{ margin-top:10px; }

.ul{
  margin:10px 0 0 18px;
  color: rgba(255,255,255,.70);
  font-size:14px;
}
.ul li{ margin:8px 0; }

.note{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background: rgba(255,255,255,.05);
  border:1px solid var(--stroke);
  color: rgba(255,255,255,.70);
  font-size:13px;
}
/* Footer */
.foot{
  margin-top: 22px;
  padding: 10px 0 24px;
}
.foot-grid{
  display:flex;
  gap: 18px;
  align-items:flex-start;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(2,6,24,.55);
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}
.foot-title{
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .2px;
  font-size: 16px;
  line-height: 1.2;
}
.foot-sub{
  margin-top: 8px;
  max-width: 680px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.45;
}
.foot-links{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.foot-links a{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-size: 13px;
  line-height: 1;
  white-space: nowrap;
}
.foot-links a:hover{
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
@media (max-width: 980px){
  .foot-grid{ flex-direction: column; }
  .foot-links{ justify-content: flex-start; }
  .foot-sub{ max-width: 100%; }
}


.store-banner
{
    position: relative;
    overflow: hidden;

    padding: 22px;
    border-radius: 22px;

    background:
        linear-gradient(
            135deg,
            rgba(0,140,255,.14),
            rgba(140,82,255,.14)
        );

    border: 1px solid rgba(255,255,255,.06);

    backdrop-filter: blur(10px);
}

.store-banner-content
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.store-banner-left
{
    flex: 1;
    min-width: 260px;
}

.store-banner-title
{
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: 20px;
    font-weight: 700;

    margin-bottom: 10px;
}

.store-icon
{
    width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.store-icon i
{
    width: 20px;
    height: 20px;
}

.store-banner-text
{
    line-height: 1.6;
    opacity: .84;

    max-width: 720px;
}

.store-review-btn
{
    flex-shrink: 0;
}

