/* =========================================================================
   Solofans — sistema visual
   Dark mode, mobile-first, la fotografía como protagonista.
   ========================================================================= */

:root {
  --bg:            #0a0a0d;
  --bg-elev:       #131318;
  --bg-elev-2:     #1a1a21;
  --bg-input:      #1e1e26;
  --line:          rgba(255, 255, 255, .08);
  --line-strong:   rgba(255, 255, 255, .14);

  --text:          #f4f4f6;
  --text-dim:      #a1a1ad;
  --text-faint:    #6c6c7a;

  --brand-1:       #ff2e74;
  --brand-2:       #9333ea;
  --brand:         linear-gradient(135deg, #ff2e74 0%, #9333ea 100%);
  --brand-soft:    rgba(255, 46, 116, .14);

  --ok:            #22c55e;
  --warn:          #f59e0b;
  --danger:        #ef4444;
  --info:          #38bdf8;

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;
  --r-full: 999px;

  --shadow:   0 10px 40px rgba(0, 0, 0, .5);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .35);

  --nav-h: 62px;
  --max:   1180px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body { min-height: 100vh; overscroll-behavior-y: none; }

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; color: inherit; }

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-thumb { background: #2a2a34; border-radius: 4px; }
::-webkit-scrollbar-track { background: transparent; }

/* ------------------------------------------------------------- estructura */

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
.page { padding-bottom: calc(var(--nav-h) + 24px); }
.page-pad { padding-top: 18px; }

.topbar {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 12px;
  height: 56px; padding: 0 14px;
  background: rgba(10, 10, 13, .82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.topbar h1 { font-size: 17px; font-weight: 650; margin: 0; letter-spacing: -.01em; }
.topbar .spacer { flex: 1; }

.brandmark {
  font-weight: 800; font-size: 18px; letter-spacing: -.03em;
  background: var(--brand); -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* --------------------------------------------------------- navegación inf. */

.bottomnav {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-auto-flow: column; grid-auto-columns: 1fr;
  height: var(--nav-h);
  padding-bottom: env(safe-area-inset-bottom);
  background: rgba(13, 13, 17, .93);
  backdrop-filter: saturate(160%) blur(16px);
  border-top: 1px solid var(--line);
}
.bottomnav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 3px; font-size: 10.5px; color: var(--text-faint); font-weight: 500;
  position: relative; transition: color .15s;
}
.bottomnav a svg { width: 22px; height: 22px; stroke-width: 1.8; }
.bottomnav a.active { color: var(--text); }
.bottomnav a.active svg { stroke: url(#navgrad); }
.bottomnav .dot {
  position: absolute; top: 8px; left: 50%; margin-left: 5px;
  min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--brand-1); color: #fff; font-size: 10px; font-weight: 700;
  border-radius: var(--r-full); display: grid; place-items: center;
  border: 2px solid #0d0d11;
}

/* ------------------------------------------------------------- componentes */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border: 0; border-radius: var(--r-full);
  background: var(--bg-elev-2); color: var(--text);
  font-weight: 600; font-size: 14.5px; cursor: pointer;
  transition: transform .12s ease, opacity .15s, background .15s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(.975); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 22px rgba(255, 46, 116, .25); }
.btn-ghost { background: transparent; border: 1px solid var(--line-strong); }
.btn-danger { background: rgba(239, 68, 68, .14); color: #fda4a4; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-lg { padding: 15px 26px; font-size: 16px; }

.card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
}
.card + .card { margin-top: 14px; }

.field { margin-bottom: 14px; }
.field label { display: block; font-size: 12.5px; color: var(--text-dim); margin-bottom: 6px; font-weight: 550; }
.input, textarea.input, select.input {
  width: 100%; padding: 13px 14px;
  background: var(--bg-input); border: 1px solid var(--line);
  border-radius: var(--r-sm); outline: none;
  transition: border-color .15s, background .15s;
}
.input:focus { border-color: rgba(255, 46, 116, .55); background: #22222b; }
.input::placeholder { color: var(--text-faint); }
textarea.input { resize: vertical; min-height: 92px; }

.checkline { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--text-dim); margin-bottom: 12px; }
.checkline input { margin-top: 2px; width: 17px; height: 17px; accent-color: var(--brand-1); }

.muted { color: var(--text-dim); }
.faint { color: var(--text-faint); }
.small { font-size: 12.5px; }
.center { text-align: center; }
.row { display: flex; align-items: center; gap: 12px; }
.grow { flex: 1; min-width: 0; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.pill {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: var(--r-full);
  font-size: 11.5px; font-weight: 600;
  background: var(--bg-elev-2); color: var(--text-dim);
}
.pill-ok    { background: rgba(34, 197, 94, .14);  color: #7ee2a8; }
.pill-warn  { background: rgba(245, 158, 11, .14); color: #fcd34d; }
.pill-danger{ background: rgba(239, 68, 68, .14);  color: #fca5a5; }
.pill-brand { background: var(--brand-soft);       color: #ff87ae; }

.avatar {
  width: 44px; height: 44px; border-radius: var(--r-full);
  object-fit: cover; flex: none;
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: #fff;
  background: linear-gradient(135deg, hsl(var(--h), 62%, 42%), hsl(calc(var(--h) + 45), 62%, 32%));
}
.avatar-lg { width: 88px; height: 88px; font-size: 30px; }
.avatar-sm { width: 34px; height: 34px; font-size: 12px; }

.flash { padding: 12px 16px; border-radius: var(--r); margin-bottom: 14px; font-size: 14px; }
.flash-info    { background: rgba(56, 189, 248, .12); color: #a5e4ff; }
.flash-success { background: rgba(34, 197, 94, .12);  color: #9beabc; }
.flash-error   { background: rgba(239, 68, 68, .12);  color: #ffb0b0; }

.section-title {
  font-size: 12px; text-transform: uppercase; letter-spacing: .09em;
  color: var(--text-faint); font-weight: 650; margin: 24px 0 10px;
}

.empty { text-align: center; padding: 48px 20px; color: var(--text-faint); }
.empty .ico { font-size: 34px; margin-bottom: 10px; opacity: .55; }

/* ------------------------------------------------------------------ auth */

.auth-shell { min-height: 100vh; display: grid; place-items: center; padding: 26px 18px; }
.auth-box { width: 100%; max-width: 390px; }
.auth-box .brandmark { font-size: 30px; display: block; text-align: center; margin-bottom: 6px; }
.auth-sub { text-align: center; color: var(--text-dim); margin-bottom: 26px; font-size: 14px; }
.auth-alt { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--text-dim); }
.auth-alt a { color: #ff87ae; font-weight: 600; }

/* --------------------------------------------------------------- perfil */

.cover {
  height: 172px; background: linear-gradient(135deg, #2a1030, #131318);
  background-size: cover; background-position: center; position: relative;
}
.cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, var(--bg));
}
.profile-head { margin-top: -46px; position: relative; z-index: 2; padding: 0 16px; }
.profile-head .avatar { border: 3px solid var(--bg); box-shadow: var(--shadow-sm); }
.profile-name { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin: 12px 0 2px; }
.profile-user { color: var(--text-faint); font-size: 14px; }
.profile-bio { margin: 12px 0 0; color: var(--text-dim); font-size: 14.5px; max-width: 620px; }
.stats { display: flex; gap: 22px; margin: 16px 0; }
.stats .n { font-weight: 700; font-size: 16px; }
.stats .l { color: var(--text-faint); font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; }
.profile-cta { display: flex; gap: 10px; margin: 18px 0 6px; }

/* ----------------------------------------------------------------- feed */

.post { border-top: 1px solid var(--line); padding: 18px 0; }
.post-text { margin: 0 0 12px; font-size: 15px; }
.post-media { display: grid; gap: 6px; border-radius: var(--r); overflow: hidden; }
.post-media.two { grid-template-columns: 1fr 1fr; }
.post-media img, .post-media video { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; background: #000; }

/* ------------------------------------------------------------ biblioteca */

.grid-media {
  display: grid; gap: 8px;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
}
.tile {
  position: relative; aspect-ratio: 3 / 4; border-radius: var(--r-sm);
  overflow: hidden; background: #17171d; cursor: pointer;
  border: 1px solid var(--line);
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile .ph { width: 100%; height: 100%; display: grid; place-items: center; font-size: 26px; opacity: .3; }
.tile .badge {
  position: absolute; top: 6px; right: 6px;
  background: rgba(0, 0, 0, .68); backdrop-filter: blur(4px);
  padding: 2px 7px; border-radius: var(--r-full);
  font-size: 10.5px; font-weight: 600;
}
.tile .price {
  position: absolute; bottom: 6px; left: 6px;
  background: rgba(0, 0, 0, .68); backdrop-filter: blur(4px);
  padding: 2px 8px; border-radius: var(--r-full);
  font-size: 11px; font-weight: 700;
}
.tile.sel { outline: 2.5px solid var(--brand-1); outline-offset: -2.5px; }
.tile.sel::after {
  content: '✓'; position: absolute; top: 6px; left: 6px;
  width: 21px; height: 21px; border-radius: var(--r-full);
  background: var(--brand-1); color: #fff; font-size: 12px; font-weight: 700;
  display: grid; place-items: center;
}

.dropzone {
  border: 1.5px dashed var(--line-strong); border-radius: var(--r-lg);
  padding: 34px 20px; text-align: center; color: var(--text-dim);
  transition: border-color .15s, background .15s; cursor: pointer;
}
.dropzone.over { border-color: var(--brand-1); background: var(--brand-soft); }
.dropzone .big { font-size: 30px; margin-bottom: 8px; }

.uprow { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--line); }
.uprow .thumb { width: 46px; height: 46px; border-radius: 8px; object-fit: cover; background: #000; flex: none; }
.bar { height: 5px; background: #26262f; border-radius: 3px; overflow: hidden; margin-top: 6px; }
.bar > i { display: block; height: 100%; width: 0; background: var(--brand); transition: width .2s; }

/* ----------------------------------------------------------------- chat */

.chat-layout { display: grid; grid-template-columns: 1fr; height: 100dvh; }
@media (min-width: 900px) {
  .chat-layout { grid-template-columns: 340px 1fr; }
  .chat-layout .conv-pane { border-right: 1px solid var(--line); }
  .page { padding-bottom: 0; }
  .bottomnav { display: none; }
  .desktop-nav { display: flex !important; }
}

.conv-pane { display: flex; flex-direction: column; min-height: 0; background: var(--bg); }
.conv-list { overflow-y: auto; flex: 1; }
.conv-item {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 16px; border-bottom: 1px solid var(--line);
  transition: background .12s;
}
.conv-item:hover { background: var(--bg-elev); }
.conv-item.active { background: var(--bg-elev-2); }
.conv-item .meta { display: flex; flex-direction: column; align-items: flex-end; gap: 5px; flex: none; }
.conv-item .when { font-size: 11px; color: var(--text-faint); }

.chat-pane { display: flex; flex-direction: column; min-height: 0; height: 100dvh; background: var(--bg); }
.chat-head {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  border-bottom: 1px solid var(--line); background: rgba(13, 13, 17, .9);
  backdrop-filter: blur(12px); flex: none;
}
.chat-body {
  flex: 1; overflow-y: auto; padding: 18px 14px 10px;
  display: flex; flex-direction: column; gap: 8px;
  background-image: radial-gradient(circle at 18% -10%, rgba(147, 51, 234, .10), transparent 45%),
                    radial-gradient(circle at 88% 8%, rgba(255, 46, 116, .07), transparent 40%);
}

.msg { max-width: min(78%, 480px); align-self: flex-start; }
.msg.mine { align-self: flex-end; }
.bubble {
  background: var(--bg-elev-2); padding: 9px 13px; border-radius: 18px 18px 18px 5px;
  font-size: 14.5px; word-wrap: break-word; white-space: pre-wrap;
}
.msg.mine .bubble { background: linear-gradient(135deg, #b81f58, #6d28d9); border-radius: 18px 18px 5px 18px; }
.msg .stamp { font-size: 10.5px; color: var(--text-faint); margin-top: 3px; padding: 0 5px; }
.msg.mine .stamp { text-align: right; }
.msg-system { align-self: center; max-width: 90%; }
.msg-system .bubble {
  background: rgba(255, 255, 255, .05); color: var(--text-dim);
  font-size: 12.5px; border-radius: var(--r-full); padding: 6px 14px; text-align: center;
}
.msg-purchase .bubble {
  background: rgba(34, 197, 94, .13); color: #9beabc; border-radius: var(--r-full);
  font-size: 12.5px; padding: 6px 14px;
}

.msg-media img, .msg-media video { border-radius: 14px; max-height: 340px; width: auto; }

/* --- card de contenido pago --- */
.offer-card {
  width: 268px; border-radius: var(--r); overflow: hidden;
  background: var(--bg-elev); border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.offer-media { position: relative; aspect-ratio: 4 / 5; background: #000; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-media.locked img { filter: blur(22px) brightness(.5) saturate(.7); transform: scale(1.12); }
.offer-media .lockbox {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px; text-align: center; padding: 16px;
}
.offer-media .lockico {
  width: 46px; height: 46px; border-radius: var(--r-full);
  background: rgba(255, 255, 255, .13); backdrop-filter: blur(6px);
  display: grid; place-items: center; font-size: 20px;
}
.offer-media .cnt {
  position: absolute; top: 9px; right: 9px;
  background: rgba(0, 0, 0, .6); padding: 3px 9px; border-radius: var(--r-full); font-size: 11px;
}
.offer-foot { padding: 12px 13px 13px; }
.offer-foot .t { font-weight: 640; font-size: 14px; margin-bottom: 2px; }
.offer-foot .p { font-size: 19px; font-weight: 780; letter-spacing: -.02em; margin: 6px 0 10px; }

/* --- composer --- */
.composer {
  flex: none; display: flex; align-items: flex-end; gap: 9px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line); background: var(--bg-elev);
}
.composer .plus {
  width: 42px; height: 42px; border-radius: var(--r-full); flex: none;
  background: var(--bg-elev-2); border: 0; font-size: 22px; line-height: 1;
  display: grid; place-items: center; cursor: pointer; color: var(--text-dim);
}
.composer .plus:active { transform: scale(.94); }
.composer textarea {
  flex: 1; max-height: 120px; min-height: 42px; padding: 11px 15px;
  background: var(--bg-input); border: 1px solid var(--line);
  border-radius: 21px; resize: none; outline: none; line-height: 1.35;
}
.composer .send {
  width: 42px; height: 42px; border-radius: var(--r-full); flex: none;
  background: var(--brand); border: 0; color: #fff; cursor: pointer;
  display: grid; place-items: center;
}

/* ----------------------------------------------------------- drawer/modal */

.backdrop {
  position: fixed; inset: 0; z-index: 90; background: rgba(0, 0, 0, .66);
  backdrop-filter: blur(3px); opacity: 0; pointer-events: none; transition: opacity .2s;
}
.backdrop.show { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed; z-index: 100; left: 0; right: 0; bottom: 0;
  max-height: 86dvh; display: flex; flex-direction: column;
  background: var(--bg-elev); border-radius: var(--r-lg) var(--r-lg) 0 0;
  border-top: 1px solid var(--line-strong);
  transform: translateY(100%); transition: transform .26s cubic-bezier(.32, .72, 0, 1);
  padding-bottom: env(safe-area-inset-bottom);
}
.drawer.show { transform: translateY(0); }
@media (min-width: 720px) {
  .drawer {
    left: 50%; right: auto; bottom: auto; top: 50%; width: 560px;
    border-radius: var(--r-lg); border: 1px solid var(--line-strong);
    transform: translate(-50%, -44%) scale(.96); opacity: 0;
    transition: opacity .2s, transform .2s;
  }
  .drawer.show { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.drawer-grip { width: 38px; height: 4px; background: #34343f; border-radius: 3px; margin: 9px auto 3px; }
.drawer-head { padding: 8px 18px 12px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; }
.drawer-head h3 { margin: 0; font-size: 16px; font-weight: 650; }
.drawer-body { overflow-y: auto; padding: 14px 16px; flex: 1; }
.drawer-foot { padding: 12px 16px calc(14px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }

.sheet-menu { padding: 8px; }
.sheet-menu button {
  display: flex; align-items: center; gap: 14px; width: 100%;
  padding: 15px 16px; background: transparent; border: 0; border-radius: var(--r);
  text-align: left; cursor: pointer; font-size: 15px;
}
.sheet-menu button:hover { background: var(--bg-elev-2); }
.sheet-menu .ic { width: 38px; height: 38px; border-radius: var(--r-full); display: grid; place-items: center; background: var(--bg-elev-2); font-size: 17px; flex: none; }
.sheet-menu .sub { font-size: 12px; color: var(--text-faint); }

/* ------------------------------------------------------------- dashboard */

.kpis { display: grid; gap: 10px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .kpis { grid-template-columns: repeat(4, 1fr); } }
.kpi { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 15px; }
.kpi .l { font-size: 11.5px; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; font-weight: 600; }
.kpi .v { font-size: 22px; font-weight: 750; letter-spacing: -.025em; margin-top: 4px; }
.kpi .d { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }
.kpi-hero { grid-column: span 2; background: linear-gradient(135deg, rgba(255,46,116,.16), rgba(147,51,234,.14)); border-color: rgba(255,46,116,.28); }
.kpi-hero .v { font-size: 30px; }

.chart { display: flex; align-items: flex-end; gap: 4px; height: 118px; margin-top: 6px; width: 100%; overflow: hidden; }
.chart .col { flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; justify-content: flex-end; align-items: center; gap: 5px; height: 100%; }
.chart .b { width: 100%; border-radius: 4px 4px 2px 2px; background: var(--brand); min-height: 3px; opacity: .92; }
.chart .b.zero { background: #23232c; }
.chart .x { font-size: 9.5px; color: var(--text-faint); }

.tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.tbl th {
  text-align: left; font-size: 11px; text-transform: uppercase; letter-spacing: .06em;
  color: var(--text-faint); font-weight: 650; padding: 8px 10px; border-bottom: 1px solid var(--line);
}
.tbl td { padding: 11px 10px; border-bottom: 1px solid var(--line); }
.tbl tr:last-child td { border-bottom: 0; }
.tbl .num { text-align: right; font-variant-numeric: tabular-nums; }
.scroll-x { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* --------------------------------------------------------- nav escritorio */

.desktop-nav { display: none; gap: 4px; align-items: center; }
.desktop-nav a {
  padding: 8px 14px; border-radius: var(--r-full); font-size: 14px;
  font-weight: 550; color: var(--text-dim); position: relative;
}
.desktop-nav a:hover { background: var(--bg-elev); color: var(--text); }
.desktop-nav a.active { background: var(--bg-elev-2); color: var(--text); }
.desktop-nav .dot {
  display: inline-grid; place-items: center; min-width: 18px; height: 18px;
  padding: 0 5px; margin-left: 6px; background: var(--brand-1); color: #fff;
  font-size: 10.5px; font-weight: 700; border-radius: var(--r-full);
}

/* ------------------------------------------------------------- checkout */

.checkout-shell { max-width: 460px; margin: 0 auto; padding: 22px 16px 60px; }
.pay-summary { display: flex; gap: 14px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.pay-total { display: flex; justify-content: space-between; align-items: baseline; padding: 16px 0 20px; }
.pay-total .v { font-size: 27px; font-weight: 800; letter-spacing: -.03em; }
.pay-method {
  display: flex; gap: 12px; align-items: center; padding: 14px;
  border: 1px solid var(--line-strong); border-radius: var(--r); margin-bottom: 10px; cursor: pointer;
}
.pay-method.sel { border-color: var(--brand-1); background: var(--brand-soft); }
.sandbox-note {
  background: rgba(245, 158, 11, .1); border: 1px solid rgba(245, 158, 11, .25);
  color: #fcd34d; border-radius: var(--r); padding: 11px 14px; font-size: 12.5px; margin-bottom: 16px;
}

/* ---------------------------------------------------------------- varios */

.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0, 0, 0, .94);
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.lightbox.show { display: flex; }
.lightbox img, .lightbox video { max-width: 100%; max-height: 92dvh; border-radius: 8px; }
.lightbox .x { position: absolute; top: 16px; right: 18px; font-size: 26px; cursor: pointer; color: #fff; }

.spin {
  width: 17px; height: 17px; border: 2px solid rgba(255, 255, 255, .28);
  border-top-color: #fff; border-radius: 50%; animation: sp .7s linear infinite;
}
@keyframes sp { to { transform: rotate(360deg); } }

.fadein { animation: fi .28s ease; }
@keyframes fi { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.age-gate {
  position: fixed; inset: 0; z-index: 300; background: rgba(6, 6, 9, .97);
  display: grid; place-items: center; padding: 24px; text-align: center;
}

@media (max-width: 899px) { .hide-mobile  { display: none !important; } }
@media (min-width: 900px) { .hide-desktop { display: none !important; } }

/* Banda de supervisión del administrador */
.supervision {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  padding: 10px 16px; font-size: 12.5px;
  background: rgba(245, 158, 11, .11); color: #fcd34d;
  border-bottom: 1px solid rgba(245, 158, 11, .25);
}
.supervision a { margin-left: auto; text-decoration: underline; white-space: nowrap; }
