/* FADAWAN ALMASIHU AREWA — style.css */

/* ════════════════════════════════════
   FADAWAN ALMASIHU AREWA — style.css
════════════════════════════════════ */

/* ── ROOT VARIABLES ── */
:root {
  --ink: #030a06;
  --deep: #04110a;
  --mid: #08180e;
  --card: #0e2117;
  --cardh: #132b1e;
  --gold: #c9a84c;
  --gold2: #e8ca76;
  --golddim: rgba(201,168,76,.1);
  --green: #1a8a40;
  --green2: #22c55e;
  --greendim: rgba(26,138,64,.12);
  --crimson: #7a1a1a;
  --crimson2: #c0392b;
  --white: #f0ede4;
  --muted: rgba(240,237,228,.36);
  --border: rgba(201,168,76,.15);
  --borderl: rgba(201,168,76,.3);
  --r: 14px;
  --sh: 0 12px 40px rgba(0,0,0,.7);
  --shg: 0 0 40px rgba(26,138,64,.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ink);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: default;
}

::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: var(--deep); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--green), var(--gold)); border-radius: 3px; }

a { text-decoration: none; color: inherit; }
button { font-family: 'DM Sans', sans-serif; }

/* ── CANVAS ── */
#particleCanvas { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: .5; }

/* ── ANIMATED BACKGROUND ── */
.bg-orbs { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); animation: orbFloat 12s ease-in-out infinite; }
.orb1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,138,64,.1), transparent 70%); top: -120px; left: -120px; animation-delay: 0s; }
.orb2 { width: 450px; height: 450px; background: radial-gradient(circle, rgba(201,168,76,.08), transparent 70%); bottom: -120px; right: -120px; animation-delay: -4s; }
.orb3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(26,138,64,.06), transparent 70%); top: 38%; left: 38%; animation-delay: -8s; }

@keyframes orbFloat {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,30px) scale(.95); }
}

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
}

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 58px; display: flex; align-items: center; padding: 0 12px; gap: 8px;
  background: rgba(8,8,12,.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border); overflow: visible; min-width: 0;
}
header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent);
  opacity: .5;
}

.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; cursor: pointer; }
.logo-cross {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, var(--green), #0d5a28);
  display: flex; align-items: center; justify-content: center; font-size: 14px;
  box-shadow: 0 0 12px rgba(212,168,67,.25); flex-shrink: 0;
}
.logo-words { line-height: 1.15; }
.logo-top { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 1.5px; color: var(--gold); line-height: 1; }
.logo-bot { font-size: 9px; color: var(--muted); letter-spacing: 2.5px; text-transform: uppercase; }

.h-search { flex: 0 1 220px; position: relative; margin: 0 4px; }
.h-search input {
  width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 22px; padding: 7px 36px 7px 14px; color: var(--white); font-size: 12px;
  font-family: 'DM Sans', sans-serif; outline: none; transition: .2s;
}
.h-search input::placeholder { color: var(--muted); }
.h-search input:focus { border-color: var(--gold); background: var(--golddim); box-shadow: 0 0 12px rgba(212,168,67,.1); }
.h-search .s-ico { position: absolute; right: 11px; top: 50%; transform: translateY(-50%); font-size: 13px; color: var(--muted); cursor: pointer; background: none; border: none; }

nav.hnav { display: flex; align-items: center; gap: 1px; flex-shrink: 0; }
nav.hnav a { font-size: 10px; font-weight: 600; color: var(--muted); padding: 5px 7px; border-radius: 7px; transition: .2s; white-space: nowrap; letter-spacing: .2px; }
nav.hnav a:hover, nav.hnav a.active { color: var(--gold); background: var(--golddim); }

.h-acts { display: flex; align-items: center; gap: 4px; margin-left: auto; flex-shrink: 0; }
.ibtn {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border);
  background: rgba(255,255,255,.04); color: var(--white); font-size: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: .2s; position: relative; flex-shrink: 0;
}
.ibtn:hover { border-color: var(--green); background: var(--greendim); box-shadow: 0 0 10px rgba(26,138,64,.18); }
.nbadge {
  position: absolute; top: -2px; right: -2px; width: 15px; height: 15px;
  border-radius: 50%; background: var(--crimson2); font-size: 8px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; border: 2px solid var(--ink);
}
.btn-g { background: linear-gradient(135deg, var(--green), #0a4020); color: #fff; border: none; border-radius: 8px; padding: 5px 11px; font-weight: 700; font-size: 10px; cursor: pointer; transition: .2s; white-space: nowrap; }
.btn-g:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(212,168,67,.35); }
.btn-o { background: transparent; border: 1px solid var(--border); color: var(--white); border-radius: 8px; padding: 5px 11px; font-weight: 600; font-size: 10px; cursor: pointer; transition: .2s; white-space: nowrap; }
.btn-o:hover { border-color: var(--gold); color: var(--gold); }
.uchip { display: flex; align-items: center; gap: 5px; padding: 3px 9px 3px 3px; border: 1px solid var(--border); border-radius: 22px; cursor: pointer; transition: .2s; background: rgba(255,255,255,.03); white-space: nowrap; }
.uchip:hover { border-color: var(--gold); box-shadow: 0 0 10px rgba(212,168,67,.1); }
.uav { width: 22px; height: 22px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--crimson)); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--ink); flex-shrink: 0; overflow: hidden; border: 1px solid rgba(212,168,67,.3); }
.uav img { width: 100%; height: 100%; object-fit: cover; }
.ibtn.logout-btn { color: #ff8a80; border-color: rgba(229,57,53,.3); }
.ibtn.logout-btn:hover { background: rgba(229,57,53,.1); border-color: #e53935; }

/* ── NOTIFICATION PANEL ── */
.nfpanel {
  position: absolute; top: 44px; right: 0; width: 300px; background: var(--mid);
  border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 24px 60px rgba(0,0,0,.7);
  z-index: 2000; overflow: hidden; display: none; animation: fadeDown .2s ease;
}
.nfpanel.open { display: block; }
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.nfhead { padding: 12px 14px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; color: var(--gold); }
.nfitem { display: flex; gap: 10px; padding: 11px 14px; border-bottom: 1px solid rgba(255,255,255,.03); transition: .15s; cursor: pointer; }
.nfitem:hover { background: var(--golddim); }
.nfitem.unr { background: rgba(212,168,67,.04); }
.nfdot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 4px; }
.nftxt { font-size: 11px; line-height: 1.5; }
.nftime { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* ════════════════════════════════════
   LAYOUT
════════════════════════════════════ */
.layout { display: flex; margin-top: 58px; min-height: calc(100vh - 58px); position: relative; z-index: 2; }

/* ── SIDEBAR ── */
aside {
  width: 188px; flex-shrink: 0; background: rgba(12,14,24,.9);
  border-right: 1px solid var(--border); padding: 16px 10px;
  position: sticky; top: 58px; height: calc(100vh - 58px); overflow-y: auto;
  display: flex; flex-direction: column; gap: 4px;
}
.slabel { font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); padding: 8px 10px 5px; font-weight: 600; }
.slink {
  display: flex; align-items: center; gap: 9px; padding: 8px 11px; border-radius: 10px;
  color: var(--muted); font-size: 12px; font-weight: 500; transition: .18s; cursor: pointer;
  border: none; background: none; width: 100%; text-align: left; position: relative;
}
.slink:hover { background: var(--greendim); color: var(--white); }
.slink.active { background: linear-gradient(135deg, rgba(26,138,64,.2), rgba(26,138,64,.06)); color: var(--green2); border-left: 2px solid var(--green); }
.slink .si { font-size: 15px; width: 20px; text-align: center; flex-shrink: 0; }
.slink .sl { flex: 1; }
.slink .sc { font-size: 9px; background: rgba(212,168,67,.15); color: var(--gold); padding: 2px 7px; border-radius: 8px; border: 1px solid rgba(212,168,67,.2); }
.slink.logout-s { color: #ff8a80; }
.slink.logout-s:hover { background: rgba(229,57,53,.08); color: #ff8a80; }
.sdivider { height: 1px; background: var(--border); margin: 8px 4px; }

/* ════════════════════════════════════
   MAIN CONTENT
════════════════════════════════════ */
main { flex: 1; overflow-x: hidden; padding: 24px 22px; position: relative; z-index: 2; }
.page { display: none; animation: pgIn .3s ease; }
.page.active { display: block; }
@keyframes pgIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── HERO ── */
.hero {
  border-radius: 20px; padding: 44px; margin-bottom: 28px; position: relative; overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #030a06 0%, #041008 40%, #03180a 100%);
}
.hero-bg-cross { position: absolute; right: -40px; top: -60px; font-size: 260px; opacity: .04; font-family: 'Bebas Neue', sans-serif; color: var(--gold); pointer-events: none; line-height: 1; }
.hero-bg-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 36px, rgba(26,138,64,.025) 36px, rgba(26,138,64,.025) 37px),
              repeating-linear-gradient(-45deg, transparent, transparent 36px, rgba(201,168,76,.015) 36px, rgba(201,168,76,.015) 37px);
  pointer-events: none;
}
.hlive { display: inline-flex; align-items: center; gap: 7px; padding: 4px 13px; background: rgba(26,138,64,.15); border: 1px solid rgba(26,138,64,.4); border-radius: 20px; font-size: 10px; font-weight: 700; color: #4ade80; margin-bottom: 14px; letter-spacing: 1.5px; text-transform: uppercase; }
.ldot { width: 6px; height: 6px; border-radius: 50%; background: #e53935; animation: pulse 1.5s infinite; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.7); }
}
.hero h1 { font-family: 'Playfair Display', serif; font-size: 40px; line-height: 1.1; margin-bottom: 10px; font-weight: 900; }
.hero h1 em { background: linear-gradient(135deg, var(--gold2), var(--green2)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-style: normal; }
.hero p { color: var(--muted); font-size: 14px; max-width: 500px; line-height: 1.75; margin-bottom: 22px; }
.hero-btns { display: flex; gap: 11px; flex-wrap: wrap; }
.btn-hero { display: inline-flex; align-items: center; gap: 8px; background: linear-gradient(135deg, var(--green), #0a4020); color: #fff; border: none; border-radius: 12px; padding: 12px 24px; font-weight: 700; font-size: 13px; cursor: pointer; transition: .25s; }
.btn-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,138,64,.4); }
.btn-hero2 { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.05); border: 1px solid var(--border); color: var(--white); border-radius: 12px; padding: 12px 20px; font-weight: 600; font-size: 13px; cursor: pointer; transition: .25s; }
.btn-hero2:hover { border-color: var(--gold); color: var(--gold); background: var(--golddim); }
.hero-stats { display: flex; gap: 28px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--border); }
.hstat .n { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--gold); letter-spacing: 1px; }
.hstat .l { font-size: 10px; color: var(--muted); margin-top: 1px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── SECTION HEADERS ── */
.shead { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.shead h2 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.shead a, .shead button.see-all { font-size: 11px; color: var(--gold); font-weight: 600; background: none; border: none; cursor: pointer; padding: 0; }
.stag { display: inline-flex; align-items: center; gap: 5px; padding: 3px 11px; background: var(--greendim); border: 1px solid rgba(26,138,64,.25); border-radius: 20px; font-size: 9px; color: var(--green2); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 6px; font-weight: 700; }

/* ── VIDEO CARDS ── */
.vgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 18px; margin-bottom: 32px; }
.vcard { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; cursor: pointer; transition: .25s; position: relative; }
.vcard:hover { transform: translateY(-5px); border-color: rgba(212,168,67,.35); box-shadow: 0 16px 40px rgba(0,0,0,.5), 0 0 20px rgba(212,168,67,.08); }
.vthumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--mid), var(--cardh)); overflow: hidden; }
.vthumb img { width: 100%; height: 100%; object-fit: cover; }
.vph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 42px; opacity: .25; }
.vdur { position: absolute; bottom: 8px; right: 8px; background: rgba(0,0,0,.85); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 5px; letter-spacing: .3px; }
.vtag { position: absolute; top: 8px; left: 8px; padding: 3px 9px; border-radius: 6px; font-size: 9px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.vtag.featured { background: linear-gradient(135deg, var(--gold), #7a4e10); color: var(--ink); }
.vtag.live { background: var(--crimson2); color: #fff; }
.vovl { position: absolute; inset: 0; background: rgba(0,0,0,.45); opacity: 0; display: flex; align-items: center; justify-content: center; transition: .22s; }
.vcard:hover .vovl { opacity: 1; }
.vpbig { width: 54px; height: 54px; border-radius: 50%; background: rgba(212,168,67,.9); display: flex; align-items: center; justify-content: center; font-size: 20px; color: var(--ink); box-shadow: 0 0 20px rgba(212,168,67,.5); }
.vinfo { padding: 14px; }
.vch { display: flex; align-items: center; gap: 8px; margin-bottom: 7px; }
.chav { width: 26px; height: 26px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--crimson)); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--ink); }
.chname { font-size: 11px; color: var(--muted); font-weight: 600; }
.vtitle { font-size: 13px; font-weight: 700; line-height: 1.4; margin-bottom: 8px; color: var(--white); }
.vmeta { display: flex; align-items: center; gap: 10px; font-size: 10px; color: var(--muted); }
.catbadge { padding: 2px 8px; border-radius: 5px; font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; background: rgba(255,255,255,.06); }
.vacts { display: flex; gap: 5px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.05); }
.vact { flex: 1; padding: 6px 4px; border-radius: 7px; border: 1px solid rgba(255,255,255,.06); background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; transition: .15s; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.vact:hover { border-color: var(--gold); color: var(--gold); background: var(--golddim); }
.vact.liked { color: #e53935; border-color: rgba(229,57,53,.25); }

/* ── SONG LIST ── */
.slist { display: flex; flex-direction: column; gap: 3px; margin-bottom: 28px; }
.srow { display: flex; align-items: center; gap: 13px; padding: 10px 13px; border-radius: 11px; transition: .15s; cursor: pointer; border: 1px solid transparent; }
.srow:hover { background: var(--golddim); border-color: var(--border); }
.srow.playing { background: linear-gradient(135deg, rgba(212,168,67,.12), rgba(212,168,67,.04)); border-color: rgba(212,168,67,.25); }
.snum { width: 22px; text-align: center; font-size: 11px; color: var(--muted); flex-shrink: 0; }
.scov { width: 42px; height: 42px; border-radius: 9px; background: linear-gradient(135deg, var(--gold), var(--crimson)); display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.scov img { width: 100%; height: 100%; object-fit: cover; }
.sdet { flex: 1; min-width: 0; }
.stitle { font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sart { font-size: 10px; color: var(--muted); }
.smeta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.splays { font-size: 10px; color: var(--muted); }
.sacts { display: flex; gap: 5px; }
.sbtn { background: none; border: none; color: var(--muted); font-size: 14px; cursor: pointer; transition: .2s; padding: 4px 5px; border-radius: 6px; }
.sbtn:hover { color: var(--gold); background: var(--golddim); }
.sdur { font-size: 10px; color: var(--muted); width: 34px; text-align: right; }

/* ── MUSIC PLAYER ── */
.player {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(8,8,12,.97); backdrop-filter: blur(28px);
  border-top: 1px solid var(--border); padding: 10px 22px;
  display: none; align-items: center; gap: 18px;
}
.player::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent); opacity: .5; }
.player.on { display: flex; }
.pcov { width: 46px; height: 46px; border-radius: 9px; background: linear-gradient(135deg, var(--gold), var(--crimson)); display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; overflow: hidden; box-shadow: 0 0 14px rgba(212,168,67,.2); }
.pcov img { width: 100%; height: 100%; object-fit: cover; }
.pinfo { flex: 0 0 190px; }
.ptitle { font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.partist { font-size: 10px; color: var(--muted); margin-top: 2px; }
.pctrls { display: flex; align-items: center; gap: 14px; flex: 1; justify-content: center; max-width: 380px; }
.cbtn { background: none; border: none; color: var(--muted); font-size: 17px; cursor: pointer; transition: .2s; padding: 4px; border-radius: 6px; }
.cbtn:hover { color: var(--white); }
.cbtn.active { color: var(--gold); }
.cbtn.pp { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #7a4e10); color: var(--ink); font-size: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 12px rgba(212,168,67,.3); }
.pwrap { flex: 1; max-width: 380px; }
.pbar { width: 100%; height: 3px; background: rgba(255,255,255,.1); border-radius: 2px; cursor: pointer; position: relative; }
.pfill { height: 100%; background: linear-gradient(90deg, var(--green), var(--gold)); border-radius: 2px; transition: .1s; }
.ptime { display: flex; justify-content: space-between; font-size: 9px; color: var(--muted); margin-top: 4px; }
.pvol { display: flex; align-items: center; gap: 7px; flex: 0 0 130px; }
.pvol input { width: 75px; height: 3px; accent-color: var(--gold); }

/* ── TABS ── */
.tabs { display: flex; gap: 2px; margin-bottom: 20px; border-bottom: 1px solid var(--border); padding-bottom: 0; overflow-x: auto; }
.tabs::-webkit-scrollbar { height: 0; }
.tbtn { padding: 9px 16px; border: none; background: none; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 12px; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: .2s; white-space: nowrap; }
.tbtn:hover { color: var(--white); }
.tbtn.active { color: var(--green2); border-bottom-color: var(--green); }
.tpane { display: none; }
.tpane.active { display: block; }

/* ── LIVE TV ── */
.lgrid { display: grid; grid-template-columns: 1fr 340px; gap: 20px; margin-bottom: 28px; }
.lplayer { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.lscreen { aspect-ratio: 16/9; background: #000; display: flex; align-items: center; justify-content: center; position: relative; }
.lscreen iframe { width: 100%; height: 100%; border: none; }
.loffline { text-align: center; padding: 36px 20px; }
.loffline .oi { font-size: 54px; margin-bottom: 12px; }
.lsidebar { display: flex; flex-direction: column; gap: 14px; }
.lchat { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); flex: 1; display: flex; flex-direction: column; overflow: hidden; min-height: 380px; }
.lchead { padding: 12px 14px; border-bottom: 1px solid var(--border); font-weight: 700; font-size: 12px; display: flex; justify-content: space-between; align-items: center; }
.lmsgs { flex: 1; overflow-y: auto; padding: 10px; display: flex; flex-direction: column; gap: 7px; }
.lmsg { font-size: 11px; line-height: 1.5; }
.lmsg .ls { font-weight: 700; color: var(--gold); }
.lcinput { display: flex; gap: 7px; padding: 9px 10px; border-top: 1px solid var(--border); }
.lcinput input { flex: 1; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 8px; padding: 7px 11px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 11px; outline: none; }
.lcinput button { background: linear-gradient(135deg, var(--gold), #7a4e10); border: none; color: var(--ink); border-radius: 8px; padding: 7px 13px; cursor: pointer; font-weight: 700; font-size: 11px; }
.sched { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 14px; }
.sitem { display: flex; gap: 10px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.04); }
.sitem:last-child { border-bottom: none; }
.stime { font-size: 10px; color: var(--gold); font-weight: 700; white-space: nowrap; min-width: 50px; }
.stit { font-size: 12px; font-weight: 600; }
.styp { font-size: 10px; color: var(--muted); }

/* ── ADMIN ── */
.astats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-bottom: 24px; }
.acard { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 18px; position: relative; overflow: hidden; transition: .2s; }
.acard:hover { border-color: rgba(26,138,64,.3); box-shadow: var(--shg); }
.acard::after { content: attr(data-i); position: absolute; right: -6px; bottom: -10px; font-size: 52px; opacity: .07; }
.an { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--gold); letter-spacing: 1px; }
.al { font-size: 10px; color: var(--muted); margin-top: 3px; letter-spacing: 1.2px; text-transform: uppercase; }
.ad { font-size: 10px; color: var(--green); margin-top: 5px; }
.atable { width: 100%; border-collapse: collapse; font-size: 12px; }
.atable th { text-align: left; padding: 10px 12px; font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
.atable td { padding: 11px 12px; border-bottom: 1px solid rgba(255,255,255,.03); vertical-align: middle; }
.atable tr:hover td { background: rgba(255,255,255,.02); }
.sbadge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: 20px; font-size: 9px; font-weight: 700; }
.sbadge.pending { background: rgba(255,152,0,.12); color: #ffb74d; border: 1px solid rgba(255,152,0,.25); }
.sbadge.approved { background: rgba(34,197,94,.12); color: #86efac; border: 1px solid rgba(34,197,94,.25); }
.sbadge.banned { background: rgba(229,57,53,.12); color: #fca5a5; border: 1px solid rgba(229,57,53,.25); }
.tbtn2 { padding: 4px 9px; border-radius: 6px; border: 1px solid var(--border); background: transparent; color: var(--muted); font-size: 10px; cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; transition: .15s; margin-right: 3px; }
.tbtn2:hover { border-color: var(--gold); color: var(--gold); }
.tbtn2.ok { border-color: rgba(34,197,94,.4); color: #86efac; }
.tbtn2.bad:hover { border-color: var(--crimson2); color: #fca5a5; }

/* ── CHANNEL / PROFILE ── */
.banner { height: 150px; background: linear-gradient(135deg, #1a0d2e, #0a1a28, #1a0a0a); border-radius: var(--r); position: relative; overflow: hidden; border: 1px solid var(--border); }
.banner-inner { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 120px; opacity: .06; font-family: 'Bebas Neue', sans-serif; color: var(--gold); }
.chinfo { display: flex; align-items: flex-end; gap: 16px; padding: 0 20px; margin-top: -32px; margin-bottom: 20px; position: relative; z-index: 1; }
.chav2 { width: 72px; height: 72px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--crimson)); display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: var(--ink); border: 3px solid var(--ink); flex-shrink: 0; overflow: hidden; }
.chav2 img { width: 100%; height: 100%; object-fit: cover; }
.chmeta h2 { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; }
.chmeta p { font-size: 11px; color: var(--muted); margin-top: 3px; }
.subbtn { background: linear-gradient(135deg, var(--green), #0a4020); color: #fff; border: none; border-radius: 20px; padding: 8px 20px; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 11px; cursor: pointer; transition: .2s; margin-left: auto; flex-shrink: 0; align-self: flex-end; margin-bottom: 4px; }
.subbtn:hover { transform: scale(1.04); box-shadow: 0 4px 14px rgba(212,168,67,.3); }
.subbtn.sd { background: rgba(255,255,255,.08); color: var(--white); border: 1px solid var(--border); }

/* ── PREMIUM ── */
.premcard { background: linear-gradient(135deg, rgba(26,138,64,.12), rgba(201,168,76,.04)); border: 1px solid rgba(26,138,64,.25); border-radius: 20px; padding: 28px; text-align: center; margin-bottom: 18px; position: relative; overflow: hidden; }
.premcard::before { content: '👑'; position: absolute; right: -20px; top: -20px; font-size: 120px; opacity: .06; }
.plangrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 18px; max-width: 480px; margin-left: auto; margin-right: auto; }
.planc { background: var(--card); border: 2px solid var(--border); border-radius: var(--r); padding: 18px; text-align: center; transition: .2s; cursor: pointer; }
.planc:hover, .planc.sel { border-color: var(--green); background: rgba(26,138,64,.1); box-shadow: 0 0 20px rgba(26,138,64,.15); }
.pprice { font-family: 'Bebas Neue', sans-serif; font-size: 30px; color: var(--green2); letter-spacing: 1px; }
.pper { font-size: 10px; color: var(--muted); }
.pfeat { font-size: 11px; color: var(--muted); margin-top: 10px; text-align: left; line-height: 1.9; }
.pbtns { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; max-width: 480px; }

/* ── DONATE ── */
.donbox { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 24px; text-align: center; margin-bottom: 18px; }
.damt { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin: 14px 0; }
.dbtn { padding: 8px 18px; border-radius: 20px; border: 1px solid var(--border); background: transparent; color: var(--muted); cursor: pointer; font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 12px; transition: .2s; }
.dbtn:hover, .dbtn.sel { border-color: var(--gold); color: var(--gold); background: var(--golddim); }

/* ── AD BANNER ── */
.adbanner { background: linear-gradient(135deg, rgba(168,85,247,.1), rgba(168,85,247,.03)); border: 1px solid rgba(168,85,247,.2); border-radius: 12px; padding: 12px 18px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; font-size: 12px; }

/* ── MODALS ── */
.mbg { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,.88); backdrop-filter: blur(16px); display: none; align-items: center; justify-content: center; padding: 20px; }
.mbg.open { display: flex; }
.mbox { background: linear-gradient(160deg, var(--mid), var(--card)); border: 1px solid var(--border); border-radius: 22px; width: 100%; overflow: hidden; box-shadow: 0 50px 120px rgba(0,0,0,.8); animation: mUp .3s ease; }
@keyframes mUp {
  from { transform: translateY(28px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.mhead { padding: 22px 24px 0; display: flex; align-items: flex-start; justify-content: space-between; }
.mhead h3 { font-family: 'Playfair Display', serif; font-size: 17px; }
.mclose { background: rgba(255,255,255,.06); border: none; color: var(--muted); width: 30px; height: 30px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: .2s; }
.mclose:hover { background: rgba(229,57,53,.2); color: #fca5a5; }
.mbody { padding: 18px 24px 24px; }
.ff { margin-bottom: 14px; }
.ff label { display: block; font-size: 10px; font-weight: 700; color: var(--muted); letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 5px; }
.ff input, .ff select, .ff textarea { width: 100%; background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 9px; padding: 10px 13px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 12px; outline: none; transition: .2s; }
.ff input:focus, .ff select:focus, .ff textarea:focus { border-color: var(--gold); background: var(--golddim); }
.ff textarea { resize: vertical; min-height: 74px; }
.ff select option { background: var(--mid); }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.uzone { border: 2px dashed var(--border); border-radius: 11px; padding: 24px; text-align: center; cursor: pointer; transition: .2s; }
.uzone:hover { border-color: var(--gold); background: var(--golddim); }
.uzone input { display: none; }
.uzone .ui { font-size: 32px; margin-bottom: 6px; }
.uzone p { font-size: 11px; color: var(--muted); }

/* ── SEARCH OVERLAY ── */
.sovl { position: fixed; inset: 0; z-index: 8000; background: rgba(0,0,0,.9); backdrop-filter: blur(16px); display: none; align-items: flex-start; justify-content: center; padding-top: 70px; }
.sovl.open { display: flex; }
.sbox { background: var(--mid); border: 1px solid rgba(212,168,67,.35); border-radius: 18px; width: 100%; max-width: 580px; margin: 0 14px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,.8); }
.stop { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--border); }
.stop input { flex: 1; background: none; border: none; color: var(--white); font-size: 15px; font-family: 'DM Sans', sans-serif; outline: none; }
.sres { max-height: 340px; overflow-y: auto; }
.sri { display: flex; align-items: center; gap: 13px; padding: 11px 18px; transition: .15s; cursor: pointer; }
.sri:hover { background: rgba(212,168,67,.07); }
.sri .srico { width: 42px; height: 42px; border-radius: 9px; background: linear-gradient(135deg, var(--gold), var(--crimson)); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.sri .srtit { font-size: 12px; font-weight: 700; }
.sri .srsub { font-size: 10px; color: var(--muted); }

/* ── TOAST ── */
#toast { position: fixed; bottom: 86px; left: 50%; transform: translateX(-50%) translateY(18px); background: var(--mid); border: 1px solid var(--border); border-radius: 11px; padding: 11px 20px; font-size: 12px; font-weight: 600; opacity: 0; transition: .28s; pointer-events: none; z-index: 9999; white-space: nowrap; box-shadow: var(--sh); }
#toast.on { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── STATS MINI GRID ── */
.statgrid { display: grid; grid-template-columns: repeat(4,1fr); gap: 13px; margin-bottom: 26px; }
.sgcard { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 16px; transition: .2s; position: relative; overflow: hidden; }
.sgcard:hover { border-color: rgba(212,168,67,.3); transform: translateY(-2px); }
.sgcard::after { content: attr(data-ico); position: absolute; right: -4px; bottom: -8px; font-size: 44px; opacity: .07; }
.sgn { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--gold); letter-spacing: 1px; }
.sgl { font-size: 9px; color: var(--muted); margin-top: 3px; letter-spacing: 1.5px; text-transform: uppercase; }
.sgd { font-size: 10px; color: var(--green); margin-top: 4px; }

/* ── UPLOAD PAGE ── */
.upwrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 820px; }
.upcard { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; transition: .2s; }
.upcard:hover { border-color: rgba(212,168,67,.25); }
.uptab { padding: 10px 20px; border: 1px solid var(--border); border-radius: 10px; background: transparent; color: var(--muted); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; transition: .2s; }
.uptab:hover { border-color: var(--gold); color: var(--gold); }
.uptab.active { background: linear-gradient(135deg, var(--green), #0a4020); color: #fff; border-color: transparent; }
.upanel {}
.updropzone { border: 2px dashed var(--border); border-radius: 14px; min-height: 220px; display: flex; align-items: center; justify-content: center; text-align: center; cursor: pointer; transition: .3s; position: relative; overflow: hidden; background: rgba(255,255,255,.02); }
.updropzone:hover, .updropzone.drag { border-color: var(--gold); background: rgba(212,168,67,.06); box-shadow: 0 0 20px rgba(212,168,67,.1); }
.updropzone.drag { border-style: solid; transform: scale(1.01); }
.thumbzone { border: 1px dashed var(--border); border-radius: 10px; height: 68px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: .2s; position: relative; overflow: hidden; background: rgba(255,255,255,.02); }
.thumbzone:hover { border-color: var(--gold); background: var(--golddim); }

/* ── FORM FULL BUTTONS ── */
.btn-full { width: 100%; padding: 12px; border-radius: 11px; border: none; font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; transition: .2s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-full.primary { background: linear-gradient(135deg, var(--green), #0a4020); color: #fff; }
.btn-full.primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(26,138,64,.35); }
.btn-full.ghost { background: transparent; border: 1px solid var(--border); color: var(--muted); }
.btn-full.ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── REVENUE CARDS ── */
.revcards { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.rvc { background: rgba(255,255,255,.03); border: 1px solid var(--border); border-radius: 10px; padding: 14px; }
.rvn { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--gold); }
.rvl { font-size: 10px; color: var(--muted); margin-top: 2px; letter-spacing: 1px; text-transform: uppercase; }

/* ── RESPONSIVE ── */
@media(max-width: 1100px) { nav.hnav a { padding: 4px 6px; font-size: 9px; } }
@media(max-width: 920px) {
  aside { display: none; }
  .astats, .statgrid { grid-template-columns: 1fr 1fr; }
  .lgrid { grid-template-columns: 1fr; }
  .upwrap { grid-template-columns: 1fr; }
  .plangrid, .pbtns, .revcards { grid-template-columns: 1fr; }
  nav.hnav { display: none; }
  .h-search { flex: 0 1 180px; }
}
@media(max-width: 600px) {
  main { padding: 14px; }
  .vgrid { grid-template-columns: 1fr; }
  .hero { padding: 24px; }
  .hero h1 { font-size: 26px; }
  .astats, .statgrid { grid-template-columns: 1fr 1fr; }
  .h-search { display: none; }
}

/* ═══════════════════════════════════════════════
   MOBILE NAVIGATION — HAMBURGER + DRAWER + BOTTOM NAV
   ═══════════════════════════════════════════════ */

/* Hamburger button — only shown on mobile */
.mob-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: .2s;
  margin-left: 4px;
}
.mob-hamburger:hover { border-color: var(--gold); background: var(--golddim); }
.mob-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.mob-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mob-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mob-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Overlay behind drawer */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 1100;
  opacity: 0;
  transition: opacity .3s;
}
.mob-overlay.visible { opacity: 1; }

/* Side drawer */
.mob-drawer {
  position: fixed;
  top: 0; left: -100%;
  width: min(80vw, 300px);
  height: 100dvh;
  background: rgba(10,10,16,.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-right: 1px solid var(--border);
  z-index: 1200;
  transition: left .3s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  padding-bottom: 80px;
}
.mob-drawer.open { left: 0; }

/* Drawer header */
.mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: rgba(10,10,16,.98);
  z-index: 1;
}
.mob-drawer-close {
  width: 30px; height: 30px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: 7px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--muted);
  transition: .2s;
}
.mob-drawer-close:hover { border-color: var(--gold); color: var(--gold); }

/* Drawer nav links */
.mob-nav-links { padding: 10px 0; }
.mob-nav-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: .2s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.mob-nav-links a:hover, .mob-nav-links a.active {
  color: var(--gold);
  background: var(--golddim);
  border-left-color: var(--gold);
}
.mob-nav-links a .mob-nav-icon { font-size: 18px; width: 24px; text-align: center; }

/* Drawer auth section */
.mob-drawer-auth {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mob-drawer-auth .btn-o,
.mob-drawer-auth .btn-g {
  width: 100%;
  justify-content: center;
  padding: 11px;
  font-size: 13px;
}

/* Bottom navigation bar */
.mob-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  height: 62px;
  background: rgba(8,8,12,.96);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  z-index: 900;
  padding: 0 4px;
  padding-bottom: env(safe-area-inset-bottom);
}
.mob-bottom-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), var(--gold), var(--green), transparent);
  opacity: .5;
}
.mob-bnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
}
.mob-bnav-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 4px 10px;
  border-radius: 10px;
  cursor: pointer;
  background: none;
  border: none;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .3px;
  transition: .2s;
  min-width: 52px;
}
.mob-bnav-btn:hover, .mob-bnav-btn.active {
  color: var(--gold);
  background: var(--golddim);
}
.mob-bnav-btn .mob-bnav-icon { font-size: 20px; line-height: 1; }

/* Mobile search overlay */
.mob-search-overlay {
  display: none;
  position: fixed;
  top: 58px; left: 0; right: 0;
  background: rgba(8,8,12,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 14px;
  z-index: 850;
  animation: slideDown .2s ease;
}
.mob-search-overlay.visible { display: block; }
.mob-search-overlay input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
}
.mob-search-overlay input:focus { border-color: var(--gold); }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Hide sign-in/register buttons and some icons on small mobile to save space */
@media(max-width: 480px) {
  #authBtns { display: none !important; }
  .uchip .uname { display: none; }
  /* Push main content above bottom nav */
  main { padding-bottom: 80px; }
  .mob-hamburger { display: flex; }
  .mob-bottom-nav { display: flex; }
  header { padding: 0 10px; gap: 6px; }
}
@media(min-width: 481px) and (max-width: 920px) {
  .mob-hamburger { display: flex; }
  .mob-bottom-nav { display: flex; }
  main { padding-bottom: 80px; }
  header { padding: 0 12px; gap: 8px; }
}
/* ── AI CHAT ── */
.ai-msg { display: flex; gap: 10px; align-items: flex-start; }
.ai-msg.ai-user { flex-direction: row-reverse; }
.ai-av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #4299e1, #805ad5); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.ai-msg.ai-user .ai-av { background: var(--gold); }
.ai-bubble { background: rgba(255,255,255,.07); border: 1px solid var(--border); border-radius: 14px 14px 14px 4px; padding: 10px 14px; max-width: 80%; font-size: 12.5px; line-height: 1.65; }
.ai-msg.ai-user .ai-bubble { background: rgba(212,168,67,.15); border-color: rgba(212,168,67,.3); border-radius: 14px 14px 4px 14px; }
.ai-name { font-size: 10px; font-weight: 700; color: var(--gold); margin-bottom: 4px; letter-spacing: .5px; text-transform: uppercase; }
.ai-msg.ai-user .ai-name { color: var(--gold); text-align: right; }
.ai-suggestion { background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; padding: 8px 12px; color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 11px; cursor: pointer; text-align: left; transition: .2s; }
.ai-suggestion:hover { background: rgba(212,168,67,.1); border-color: rgba(212,168,67,.3); color: var(--gold); }
.typing-dots span { animation: blink 1.4s infinite; display: inline-block; }
.typing-dots span:nth-child(2) { animation-delay: .2s; }
.typing-dots span:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: 0; } 40% { opacity: 1; } }

/* ── AUTH ENHANCEMENTS ── */
.ff input[readonly] { opacity: .55; cursor: not-allowed; }
.ff input:focus, .ff textarea:focus, .ff select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,.15);
}
#loginBtn:disabled, #regBtn:disabled, #saveProfileBtn:disabled, #changePwBtn:disabled {
  opacity: .6; cursor: not-allowed; pointer-events: none;
}
.mbox { animation: slideUp .25s ease; }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Profile avatar large */
#profAvTxt {
  background-size: cover !important;
  background-position: center !important;
}
