#dmsgCurtain{position:fixed;inset:0;z-index:2147482999;background:#040807;transition:opacity .45s;pointer-events:none}

:root{

  color-scheme:dark;

  --bg:#0b0c0e;

  --surface:#141619;

  --surface-2:#1b1e22;

  --surface-3:#22262b;

  --line:#26292e;

  --line-soft:#1d2024;

  --text:#f2f4f5;

  --muted:#9aa3a8;

  --faint:#5c6469;

  --teal:#12d8d2;

  --teal-ink:#12d8d2;

  --teal-border:rgba(18,216,210,.45);

  --teal-soft:rgba(18,216,210,.12);

  --teal-glow:rgba(18,216,210,.35);

  --magenta:#ff2ec4;

  --magenta-ink:#ff2ec4;

  --magenta-soft:rgba(255,46,196,.10);

  --red:#ff3344;

  --ph-bg:#0d0e10;

  --topbar-bg:rgba(11,12,14,.82);

  --font-display:'Unbounded',sans-serif;

  --font-body:'Instrument Sans',sans-serif;

}

/* tema claro: automático (sistema/navegador) o forzado por el visitante.

   prioridad: elección en la página (data-theme) > navegador/sistema */

@media (prefers-color-scheme: light){

  :root:not([data-theme="dark"]){

    color-scheme:light;

    --bg:#f3f5f6;

    --surface:#ffffff;

    --surface-2:#edf0f2;

    --surface-3:#e2e7e9;

    --line:#dce2e5;

    --line-soft:#e9edef;

    --text:#15181a;

    --muted:#5d676d;

    --faint:#90999f;

    --teal-ink:#0a9b96;

    --teal-border:rgba(10,155,150,.5);

    --teal-soft:rgba(10,155,150,.10);

    --teal-glow:rgba(10,155,150,.30);

    --magenta-ink:#cf1798;

    --magenta-soft:rgba(207,23,152,.07);

    --red:#df1a2b;

    --ph-bg:#ffffff;

    --topbar-bg:rgba(255,255,255,.85);

  }

  html:not([data-theme="dark"]) body::before{

    background:

      radial-gradient(900px 500px at -10% -10%, rgba(18,216,210,.06), transparent 60%),

      radial-gradient(800px 600px at 110% 110%, rgba(255,46,196,.04), transparent 60%);

  }

  html:not([data-theme="dark"]) .card:hover{

    box-shadow:0 14px 30px -14px rgba(25,45,45,.30), 0 0 0 1px rgba(10,155,150,.28), 0 0 22px -10px var(--teal-glow);

  }

}

:root[data-theme="light"]{

  color-scheme:light;

  --bg:#f3f5f6;

  --surface:#ffffff;

  --surface-2:#edf0f2;

  --surface-3:#e2e7e9;

  --line:#dce2e5;

  --line-soft:#e9edef;

  --text:#15181a;

  --muted:#5d676d;

  --faint:#90999f;

  --teal-ink:#0a9b96;

  --teal-border:rgba(10,155,150,.5);

  --teal-soft:rgba(10,155,150,.10);

  --teal-glow:rgba(10,155,150,.30);

  --magenta-ink:#cf1798;

  --magenta-soft:rgba(207,23,152,.07);

  --red:#df1a2b;

  --ph-bg:#ffffff;

  --topbar-bg:rgba(255,255,255,.85);

}

html[data-theme="light"] body::before{

  background:

    radial-gradient(900px 500px at -10% -10%, rgba(18,216,210,.06), transparent 60%),

    radial-gradient(800px 600px at 110% 110%, rgba(255,46,196,.04), transparent 60%);

}

:root[data-theme="light"] .card.sm .pname{color:#15181a;text-shadow:none}

:root[data-theme="light"] .card.sm .pdate{color:rgba(21,24,26,.62);text-shadow:none}

html[data-theme="light"] .card:hover{

  box-shadow:0 14px 30px -14px rgba(25,45,45,.30), 0 0 0 1px rgba(10,155,150,.28), 0 0 22px -10px var(--teal-glow);

}

*{margin:0;padding:0;box-sizing:border-box}

/* navegador interno de Telegram: que el gesto horizontal no

   "encadene" hacia el contenedor y cierre la web */

html,body{overscroll-behavior-x:none}

body{

  background:var(--bg);

  color:var(--text);

  font-family:var(--font-body);

  font-size:15px;

  line-height:1.5;

  min-height:100vh;

  overflow-x:hidden;

  touch-action:pan-y;

}

/* ── atmósfera de fondo ───────────────────────────── */

body::before{

  content:"";position:fixed;inset:0;z-index:0;pointer-events:none;

  background:

    radial-gradient(900px 500px at -10% -10%, rgba(18,216,210,.07), transparent 60%),

    radial-gradient(800px 600px at 110% 110%, rgba(255,46,196,.05), transparent 60%);

}

main,header{position:relative;z-index:2}



/* ── topbar ───────────────────────────────────────── */

.topbar{

  position:sticky;top:0;z-index:50;

  background:var(--topbar-bg);

  backdrop-filter:blur(14px);

  -webkit-backdrop-filter:blur(14px);

  border-bottom:1px solid var(--line-soft);

}

.topbar-inner{

  padding:13px 18px 12px;

  display:flex;align-items:center;gap:7px;flex-wrap:wrap;

  justify-content:center;position:relative;

}

.logo{

  flex-basis:100%;

  display:inline-flex;align-items:center;justify-content:center;gap:3px;

  font-family:var(--font-display);font-weight:900;font-size:23px;

  letter-spacing:.6px;color:var(--red);text-decoration:none;white-space:nowrap;

  transition:font-size .55s cubic-bezier(.22,.75,.25,1);

}

body.searching .logo{font-size:17px}

.logo{pointer-events:none}

.logo .lg{pointer-events:auto;display:inline-flex;align-items:center;gap:3px}

.logo .n{color:var(--text);font-size:.78em;line-height:1}

.search-wrap{position:relative;flex:1;min-width:150px;max-width:460px}

.search-wrap svg{position:absolute;left:12px;top:50%;transform:translateY(-50%);opacity:.45}

.search{

  width:100%;background:var(--surface);border:1px solid var(--line);

  border-radius:99px;padding:8px 16px 8px 36px;color:var(--text);

  font-family:var(--font-body);font-size:14px;outline:none;

  transition:border-color .2s, box-shadow .2s;

}

.search:focus{border-color:var(--teal-ink);box-shadow:0 0 0 3px var(--teal-soft)}

.search::placeholder{color:var(--faint)}

.stats-row{

  display:flex;justify-content:center;align-items:center;gap:10px;

  flex-wrap:nowrap;max-width:1280px;margin:0 auto;

  padding:2px 22px 16px;

}

.stats-row .count-chip{font-size:13px;padding:7px 15px}

@media (max-width:640px){

  .stats-row{padding:2px 10px 14px}

  .stats-row .count-chip{font-size:11.5px;padding:6px 11px}

}

.count-chip{

  font-size:12.5px;color:var(--muted);background:var(--surface);

  border:1px solid var(--line);border-radius:99px;padding:6px 12px;white-space:nowrap;

}

.count-chip b{color:var(--teal-ink);font-weight:700}

.settings-wrap{position:absolute;top:50%;transform:translateY(-50%);left:18px;z-index:60}

.btn-gear{

  width:36px;height:36px;border-radius:50%;cursor:pointer;

  background:var(--surface);border:1px solid var(--line);color:var(--muted);

  display:flex;align-items:center;justify-content:center;

  transition:border-color .2s,color .2s,background .2s,transform .3s;

}

.btn-gear:hover{border-color:var(--teal-ink);color:var(--teal-ink);background:var(--surface-2);transform:rotate(40deg)}

.btn-gear svg{width:18px;height:18px}

.set-panel[hidden]{display:none!important}

.set-panel{

  position:absolute;top:44px;left:0;z-index:95;min-width:236px;

  background:var(--surface);border:1px solid var(--line);border-radius:14px;

  padding:8px;display:flex;flex-direction:column;gap:3px;

  box-shadow:0 18px 50px -12px rgba(0,0,0,.6);

  animation:smInfoIn .22s ease;

}

.set-item{

  display:flex;align-items:center;gap:10px;width:100%;

  background:none;border:none;cursor:pointer;border-radius:10px;

  padding:10px 12px;font-family:var(--font-body);font-size:13.5px;color:var(--text);

  text-align:left;

}

button.set-item:hover{background:var(--surface-2)}

.set-ic{width:18px;height:18px;display:flex;color:var(--muted);flex-shrink:0}

.set-ic svg{width:18px;height:18px}

.set-val{margin-left:auto;font-size:12px;color:var(--teal-ink);font-weight:650}

.set-item.gt-row{cursor:default;align-items:center;flex-wrap:wrap}

.set-panel .gtranslate_wrapper{

  margin-left:auto;display:flex;flex-wrap:wrap;gap:5px;

  justify-content:flex-end;max-width:140px;

}

.set-panel .gtranslate_wrapper a{display:inline-flex;opacity:.55;transition:opacity .2s,transform .2s}

.set-panel .gtranslate_wrapper a:hover{opacity:1;transform:scale(1.12)}

.set-panel .gtranslate_wrapper a.gt-current-lang{opacity:1;outline:2px solid var(--teal-ink);outline-offset:1px;border-radius:3px}

.set-panel .gtranslate_wrapper img{width:22px;height:auto;border-radius:3px;display:block}

.btn-share{

  display:none;position:absolute;top:50%;transform:translateY(-50%);right:66px;z-index:60;

  background:#ffa8cd;color:#46102c;font-weight:700;font-size:15px;

  border-radius:99px;padding:11px 24px;text-decoration:none;white-space:nowrap;

  font-family:var(--font-body);

  box-shadow:0 4px 20px -6px rgba(255,140,190,.5);

  transition:transform .2s, background .2s, box-shadow .2s;

}

.btn-share:hover{transform:translateY(-1px);background:#ffbeda;box-shadow:0 8px 26px -6px rgba(255,140,190,.6)}

.btn-share .pl{font-weight:900;margin-right:4px}

/* FAB de compartir (solo móvil): arriba, expandido al entrar y

   plegado a "+" tras el primer scroll o 3 segundos */

.fab-share{

  display:inline-flex;position:fixed;top:128px;right:12px;z-index:70;

  align-items:center;height:46px;

  opacity:0;pointer-events:none;transform:translateY(-8px);

  background:#ffa8cd;color:#46102c;font-weight:700;font-size:14px;

  border-radius:99px;padding:0 18px 0 14px;text-decoration:none;white-space:nowrap;

  font-family:var(--font-body);

  max-width:280px;overflow:hidden;

  box-shadow:0 6px 22px -6px rgba(255,140,190,.55), 0 4px 14px rgba(0,0,0,.35);

  transition:max-width .5s cubic-bezier(.2,.7,.2,1),

             padding .5s cubic-bezier(.2,.7,.2,1),

             opacity .3s, transform .3s;

}

.fab-share.show{opacity:1;pointer-events:auto;transform:none}

body.set-open .fab-share{opacity:0!important;pointer-events:none!important}

body.searching .fab-share{display:none !important}

.fab-share .pl{font-weight:900;margin-right:6px;font-size:18px;flex-shrink:0;transition:margin .5s cubic-bezier(.2,.7,.2,1)}

.fab-share .txt{

  transition:opacity .3s, max-width .5s cubic-bezier(.2,.7,.2,1);

  max-width:220px;overflow:hidden;white-space:nowrap;

}

.fab-share.min{

  max-width:58px;width:58px;padding:0;justify-content:center;

  border-radius:14px;

  animation:fabNudge 9s ease-in-out 5s infinite;

}

.fab-share.min .pl{margin:0;font-size:24px}

/* latido sutil cada ~9s: pulso + onda que se desvanece */

@keyframes fabNudge{

  0%,86%,100%{transform:scale(1)}

  89%{transform:scale(1.14)}

  93%{transform:scale(.97)}

  96%{transform:scale(1.06)}

}

.fab-share.min::after{

  content:"";position:absolute;inset:0;border-radius:inherit;

  pointer-events:none;opacity:0;

  animation:fabRing 9s ease-out 5s infinite;

}

@keyframes fabRing{

  0%,86%{box-shadow:0 0 0 0 rgba(255,140,190,.65);opacity:0}

  88%{opacity:1}

  100%{box-shadow:0 0 0 18px rgba(255,140,190,0);opacity:0}

}

body.lite .fab-share.min{animation:none}

body.lite .fab-share.min::after{animation:none}

.fab-share.min .txt{opacity:0;max-width:0}



/* ── popup "sube tu grupo" ───────────────────────── */

.modal-ov{

  position:fixed;inset:0;z-index:200;

  background:rgba(5,6,8,.62);

  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);

  display:flex;align-items:center;justify-content:center;padding:18px;

}

.modal-ov[hidden]{display:none}

body.modal-lock{position:fixed;left:0;right:0;width:100%;overflow:hidden}

.smodal{

  position:relative;width:100%;max-width:420px;

  background:var(--surface);border:1px solid var(--line);border-radius:24px;

  padding:38px 30px 30px;text-align:center;

  box-shadow:0 30px 80px -20px rgba(0,0,0,.7);

  animation:smIn .35s cubic-bezier(.2,.8,.3,1.15);

}

@keyframes smIn{from{opacity:0;transform:scale(.92) translateY(12px)}}

.sm-x{

  position:absolute;top:12px;right:14px;width:34px;height:34px;

  border-radius:50%;border:1px solid var(--line);background:var(--surface-2);

  color:var(--muted);font-size:17px;cursor:pointer;line-height:1;

}

.sm-x:hover{color:var(--text);border-color:var(--muted)}

.sm-icon{

  width:92px;height:92px;margin:0 auto 18px;border-radius:24px;

  overflow:hidden;

  box-shadow:0 14px 36px -10px rgba(236,63,242,.55);

}

.sm-icon img{width:100%;height:100%;display:block}

.smodal h3{font-family:var(--font-display);font-weight:700;font-size:21px;margin-bottom:10px}

.smodal .sm-sub{color:var(--muted);font-size:14.5px;margin-bottom:22px}

.sm-bot{

  color:var(--text);font-weight:700;cursor:pointer;white-space:nowrap;

  border-bottom:1px dashed var(--faint);

}

.sm-bot:hover{color:var(--teal-ink);border-color:var(--teal-ink)}

.sm-tg{

  display:flex;align-items:center;justify-content:center;gap:9px;

  background:#2AABEE;color:#fff;font-weight:700;font-size:15.5px;

  border-radius:14px;padding:14px 18px;text-decoration:none;

  box-shadow:0 10px 28px -8px rgba(42,171,238,.6);

  transition:transform .2s, background .2s;

}

.sm-tg:hover{transform:translateY(-1px);background:#3db8f5}

.sm-tg svg{width:19px;height:19px;fill:#fff;margin-left:-2px}

.sm-manual{

  display:block;margin-top:14px;font-size:13px;

  color:var(--teal-ink);text-decoration:none;

}

.sm-manual:hover{text-decoration:underline}

.smodal{max-height:calc(100dvh - 36px);overflow-y:auto;scrollbar-width:thin}

.sm-info-t{

  display:inline-flex;align-items:center;gap:7px;

  margin:18px auto 0;cursor:pointer;

  background:var(--surface-2);border:1px solid var(--line);

  border-radius:99px;padding:9px 18px;

  font-family:var(--font-body);font-size:13px;font-weight:600;color:var(--muted);

  transition:border-color .2s,color .2s,background .2s;

}

.sm-info-t:hover{color:var(--text);border-color:var(--teal-ink);background:var(--surface-3)}

.sm-info-t .chev{color:var(--teal-ink)}

.sm-info-t .chev{display:inline-block;transition:transform .25s;margin-left:4px}

.sm-info-t.open .chev{transform:rotate(180deg)}

.sm-info{

  margin-top:14px;padding-top:16px;border-top:1px solid var(--line-soft);

  text-align:left;animation:smInfoIn .3s ease;

}

@keyframes smInfoIn{from{opacity:0;transform:translateY(-4px)}}

.sm-info h4{font-size:13.5px;font-weight:700;margin-bottom:2px}

.sm-info .bi-at{font-size:12px;color:var(--teal-ink);font-weight:600;margin-bottom:8px;display:block}

.sm-info p{font-size:12.5px;color:var(--muted);line-height:1.55;margin-bottom:12px}

.sm-info ul{list-style:none;display:flex;flex-direction:column;gap:7px}

.sm-info li{

  position:relative;padding-left:20px;

  font-size:12.5px;color:var(--muted);line-height:1.45;

}

.sm-info li::before{

  content:"✓";position:absolute;left:0;top:0;

  color:var(--teal-ink);font-weight:800;font-size:12px;

}

.sm-info li b{color:var(--text);font-weight:650}



/* ── clon del sistema real de fanz100.com: 2 pasos ── */

/* paso 1: modal del AD (una vez por sesión) */

.pmodal{

  background:linear-gradient(135deg,#1a1a1a,#2d2d2d);

  padding:24px;border-radius:20px;max-width:900px;width:94%;

  text-align:center;box-shadow:0 20px 60px rgba(0,0,0,.8);position:relative;

  max-height:calc(100dvh - 28px);overflow-y:auto;display:flex;flex-direction:column;

  animation:smIn .3s ease;

}

.pmodal .p-t{

  color:#fff;font-size:clamp(20px,4.5vw,32px);font-weight:bold;

  margin-bottom:15px;line-height:1.4;text-shadow:2px 2px 4px rgba(0,0,0,.5);

}

.pmodal video{

  width:100%;max-width:100%;max-height:72vh;object-fit:contain;aspect-ratio:3/2;height:auto;display:block;flex:0 1 auto;min-height:0;

  border-radius:15px;margin-bottom:20px;box-shadow:0 10px 40px rgba(0,0,0,.7);

  cursor:pointer;background:#000;

}

.pmodal .p-row{

  color:#888;font-size:14px;margin-bottom:15px;

  display:flex;align-items:center;justify-content:center;gap:15px;flex-wrap:wrap;

}

.pmodal .p-row b{color:#28a745;font-weight:bold;font-size:18px}

.pmodal .p-bot{

  background:linear-gradient(135deg,#007bff,#0056b3);color:#fff;

  padding:6px 15px;border-radius:10px;font-weight:bold;font-size:18px;

  box-shadow:0 4px 15px rgba(0,123,255,.6);

}

.pmodal .p-btns{display:flex;gap:12px;justify-content:center;flex-wrap:wrap;max-width:540px;margin:0 auto}

.pmodal .p-btns button{

  flex:1;min-width:150px;padding:15px 28px;border:none;border-radius:10px;

  font-size:16px;font-weight:bold;cursor:pointer;color:#fff;

  font-family:var(--font-body);transition:transform .3s;

}

.pmodal .p-btns button:hover{transform:scale(1.05)}

.pmodal .p-no{background:#dc3545;box-shadow:0 4px 15px rgba(220,53,69,.4)}

.pmodal .p-yes{background:#28a745;box-shadow:0 4px 15px rgba(40,167,69,.4)}



/* paso 2: modal "Grupo verificado" (clon claro, como la web) */

.vmodal{

  background:#fff;color:#212529;border-radius:12px;

  width:92%;max-width:410px;padding:22px 22px 0;

  box-shadow:0 20px 60px rgba(0,0,0,.55);

  animation:smIn .3s ease;text-align:left;

}

.vmodal .v-head{display:flex;align-items:flex-start;gap:10px;margin-bottom:14px}

.vmodal .v-head .vk{color:#28a745;font-size:22px;font-weight:800;line-height:1}

.vmodal h4{font-size:16px;margin:0 0 2px;color:#212529}

.vmodal .vh{font-size:13px;color:#6c757d}

.vmodal .v-norms{

  background:#f8f9fa;border-radius:8px;padding:11px 14px;margin-bottom:20px;

  font-size:14px;font-weight:bold;color:#28a745;

}

.vmodal .v-count-wrap{text-align:center;padding:4px 0 15px}

.vmodal .v-count{

  display:inline-block;padding:10px 20px;background:#f8f9fa;border-radius:6px;

  margin-bottom:15px;color:#6c757d;font-size:15px;

}

.vmodal .v-count b{font-weight:bold;color:#28a745}

.vmodal .v-go{

  display:block;width:100%;padding:12px;background:#28a745;color:#fff;

  border:none;border-radius:6px;cursor:pointer;font-weight:bold;font-size:15px;

  font-family:var(--font-body);

}

.vmodal .v-go:hover{background:#31b853}

.vmodal .v-foot{

  display:flex;justify-content:flex-end;border-top:1px solid #e9ecef;

  margin:18px -22px 0;padding:12px 16px;

}

.vmodal .v-close{

  background:#6c757d;color:#fff;border:none;border-radius:6px;

  padding:9px 20px;font-size:13.5px;font-weight:600;cursor:pointer;

  font-family:var(--font-body);

}



.rules-sub{font-size:13px;color:var(--faint);margin-bottom:14px}

.rules-list{list-style:none;display:flex;flex-direction:column;gap:11px}

.rules-list li{

  background:var(--surface-2);border-radius:10px;padding:12px 15px;

  font-size:14px;color:var(--muted);line-height:1.45;

}

.rules-list li b{color:var(--text)}

.ios-tip[hidden]{display:none!important}

.ios-tip{

  position:fixed;left:0;right:0;bottom:0;z-index:80;

  display:flex;align-items:center;gap:10px;

  background:linear-gradient(90deg,#13242e,#10202c);

  border-top:1px solid rgba(42,171,238,.3);

  padding:10px 14px calc(10px + env(safe-area-inset-bottom));

  font-size:13px;color:var(--text);

  box-shadow:0 -8px 24px rgba(0,0,0,.35);

}

:root[data-theme="light"] .ios-tip{background:linear-gradient(90deg,#eaf5fc,#e3f1fb)}

.ios-tip .it-t{flex:1;min-width:0}

.ios-tip .it-go{

  flex-shrink:0;background:#2AABEE;color:#fff;border:none;cursor:pointer;

  font-family:var(--font-body);font-weight:700;font-size:12.5px;

  border-radius:99px;padding:7px 14px;

}

.ios-tip .it-x{

  flex-shrink:0;background:none;border:none;cursor:pointer;

  color:var(--faint);font-size:14px;padding:4px 6px;

}

.v-ios{

  display:none;text-align:center;font-size:12.5px;color:#2AABEE;

  margin-top:12px;cursor:pointer;text-decoration:underline;text-underline-offset:2px;

}

body.is-ios .v-ios{display:block}

.ios-steps{margin:0 0 18px 18px;display:flex;flex-direction:column;gap:10px}

.ios-steps li{font-size:13.5px;color:var(--muted);line-height:1.5;padding-left:4px}

.ios-steps li b{color:var(--text)}

.ios-go{

  display:flex;align-items:center;justify-content:center;gap:8px;

  background:#2AABEE;color:#fff;font-weight:700;font-size:14.5px;

  border-radius:12px;padding:13px;text-decoration:none;margin-bottom:12px;

  box-shadow:0 8px 24px -8px rgba(42,171,238,.55);

  transition:transform .2s, background .2s;

}

.ios-go:hover{transform:translateY(-1px);background:#3db8f5}

.ios-tuto{

  display:block;text-align:center;font-size:13px;

  color:var(--teal-ink);text-decoration:none;

}

.ios-tuto:hover{text-decoration:underline}

.info-legal p{font-size:13.5px;color:var(--muted);line-height:1.6;margin-bottom:13px}

.info-legal p b{color:var(--text)}

.info-legal .i-dmca{

  border-top:1px solid var(--line-soft);padding-top:13px;

  font-size:12.5px;color:var(--faint);

}

.info-legal a{color:var(--teal-ink);text-decoration:none}

.info-legal a:hover{text-decoration:underline}



/* modo lite: recortes para hardware débil */

body.lite .topbar{backdrop-filter:none;-webkit-backdrop-filter:none;background:var(--bg)}

body.lite .rise{animation:none;opacity:1}

body.lite .p-blur.live,body.lite .h-blur.live{filter:none}



/* cabecera compacta mientras la portada está a la vista */

.topbar-inner,.search,.btn-gear,.btn-gear svg,.btn-share,.settings-wrap,.topbar .count-chip{

  transition:all .55s cubic-bezier(.22,.75,.25,1);

}

body.hero-on .topbar-inner{padding:7px 18px 6px;gap:5px}

body.hero-on .logo{font-size:27px}

body.hero-on .search{padding:6px 14px 6px 34px;font-size:13px}

body.hero-on .btn-gear{width:31px;height:31px}

body.hero-on .btn-gear svg{width:15px;height:15px}

body.hero-on .btn-share{font-size:13.5px;padding:9px 18px}

body.hero-on .settings-wrap{top:50%}

@media (max-width:640px){

  body.hero-on .topbar-inner{padding:8px 12px 7px}

  body.hero-on .logo{font-size:31px}

  body.hero-on .settings-wrap{top:9px}

  body.hero-on .btn-gear{width:32px;height:32px}

}



/* ── stage ────────────────────────────────────────── */

.stage{padding:12px 10px 80px}

@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}

.rise{opacity:0;animation:rise .5s cubic-bezier(.2,.7,.2,1) forwards}

.empty{text-align:center;padding:80px 20px;color:var(--muted)}

.empty .big{font-size:40px;margin-bottom:10px}



/* ── hero destacado ──────────────────────────────── */

.hero-wrap{max-width:1280px;margin:0 auto;padding:10px 22px 18px}

.hero{

  position:relative;border-radius:20px;overflow:hidden;

  border:1px solid var(--line);

  background:var(--surface);

  display:grid;grid-template-columns:1.1fr 1fr;min-height:360px;

  animation:heroIn 1.1s ease;

  cursor:pointer;

}

@keyframes heroIn{from{opacity:0;transform:scale(.988)}}

.hero .h-txt{

  padding:42px 18px 42px 40px;display:flex;flex-direction:column;justify-content:center;gap:17px;

  position:relative;z-index:2;

}

.hero .h-kicker{

  display:inline-flex;align-items:center;gap:10px;align-self:flex-start;

  font-family:var(--font-display);

  font-size:16px;font-weight:700;letter-spacing:1.2px;text-transform:uppercase;

  color:var(--magenta-ink);

}

.hero .h-kicker::before{content:"";width:28px;height:3px;background:var(--magenta-ink);border-radius:3px}

@media (max-width:640px){

  .hero .h-kicker{

    font-size:13.5px;letter-spacing:1px;line-height:1.35;

    max-width:100%;flex-wrap:wrap;

  }

  .hero .h-sub{font-size:15.5px}

  .hero .h-cta{width:100%}

  .hero .btn-primary{

    flex:1;text-align:center;padding:14px 26px;font-size:16px;

  }

}

.hero h2{

  font-family:var(--font-display);font-weight:700;font-size:clamp(24px,3.4vw,40px);

  line-height:1.12;letter-spacing:-.5px;

  overflow-wrap:anywhere;

  /* altura SIEMPRE de 2 líneas: la rotación no mueve el muro */

  min-height:2.24em;

  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;

}

.hero .h-sub{color:var(--muted);font-size:15px;max-width:42ch}

.hero .h-cta{display:flex;gap:12px;align-items:center;flex-wrap:wrap}

.btn-primary{

  background:var(--teal);color:#04211f;font-weight:700;font-size:14.5px;

  border:none;border-radius:99px;padding:12px 26px;cursor:pointer;text-decoration:none;

  font-family:var(--font-body);

  transition:transform .2s, box-shadow .2s, background .2s;

  box-shadow:0 6px 26px -8px var(--teal-glow);

}

.btn-primary:hover{transform:translateY(-2px);background:#3ff0ea;box-shadow:0 10px 34px -8px var(--teal-glow)}

.btn-ghost{

  background:transparent;color:var(--text);font-weight:600;font-size:14.5px;

  border:1px solid var(--line);border-radius:99px;padding:12px 22px;cursor:pointer;text-decoration:none;

  transition:border-color .2s, background .2s;

}

.btn-ghost:hover{border-color:var(--muted);background:var(--surface-2)}

.hero .h-img{position:relative;overflow:hidden}

.hero .h-img .h-blur{

  position:absolute;inset:-24px;z-index:0;

  background-size:cover;background-position:center;

}

.hero .h-img .h-blur.live{filter:blur(36px) saturate(1.15) brightness(.6)}

.hero .h-img::before{

  content:"";position:absolute;inset:0;z-index:1;

  background:linear-gradient(to right, var(--surface) 0%, transparent 28%);

}

.hero .h-img img{

  position:absolute;inset:0;width:100%;height:100%;

  object-fit:contain;z-index:2;

  filter:drop-shadow(0 10px 34px rgba(0,0,0,.55));

  transition:transform .5s cubic-bezier(.2,.7,.2,1), opacity 1s ease;

}

.hero:hover .h-img img{transform:scale(1.03)}

.hero .h-glow{

  position:absolute;inset:0;z-index:0;pointer-events:none;

  background:radial-gradient(420px 320px at 18% 80%, var(--magenta-soft), transparent 70%),

             radial-gradient(380px 280px at 8% 10%, var(--teal-soft), transparent 70%);

}

/* stats de la portada SOBRE la foto, sin placa:

   miembros a la izquierda · votos a la derecha */

.hero .h-stats{

  position:absolute;top:14px;left:16px;right:16px;z-index:3;

  display:flex;align-items:center;justify-content:space-between;gap:17px;

  pointer-events:none;

}

.hero .h-stats .hst{

  display:inline-flex;align-items:center;gap:6px;

  font-size:16.5px;font-weight:800;letter-spacing:.2px;color:#fff;

  text-shadow:0 1px 3px rgba(0,0,0,.9), 0 2px 12px rgba(0,0,0,.6);

}

.hero .h-stats .hst svg{

  width:16px;height:16px;flex-shrink:0;color:var(--teal);

  filter:drop-shadow(0 1px 2px rgba(0,0,0,.8));

}

.hero .h-stats .hst.vote{margin-left:auto}

.hero .h-stats .hst.vote svg{color:currentColor}



/* ── carriles horizontales: bloque con entidad propia ── */

.rail{

  grid-column:1/-1;position:relative;min-width:0;

  margin:26px 0;

  background:linear-gradient(90deg,

    rgba(255,255,255,.17),

    rgba(255,255,255,.02) 55%,

    rgba(255,255,255,.12) 100%), var(--surface-2);

  border:1px solid var(--line);

  border-top:1px solid rgba(255,255,255,.14);

  border-radius:20px;

  padding:18px 18px 12px;

  overflow:hidden;

  box-shadow:0 22px 50px -28px rgba(0,0,0,.65), 0 2px 14px -8px rgba(0,0,0,.4);

}

.rail::before{

  content:"";position:absolute;inset:0;border-radius:inherit;pointer-events:none;

  background:radial-gradient(640px 200px at 50% 0%, rgba(255,255,255,.05), transparent 75%);

  opacity:.9;

}

:root[data-theme="light"] .rail{

  background:linear-gradient(90deg,

    rgba(0,0,0,.11),

    rgba(0,0,0,.012) 55%,

    rgba(0,0,0,.08) 100%), var(--surface-2);

  box-shadow:0 22px 44px -30px rgba(30,40,50,.35), 0 2px 12px -8px rgba(30,40,50,.18);

  border-top-color:rgba(0,0,0,.12);

}

.rail-head{

  position:relative;

  display:flex;align-items:center;gap:16px;flex-wrap:wrap;

  margin-bottom:14px;padding-right:88px;

}

.rail-head h3{

  font-family:var(--font-display);font-weight:700;font-size:16px;letter-spacing:.2px;

}

.rail-head h3 i{font-style:normal;color:var(--magenta-ink)}

.rail-flags{display:flex;gap:6px}

.rail-flags .cflag{padding:5px 11px;font-size:12px}

.rail-body{position:relative}

.rnav{

  position:absolute;top:50%;transform:translateY(-50%);z-index:6;

  width:42px;height:42px;border-radius:50%;cursor:pointer;

  background:var(--topbar-bg);backdrop-filter:blur(8px);-webkit-backdrop-filter:blur(8px);

  border:1px solid var(--line);color:var(--text);

  font-size:21px;line-height:1;display:flex;align-items:center;justify-content:center;

  box-shadow:0 8px 26px -6px rgba(0,0,0,.65);

  opacity:.92;

  transition:opacity .25s,border-color .2s,color .2s,transform .2s,box-shadow .2s;

}

.rnav.prev{left:10px}

.rnav.next{right:10px}

.rail-body:hover .rnav{opacity:1}

.rnav:hover{

  border-color:var(--teal-ink);color:var(--teal-ink);

  transform:translateY(-50%) scale(1.1);

  box-shadow:0 10px 30px -6px rgba(0,0,0,.75),0 0 0 4px var(--teal-soft);

}

@media (max-width:640px){.rnav{display:none}}

.rail-scroll{

  display:flex;gap:8px;overflow-x:auto;scroll-snap-type:x mandatory;

  padding:2px 2px 8px;scroll-padding-left:2px;scrollbar-width:none;

  touch-action:pan-x pan-y;overscroll-behavior-x:contain;

  mask-image:linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);

  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 16px, #000 calc(100% - 16px), transparent 100%);

}

.rail-scroll::-webkit-scrollbar{display:none}

.rail-scroll{user-select:none}

.rail-scroll.dragging{scroll-snap-type:none}

.rail-scroll.auto{scroll-snap-type:none}

.rail-scroll img{-webkit-user-drag:none;user-select:none}

.rail-scroll .card{flex:0 0 206px;scroll-snap-align:start;scroll-snap-stop:always}

.rail-scroll .card .pname{font-size:14px}

.rail-scroll .card .mbadge{font-size:12px;padding:4px 8px;top:8px;left:8px}

.rail-scroll .card .mbadge svg{width:12px;height:12px}

.rail-scroll .card .vbadge{font-size:11.5px;padding:4px 7px;top:8px;right:8px}

.rail-scroll .card .vbadge svg{width:10.5px;height:10.5px}

.rail-scroll .card .pdate{font-size:11px}

.rail-scroll .card .cfoot{padding:10px 11px}

@media (max-width:640px){

  .rail{padding:14px 12px 8px;border-radius:14px}

  .rail-nav{display:none}

  .rail-head{padding-right:0}

  .rail-scroll .card{flex-basis:172px}

}



/* ── barra de tamaño (solo PC): 3 densidades del muro ── */

.sizebar{

  display:flex;justify-content:flex-end;align-items:center;gap:12px;

  padding:0 4px 12px;

}

.sizebar .sz-ctrl{

  display:flex;align-items:center;gap:11px;

  background:var(--surface);border:1px solid var(--line);

  border-radius:99px;padding:7px 16px;

  box-shadow:0 4px 16px -8px rgba(0,0,0,.4);

}

.sizebar .sz-l{font-size:12.5px;font-weight:650;color:var(--muted)}

.sizebar svg{width:15px;height:15px;color:var(--muted);flex-shrink:0}

.sizebar svg.big{width:19px;height:19px}

.sizebar input[type=range]{

  width:170px;cursor:pointer;-webkit-appearance:none;appearance:none;

  height:5px;border-radius:99px;background:var(--surface-3);outline:none;

}

.sizebar input[type=range]::-webkit-slider-thumb{

  -webkit-appearance:none;appearance:none;

  width:17px;height:17px;border-radius:50%;

  background:var(--teal-ink);border:2.5px solid var(--surface);

  box-shadow:0 1px 6px rgba(0,0,0,.45);cursor:pointer;

  transition:transform .15s;

}

.sizebar input[type=range]::-webkit-slider-thumb:hover{transform:scale(1.2)}

.sizebar input[type=range]::-moz-range-thumb{

  width:15px;height:15px;border-radius:50%;

  background:var(--teal-ink);border:2.5px solid var(--surface);cursor:pointer;

}



/* vista feed en PC: una card por fila, como en móvil */

.sz-feed{

  width:40px;height:40px;border-radius:12px;cursor:pointer;flex-shrink:0;

  background:var(--surface);border:1px solid var(--line);color:var(--muted);

  display:flex;align-items:center;justify-content:center;

  box-shadow:0 4px 16px -8px rgba(0,0,0,.4);

  transition:border-color .2s,color .2s,background .2s,transform .2s;

}

.sz-feed:hover{transform:translateY(-1px)}

.sz-feed svg{width:18px;height:18px}

.sz-feed:hover{border-color:var(--teal-ink);color:var(--teal-ink)}

.sz-feed.on{border-color:var(--teal-ink);color:var(--teal-ink);background:var(--teal-soft)}

body.feedview .sizebar .sz-ctrl{display:none}

@media (min-width:641px){

  body.feedview .cards-grid{

    grid-template-columns:1fr!important;max-width:680px;margin:0 auto;gap:12px;

  }

  body.feedview .card.sm .pic{aspect-ratio:auto!important;flex:none!important;height:180px!important}

  body.feedview .card.sm .pic .ph{inset:10px!important}

  body.feedview .duo{display:contents}

  body.feedview .duo .card .pic{aspect-ratio:auto!important;flex:none!important;height:180px!important}

}



/* ── muro de cards: retícula uniforme con marco CUADRADO ──

   la foto de grupo de Telegram es cuadrada (640x640): el marco

   1:1 la muestra exacta, sin franja sobrante ni recorte.

   3 tamaños vía data-gs en body (slider) */

.cards-grid{

  display:grid;grid-template-columns:repeat(auto-fill,minmax(252px,1fr));gap:8px;

}

body[data-gs="2"] .cards-grid{grid-template-columns:repeat(auto-fill,minmax(330px,1fr))}

body[data-gs="2"] .card .pname{font-size:18.5px}

.card{

  position:relative;border-radius:10px;overflow:hidden;

  background:var(--surface);

  border:1px solid var(--line);cursor:pointer;

  transition:transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;

  text-decoration:none;display:flex;flex-direction:column;

}

.card:hover{

  transform:translateY(-3px);

  border-color:rgba(18,216,210,.5);

  box-shadow:0 18px 44px -12px rgba(0,0,0,.7), 0 0 0 1px rgba(18,216,210,.25), 0 0 34px -6px var(--teal-glow);

}

/* sin foto: celda completa, pero el mosaico como azulejo interior

   enmarcado — se percibe más ligero sin romper la retícula */

.card.sm .pic{aspect-ratio:auto;flex:1;background:var(--surface)}

.card.sm .pic .ph{inset:13px;border-radius:9px}

.card.sm .mbadge{top:23px;left:23px;font-size:13px;padding:4px 9px}

.card.sm .mbadge svg{width:13px;height:13px}

.card.sm .vbadge{top:23px;right:23px;font-size:12px;padding:4px 8px}

.card.sm .vbadge svg{width:11.5px;height:11.5px}

.card.sm .cfoot{padding:22px 26px}

.card.sm .pname{font-size:15.5px}

.card.sm .pdate{font-size:11.5px}

/* pareja de sin-foto consecutivos: dos bandas apiladas en UNA celda */

.duo{display:flex;flex-direction:column;gap:8px;min-height:0}

.duo .card{flex:1;min-height:0}

.duo .card .pic .ph{inset:10px}

.duo .card .mbadge{top:18px;left:18px;font-size:12.5px;padding:4px 8px}

.duo .card .vbadge{top:18px;right:18px;font-size:11.5px;padding:3px 7px}

.duo .card .vbadge svg{width:11px;height:11px}

.duo .card .cfoot{padding:16px 20px;gap:2px}

.duo .card .pname{font-size:14px}

.duo .card .pdate{font-size:11px}

.duo .card .join{font-size:11.5px;padding:5px 13px;right:18px;bottom:16px}

/* marco de foto: cuadrado, con placeholder de marca mientras carga */

.card .pic{

  position:relative;aspect-ratio:1/1;overflow:hidden;

  background-color:var(--surface-2);

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='128' height='96'%3E%3Cg fill='%2312d8d2' fill-opacity='0.05' font-family='Arial,sans-serif' font-weight='700' font-style='italic' font-size='22'%3E%3Ctext x='6' y='32' transform='rotate(-12 6 32)'%3Efanz%3C/text%3E%3Ctext x='70' y='82' transform='rotate(-12 70 82)'%3Efanz%3C/text%3E%3C/g%3E%3C/svg%3E");

  background-size:128px 96px;

}

.card .pic .p-blur{

  position:absolute;inset:-18px;z-index:0;

  background-size:cover;background-position:center;

}

.card .pic .p-blur.live{filter:blur(22px) saturate(1.1) brightness(.74)}

.card .pic > img{

  position:absolute;inset:0;width:100%;height:100%;z-index:1;

  object-fit:contain;object-position:center bottom;

  transition:transform .5s cubic-bezier(.2,.7,.2,1), opacity 1s ease;

}

.card:hover .pic > img{transform:scale(1.04)}

/* azulejo sin foto: negro con mosaico fanz rojo */

.card .pic .ph{

  position:absolute;inset:0;

  background-color:var(--ph-bg);

  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='104' height='78'%3E%3Cg fill='%23ff3344' fill-opacity='0.16' font-family='Arial,sans-serif' font-weight='700' font-style='italic' font-size='17'%3E%3Ctext x='4' y='20' transform='rotate(-12 4 20)'%3Efanz%3C/text%3E%3Ctext x='56' y='44' transform='rotate(-12 56 44)'%3Efanz%3C/text%3E%3Ctext x='10' y='68' transform='rotate(-12 10 68)'%3Efanz%3C/text%3E%3C/g%3E%3C/svg%3E");

  background-size:104px 78px;

  transition:transform .5s cubic-bezier(.2,.7,.2,1);

}

.card:hover .pic .ph{transform:scale(1.05)}

/* badge de miembros: placa opaca, legible sobre cualquier foto */

.card .mbadge{

  position:absolute;top:10px;left:10px;z-index:2;

  display:inline-flex;align-items:center;gap:6px;

  background:rgba(8,9,11,.86);

  border-radius:8px;padding:5px 11px;

  font-size:14.5px;font-weight:800;color:#fff;letter-spacing:.3px;

  box-shadow:0 2px 10px rgba(0,0,0,.35);

}

.card .mbadge svg{width:14.5px;height:14.5px;flex-shrink:0;color:var(--teal)}

/* badge de puntos (votos de la comunidad): arriba a la derecha */

.card .vbadge{

  position:absolute;top:10px;right:10px;z-index:2;

  display:inline-flex;align-items:center;gap:5px;

  background:rgba(8,9,11,.86);

  border-radius:8px;padding:5px 10px;

  font-size:13.5px;font-weight:800;color:#fff;letter-spacing:.3px;

  box-shadow:0 2px 10px rgba(0,0,0,.35);

}

.card .vbadge svg{width:13px;height:13px;flex-shrink:0;color:currentColor}

/* nombre + fecha sobre la base de la foto */

.card .cfoot{

  position:absolute;left:0;right:0;bottom:0;z-index:2;padding:12px 14px;

  display:flex;flex-direction:column;gap:3px;

}

.card .pname{

  font-weight:700;font-size:17px;line-height:1.25;color:#fff;

  text-shadow:0 1px 3px rgba(0,0,0,.85), 0 2px 14px rgba(0,0,0,.55);

  display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;

}

.card .pdate{

  font-size:12.5px;font-weight:500;color:rgba(255,255,255,.75);

  text-shadow:0 1px 3px rgba(0,0,0,.85), 0 2px 8px rgba(0,0,0,.5);

}

.card .join{

  position:absolute;right:12px;bottom:12px;z-index:3;

  background:var(--teal);color:#04211f;font-weight:700;font-size:13px;

  border-radius:99px;padding:6px 16px;

  opacity:0;transform:translateY(8px);

  transition:opacity .25s, transform .25s, background .2s;

}

.card:hover .join{opacity:1;transform:none}

.card .join:hover{background:#3ff0ea}

.flag{width:17px;height:17px;vertical-align:-2.5px;display:inline-block;

  filter:drop-shadow(0 1px 2px rgba(0,0,0,.5))}

/* país sin bandera (Latam): la palabra tal cual, como etiqueta */

.flag-tx{

  font-size:.7em;font-weight:800;letter-spacing:.5px;

  opacity:.92;vertical-align:1.5px;

}

.cflag .flag-tx{font-size:12.5px;vertical-align:0}

.flag.lg{width:21px;height:21px;vertical-align:-4px}



/* ── filtro por país (en la vista de búsqueda) ── */

.cfilter{

  max-width:880px;margin:2px auto 12px;

  display:flex;align-items:center;gap:9px;flex-wrap:wrap;

}

.cf-l{font-size:13px;color:var(--faint);font-weight:600;margin-right:2px}

.cflag{

  display:inline-flex;align-items:center;gap:7px;

  background:var(--surface);border:1px solid var(--line);border-radius:99px;

  padding:7px 14px;cursor:pointer;font-family:var(--font-body);

  font-size:13px;font-weight:650;color:var(--muted);

  transition:border-color .2s,color .2s,background .2s;

}

.cflag .flag{width:18px;height:18px;filter:none}

.cflag:hover{border-color:var(--muted);color:var(--text)}

.cflag.on{border-color:var(--teal-ink);color:var(--teal-ink);background:var(--teal-soft)}



/* ── resultados de búsqueda: lista estilo Telegram ── */

.list-wrap{

  max-width:880px;margin:6px auto 0;background:var(--surface);

  border:1px solid var(--line);border-radius:14px;overflow:hidden;

}

.row{

  display:flex;align-items:center;gap:16px;padding:14px 22px;

  border-bottom:1px solid var(--line-soft);text-decoration:none;color:inherit;

  transition:background .15s;

}

.row:last-child{border-bottom:none}

.row:hover{background:var(--surface-2)}

.row .avatar{

  width:64px;height:64px;border-radius:50%;object-fit:cover;flex-shrink:0;

  background:var(--surface-3);border:1px solid var(--line);

}

.row .avatar-ph{

  width:64px;height:64px;border-radius:50%;flex-shrink:0;

  display:flex;align-items:center;justify-content:center;

  font-family:var(--font-display);font-weight:700;font-size:22px;

  border:1px solid var(--line);

  background:#0d1716;color:var(--teal);

}

.row .mid{flex:1;min-width:0}

.row .name{font-weight:650;font-size:16.5px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.row .name .flag{width:18px;height:18px;vertical-align:-3px}

.row .sub{

  font-size:14px;color:var(--faint);white-space:nowrap;overflow:hidden;text-overflow:ellipsis;

  display:flex;align-items:center;gap:11px;margin-top:2px;

}

.row .sub .st{

  display:inline-flex;align-items:center;gap:6px;

  color:var(--text);font-weight:650;

}

.row .sub .st svg{width:14.5px;height:14.5px;opacity:.75}

.row .sub .hdl{overflow:hidden;text-overflow:ellipsis}

.row .when{font-size:13px;color:var(--faint);white-space:nowrap;margin-right:4px}

.btn-join{

  flex-shrink:0;background:transparent;border:1.5px solid var(--teal-ink);color:var(--teal-ink);

  font-family:var(--font-body);font-weight:700;font-size:14px;

  border-radius:99px;padding:8px 21px;cursor:pointer;

  transition:background .2s,color .2s,box-shadow .2s;

}

.row:hover .btn-join{background:var(--teal);color:#04211f;box-shadow:0 0 18px -2px var(--teal-glow)}



/* ── responsive ──────────────────────────────────── */

@media (max-width:880px){

  .hero{

    grid-template-columns:1fr;min-height:0;

    /* elástica: cabe SIEMPRE completa bajo la cabecera */

    grid-template-rows:minmax(170px,1fr) auto;

    height:calc(100vh - var(--tbh,104px) - 38px);

    height:calc(100dvh - var(--tbh,104px) - 38px);

    max-height:660px;

  }

  .hero .h-img{order:-1;height:auto;min-height:0}

  .hero .h-img::before{background:linear-gradient(to top, var(--surface) 0%, transparent 35%)}

  .hero .h-txt{padding:8px 22px 24px;gap:12px}

  .hero h2{font-size:clamp(26px,7vw,36px)}

}

@media (max-width:640px){

  .stage{padding:8px 6px 90px}

  .hero-wrap{padding:6px 8px 26px}

  /* topbar móvil: logo centrado grande · tema a la izquierda ·

     compartir como cuadrado a la derecha */

  .topbar-inner{padding:12px 12px 11px;gap:10px;justify-content:center;position:relative}

  .logo{flex-basis:100%;justify-content:center;font-size:28px;transform:translateX(10px)}

  body.searching .logo{font-size:20px}

  .settings-wrap{top:14px;left:12px;transform:none}

  .set-panel{left:0;top:44px}

  /* compartir = botón flotante arriba (vive fuera de la topbar:

     su blur atraparía un position:fixed) */

  .btn-share{display:none}

  .fab-share{display:inline-flex}

  .search-wrap{flex-basis:100%;order:9;max-width:none}

  /* móvil: una sola card por fila, a todo lo ancho */

  .sizebar{display:none}

  .cards-grid{grid-template-columns:1fr !important;gap:8px}

  /* scroll "revólver" gobernado por JS (ver magnet): suave = un

     grupo exacto · fuerte = vuela y clava al final */

  /* la card a la vista se enciende: hover táctil por scroll */

  .card.active{

    border-color:var(--teal);

    box-shadow:0 22px 60px -10px rgba(0,0,0,.82), 0 0 0 2px rgba(18,216,210,.6), 0 0 60px 0 var(--teal-glow);

    transform:scale(1.045);

    z-index:2;

  }

  .card.active .pic > img{transform:scale(1.09)}

  .card.active .pic .ph{transform:scale(1.06)}

  .card.active .join{

    background:#3ff0ea;transform:scale(1.1);

    box-shadow:0 9px 30px -3px var(--teal-glow);

  }

  .card.active .mbadge{border:1px solid rgba(18,216,210,.6)}

  .card.sm .pic{aspect-ratio:auto;flex:none;height:170px}

  .card.sm .pic .ph{inset:10px}

  .card.sm .mbadge{top:18px;left:18px}

  .card.sm .cfoot{padding:18px 22px}

  .card.sm .pname{font-size:15.5px}

  .card .pname{font-size:16.5px}

  .card .cfoot{padding:11px 13px}

  .card .mbadge{font-size:14px;padding:5px 10px}

  .card .mbadge svg{width:14px;height:14px}

  .card .vbadge{font-size:13px;padding:5px 9px}

  .card .vbadge svg{width:12.5px;height:12.5px}

  .card.sm .vbadge{top:18px;right:18px}

  .card .pdate{font-size:12px}

  /* Unirse solo visible en el grupo destacado por el scroll/dedo */

  .card .join{padding:6px 15px;font-size:12.5px;right:11px;bottom:11px}

  .card.active .join{opacity:1;transform:none}

  .add-inner .plus{font-size:48px}

  .add-inner .add-t{font-size:14.5px}

  .row{padding:10px 12px;gap:10px}

  .row .when{display:none}

}

/* votos: ocultos hasta que exista el sistema real vía bot */

/* placa de puntos: visible solo donde voteBadge la genera (puntos>0, no verificados) */

.decentmsg-trigger{position:fixed;top:128px;left:12px;width:46px;height:46px;border-radius:13px;background:#fff;border:2px solid #14b8a6;box-shadow:0 4px 20px rgba(20,184,166,.4);display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:9998;transition:transform .3s ease,box-shadow .3s ease,opacity .45s ease;animation:dmPulse 3s ease-in-out infinite}

body.hero-on .decentmsg-trigger{opacity:0;pointer-events:none;animation:none}

.decentmsg-trigger:hover{transform:scale(1.1);box-shadow:0 6px 30px rgba(20,184,166,.6)}

.decentmsg-trigger img{width:30px;height:30px;object-fit:contain;display:block}

@keyframes dmPulse{0%,100%{box-shadow:0 4px 20px rgba(20,184,166,.4)}50%{box-shadow:0 4px 30px rgba(20,184,166,.65)}}

.dm-overlay{display:none;position:fixed;inset:0;background:rgba(8,12,16,.55);-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);z-index:100000;align-items:center;justify-content:center;padding:20px}

.dm-overlay.open{display:flex}

.dm-modal{width:100%;max-width:380px;background:#fff;border-radius:22px;overflow:hidden;box-shadow:0 24px 70px rgba(0,0,0,.4);transform:translateY(14px) scale(.98);opacity:0;transition:transform .25s ease,opacity .25s ease}

.dm-overlay.open .dm-modal{transform:none;opacity:1}

.dm-top{background:linear-gradient(135deg,#14b8a6,#0d9488);padding:30px 26px 26px;text-align:center;position:relative;color:#fff}

.dm-badge{width:74px;height:74px;border-radius:18px;background:#fff;border:3px solid rgba(255,255,255,.7);margin:0 auto 14px;display:flex;align-items:center;justify-content:center;box-shadow:0 8px 24px rgba(0,0,0,.18)}

.dm-badge svg{width:42px;height:42px}

.dm-badge img{width:50px;height:50px;object-fit:contain;display:block}

.dm-top h2{font-size:24px;font-weight:800;letter-spacing:-.5px;margin:0;color:#fff}

.dm-top p{margin-top:6px;font-size:14px;opacity:.95}

.dm-close{position:absolute;top:12px;right:14px;width:32px;height:32px;border:none;border-radius:50%;background:rgba(255,255,255,.2);color:#fff;font-size:18px;cursor:pointer;line-height:1}

.dm-close:hover{background:rgba(255,255,255,.35)}

.dm-body{padding:22px 26px 24px;text-align:center}

.dm-claim{font-size:16.5px;line-height:1.5;color:#334155;font-weight:600;max-width:300px;margin:2px auto 20px;position:relative;padding-top:16px}

.dm-claim:before{content:"";position:absolute;top:0;left:50%;transform:translateX(-50%);width:34px;height:3px;border-radius:3px;background:linear-gradient(90deg,#14b8a6,#0d9488)}

.dm-claim b{color:#0d9488;font-weight:800}

.dm-cta{display:block;width:100%;padding:14px;border-radius:14px;background:linear-gradient(135deg,#14b8a6,#0d9488);color:#fff;text-decoration:none;font-weight:700;font-size:15.5px;transition:filter .2s ease}

.dm-cta:hover{filter:brightness(1.08)}

.dm-note{margin-top:12px;display:flex;justify-content:center}

.dm-combo{display:inline-flex;align-items:center;gap:8px;font-size:12.5px;font-weight:600;color:#94a3b8}

.dm-combo .sep{opacity:.55}

.dm-combo .wlab{display:inline-flex;align-items:center;gap:5px}

.dm-winico{width:.95em;height:.95em;display:inline-block;vertical-align:-1px;fill:currentColor;flex:none}

.dm-by{margin-top:16px;padding-top:14px;border-top:1px solid #eef1f4;font-size:11px;letter-spacing:1.5px;text-transform:uppercase;color:#aab2bd}

.dm-by b{color:#64748b;font-weight:800;letter-spacing:.5px}

.dm-overlay,.dm-overlay *{box-sizing:border-box!important}

.dm-modal{max-width:380px!important;margin:0 auto!important}

.dm-body{padding:22px 26px 24px!important}

.dm-cta{display:block!important;width:100%!important;max-width:100%!important;margin:0!important;box-sizing:border-box!important;text-align:center!important}

.dm-claim{margin:2px auto 20px!important;max-width:300px!important;padding-left:0!important;padding-right:0!important}

.dm-note,.dm-by{margin-left:0!important;margin-right:0!important}

@media (max-width:768px){

  .decentmsg-trigger{width:46px;height:46px;top:128px;left:12px;bottom:auto;border-radius:13px;border-width:2px}

  .decentmsg-trigger img{width:30px;height:30px}

}

.h-kicker.h-verified{display:inline-flex;align-items:center;gap:11px;font-weight:600;

  text-transform:uppercase;letter-spacing:.8px;font-size:15px;line-height:1;

  color:#2fe39a;text-shadow:0 1px 3px rgba(0,0,0,.45)}

.h-kicker.h-verified .fzseal{width:34px;height:34px;flex:0 0 auto;

  filter:drop-shadow(0 2px 4px rgba(0,0,0,.45))}

/* ===== Fondo ELEGANTE del destacado para PROMOCIONES (grupos/chicas verificados) ===== */

.hero.is-promo{

  background:

    radial-gradient(560px 400px at 12% 16%, rgba(63,176,245,.22), transparent 66%),

    radial-gradient(520px 380px at 90% 92%, rgba(47,227,154,.17), transparent 64%),

    linear-gradient(135deg,#0a1b24 0%,#0a1410 58%,#0b1512 100%);

  border-color:transparent;

  box-shadow:0 0 0 1px rgba(63,176,245,.14),0 22px 64px -24px rgba(47,227,154,.30);

}

.hero.is-promo .h-glow{display:none}

.hero.is-promo .h-kicker.h-verified::before{display:none}

.hero.is-promo .h-img::before{background:linear-gradient(to right,#0a1812 0%,transparent 30%)}

.hero.is-promo::after{

  content:"";position:absolute;inset:0;border-radius:20px;padding:1.5px;z-index:5;pointer-events:none;

  background:linear-gradient(135deg,#3fb0f5,#2fe39a);

  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);

  -webkit-mask-composite:xor;mask-composite:exclude;

}

.card .vseal{position:absolute;top:10px;right:10px;z-index:4;

  display:inline-flex;align-items:center;gap:6px;white-space:nowrap;

  background:rgba(8,9,11,.84);border:1px solid rgba(63,176,245,.42);

  border-radius:9px;padding:5px 9px;

  font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.4px;

  color:#34e6a0;text-shadow:0 1px 2px rgba(0,0,0,.6);box-shadow:0 3px 14px rgba(0,0,0,.5)}

.card .vseal .fzseal{width:21px;height:21px;flex:0 0 auto}

.card .vseal .vf-tail{display:none}

body[data-gs="2"] .card .vseal{font-size:14px;padding:6px 12px}

body[data-gs="2"] .card .vseal .fzseal{width:26px;height:26px}

@media (max-width:680px){

  .card .vseal{font-size:15px;padding:8px 14px;gap:9px;top:14px;right:14px;border-radius:12px}

  .card .vseal .fzseal{width:30px;height:30px}

  .card .vseal .vf-tail{display:inline}

}

.card.is-verified{box-shadow:0 0 0 1px rgba(63,176,245,.5),0 16px 40px -22px rgba(28,131,232,.62)}

.card.is-verified::after{content:"";position:absolute;inset:0;border-radius:inherit;padding:1.6px;z-index:6;pointer-events:none;

  background:linear-gradient(135deg,#6cc6ff,#1573e6);

  -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);-webkit-mask-composite:xor;mask-composite:exclude}

.card .vvid{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;object-position:center bottom;z-index:1;

  opacity:0;transition:opacity 1s ease;pointer-events:none}

.card.vplay .vvid{opacity:1}

.card.vplay .pic > img{opacity:0}

.hero .h-img .vvid{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;z-index:2;opacity:0;transition:opacity 1s ease;pointer-events:none}

.hero.vplay .h-img .vvid{opacity:1}

.hero.vplay .h-img img{opacity:0}

.tg-wrap{position:absolute;top:50%;transform:translateY(-50%);right:18px;z-index:60}

.btn-tg{width:36px;height:36px;border-radius:50%;cursor:pointer;

  background:var(--surface);border:1px solid var(--line);color:var(--muted);

  display:flex;align-items:center;justify-content:center;text-decoration:none;

  transition:border-color .2s,color .2s,background .2s,transform .2s}

.btn-tg:hover{border-color:#229ED9;color:#229ED9;background:var(--surface-2);transform:translateY(-1px)}

.btn-tg svg{width:19px;height:19px;margin-left:-1px}

body.hero-on .tg-wrap{top:50%}

body.hero-on .btn-tg{width:31px;height:31px}

body.hero-on .btn-tg svg{width:16px;height:16px}

@media (max-width:640px){

  .tg-wrap{top:14px;right:12px;transform:none}

  body.hero-on .tg-wrap{top:9px}

}

.sortbar{display:flex;justify-content:center;padding:0 18px 16px}.sortsel{display:inline-flex;gap:6px;align-items:center}.sortsel .ss-l{font-size:.72rem;opacity:.55}.ss-btn{font:inherit;font-size:.8rem;font-weight:700;padding:6px 13px;border-radius:999px;border:1px solid rgba(255,255,255,.16);background:transparent;color:#cfd2da;cursor:pointer;white-space:nowrap}.ss-btn.on{background:#2dd4bf;color:#06231f;border-color:transparent}.novedad-notice{text-align:center;font-size:1rem;font-weight:700;color:#93c5fd;padding:6px 18px 20px}:root[data-theme="light"] .novedad-notice{color:#1d4ed8}@media(max-width:640px){.sortbar{padding:0 10px 14px}.ss-btn{font-size:.84rem;padding:8px 15px}.novedad-notice{font-size:1.08rem;padding:6px 14px 18px}}

