*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  width: 100%; min-height: 100%;
  overflow-x: hidden;
  cursor: none;
  background: #02020e;
  font-family: 'Segoe UI', system-ui, sans-serif;
  user-select: none; -webkit-user-select: none;
}
body.normal-cursor, body.normal-cursor * { cursor: default !important; }

/* ═══════════════════════════════════
   BACKGROUND — NEON AURORA
═══════════════════════════════════ */
.scene {
  position: fixed; inset: 0; overflow: hidden; z-index: 0;
  background: #02020e;
}

/* Rotating aurora sweep */
.scene::before {
  content: '';
  position: absolute; inset: -50%;
  background:
    conic-gradient(
      from 0deg at 30% 40%,
      transparent 0deg,
      rgba(91,200,255,0.05) 20deg,
      transparent 60deg,
      rgba(192,132,255,0.05) 120deg,
      transparent 160deg,
      rgba(255,128,207,0.04) 200deg,
      transparent 240deg,
      rgba(0,255,204,0.04) 300deg,
      transparent 360deg
    );
  animation: aurora-spin 28s linear infinite;
  pointer-events: none;
}
@keyframes aurora-spin { to { transform: rotate(360deg); } }

.scene::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 20%, rgba(91,200,255,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 45% at 80% 80%, rgba(192,132,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Grid overlay */
.grid-overlay {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background-image:
    linear-gradient(rgba(91,200,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,200,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
}

#sparkCanvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 500;
}

/* BLOBS — vivid neon */
.blob {
  position: absolute; border-radius: 50%;
  will-change: transform; filter: blur(80px);
  opacity: 0.62; mix-blend-mode: screen;
}
.blob-1 { width:72vmax;height:72vmax;background:radial-gradient(circle at 35% 35%,#00d4ff,#0050cc);top:-24vmax;left:-18vmax;animation:d1 22s ease-in-out infinite alternate; }
.blob-2 { width:64vmax;height:64vmax;background:radial-gradient(circle at 65% 65%,#d466ff,#6600cc);bottom:-18vmax;right:-18vmax;animation:d2 26s ease-in-out infinite alternate; }
.blob-3 { width:52vmax;height:52vmax;background:radial-gradient(circle at 50% 50%,#00ffcc,#00aa7a);top:26%;left:18%;animation:d3 18s ease-in-out infinite alternate; }
.blob-4 { width:58vmax;height:58vmax;background:radial-gradient(circle at 35% 65%,#ff55cc,#cc0066);bottom:-4vmax;left:-10vmax;animation:d4 23s ease-in-out infinite alternate; }
.blob-5 { width:48vmax;height:48vmax;background:radial-gradient(circle at 68% 28%,#88bbff,#0033bb);top:2%;right:-2%;animation:d5 28s ease-in-out infinite alternate; }
.blob-6 { width:44vmax;height:44vmax;background:radial-gradient(circle at 50% 50%,#ffe066,#ff9900);top:60%;right:16%;animation:d6 16s ease-in-out infinite alternate; }

@keyframes d1{0%{transform:translate(0,0) scale(1)}35%{transform:translate(10vw,14vh) scale(1.11)}70%{transform:translate(5vw,6vh) scale(0.93)}100%{transform:translate(14vw,22vh) scale(1.08)}}
@keyframes d2{0%{transform:translate(0,0) scale(1)}40%{transform:translate(-12vw,-10vh) scale(1.13)}70%{transform:translate(-6vw,-16vh) scale(0.91)}100%{transform:translate(-16vw,-8vh) scale(1.09)}}
@keyframes d3{0%{transform:translate(0,0) rotate(0deg) scale(1)}30%{transform:translate(8vw,-12vh) rotate(24deg) scale(1.15)}65%{transform:translate(-10vw,10vh) rotate(-14deg) scale(0.89)}100%{transform:translate(12vw,-7vh) rotate(18deg) scale(1.07)}}
@keyframes d4{0%{transform:translate(0,0) scale(1)}50%{transform:translate(16vw,-14vh) scale(1.12)}100%{transform:translate(8vw,-24vh) scale(0.94)}}
@keyframes d5{0%{transform:translate(0,0) scale(1)}35%{transform:translate(-10vw,12vh) scale(1.1)}70%{transform:translate(-16vw,6vh) scale(0.92)}100%{transform:translate(-8vw,18vh) scale(1.13)}}
@keyframes d6{0%{transform:translate(0,0) scale(1)}45%{transform:translate(-12vw,-10vh) scale(1.16)}100%{transform:translate(6vw,-16vh) scale(0.90)}}

/* ═══════════════════════════════════
   APP LAYOUT
═══════════════════════════════════ */
.app-wrap {
  position: relative; z-index: 10;
  min-height: 100vh;
  display: flex; flex-direction: column;
  padding: 0 20px 62px;
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 4px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(91,200,255,0.12);
  background: rgba(2,2,14,0.4);
  backdrop-filter: blur(10px);
}

.brand { display: flex; align-items: center; gap: 9px; }
.brand-icon {
  display: flex; align-items: center;
  animation: icon-pulse 3s ease-in-out infinite alternate;
}
@keyframes icon-pulse {
  0%   { filter: drop-shadow(0 0 8px rgba(91,200,255,0.7)); }
  100% { filter: drop-shadow(0 0 18px rgba(212,102,255,1)); }
}

.brand-benja {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem; font-weight: 900; letter-spacing: 0.14em;
  background: linear-gradient(135deg, #00d4ff 0%, #5bc8ff 40%, #88bbff 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: benja-glow 2.5s ease-in-out infinite alternate;
}
@keyframes benja-glow {
  0%   { filter: drop-shadow(0 0 10px rgba(0,212,255,0.6)); }
  100% { filter: drop-shadow(0 0 28px rgba(0,212,255,1.0)); }
}

.brand-sep {
  font-size: 0.65rem; letter-spacing: 0.05em;
  animation: sep-pulse 1.8s ease-in-out infinite alternate;
  color: rgba(200,200,255,0.5);
}
@keyframes sep-pulse { 0%{opacity:0.3;color:rgba(91,200,255,0.4)} 100%{opacity:1;color:rgba(212,102,255,0.9)} }

.brand-hex {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem; font-weight: 900; letter-spacing: 0.14em;
  background: linear-gradient(135deg, #d466ff 0%, #e879f9 50%, #ff80cf 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  animation: hex-glow 2.5s ease-in-out infinite alternate;
}
@keyframes hex-glow {
  0%   { filter: drop-shadow(0 0 10px rgba(212,102,255,0.6)); }
  100% { filter: drop-shadow(0 0 28px rgba(255,128,207,1.0)); }
}

.header-controls { display: flex; align-items: center; gap: 8px; }
.ctrl-btn {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: rgba(91,200,255,0.06);
  border: 1px solid rgba(91,200,255,0.2);
  border-radius: 9px; color: rgba(150,200,255,0.6);
  cursor: none; transition: all 0.22s;
}
.ctrl-btn svg { width: 16px; height: 16px; }
.ctrl-btn:hover {
  background: rgba(91,200,255,0.16); border-color: rgba(91,200,255,0.6);
  color: #fff; box-shadow: 0 0 18px rgba(91,200,255,0.45);
}
.ctrl-btn.active {
  background: rgba(0,255,204,0.12); border-color: rgba(0,255,204,0.5);
  color: #00ffcc; box-shadow: 0 0 16px rgba(0,255,204,0.4);
}

/* ═══════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════ */
.main-layout { display: flex; gap: 18px; align-items: flex-start; flex: 1; }
.left-col  { flex: 1 1 58%; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.right-col { flex: 0 0 330px; position: sticky; top: 14px; }

/* ═══════════════════════════════════
   GLASS PANELS — animated neon glow
═══════════════════════════════════ */
.glass-panel {
  background: rgba(4, 3, 18, 0.85);
  border: 1px solid rgba(91, 200, 255, 0.16);
  border-radius: 16px; padding: 18px;
  backdrop-filter: blur(28px);
  box-shadow:
    0 0 0 1px rgba(91,200,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 16px 48px rgba(0,0,0,0.6);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.glass-panel:hover {
  border-color: rgba(91,200,255,0.22);
}

.panel-title {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  color: #7ecfff; margin-bottom: 12px;
  text-shadow: 0 0 14px rgba(91,200,255,0.7), 0 0 30px rgba(91,200,255,0.3);
  display: flex; align-items: center; gap: 8px;
}
.panel-title::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, rgba(91,200,255,0.35), transparent);
}

/* FORMAT BUTTONS */
.fmt-row { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.fmt-btn {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 11px;
  background: rgba(91,200,255,0.06);
  border: 1px solid rgba(91,200,255,0.2);
  border-radius: 7px; color: rgba(200,230,255,0.78);
  font-size: 0.75rem; font-weight: 600; cursor: none; transition: all 0.2s;
}
.fmt-btn:hover {
  background: rgba(91,200,255,0.18); border-color: rgba(91,200,255,0.6);
  color: #fff; box-shadow: 0 0 16px rgba(91,200,255,0.4), inset 0 0 10px rgba(91,200,255,0.08);
}
.tag-pill {
  background: rgba(212,102,255,0.18); border: 1px solid rgba(212,102,255,0.32);
  border-radius: 4px; padding: 1px 4px; font-size: 0.68rem; color: #da8bff;
}

/* COLOR GRID */
.section-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em;
  color: rgba(120,170,255,0.4); margin-bottom: 8px;
}
.color-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 4px; margin-bottom: 12px;
}
.color-swatch {
  height: 20px; border-radius: 4px; cursor: none;
  border: 1px solid rgba(255,255,255,0.07);
  transition: transform 0.12s, box-shadow 0.15s, border-color 0.12s;
}
.color-swatch:hover {
  transform: scale(1.35); border-color: rgba(255,255,255,0.6);
  z-index: 2; position: relative;
  box-shadow: 0 0 12px 2px currentColor;
}
.color-swatch[data-hex="000000"] { border-color: rgba(255,255,255,0.22); }

/* TEXTAREA */
.bio-textarea {
  width: 100%; height: 86px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(91,200,255,0.15);
  border-radius: 10px; color: rgba(220,240,255,0.92);
  font-family: 'Courier New', monospace; font-size: 0.82rem;
  padding: 10px 12px; resize: none; outline: none; cursor: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.bio-textarea:focus {
  border-color: rgba(91,200,255,0.55);
  box-shadow: 0 0 0 3px rgba(91,200,255,0.1), 0 0 24px rgba(91,200,255,0.18);
}
.bio-textarea:disabled { opacity: 0.35; }
.bio-textarea::placeholder { color: rgba(150,180,220,0.28); }

.bio-footer-row { display: flex; justify-content: space-between; align-items: center; margin-top: 7px; }
.popular-row { font-size: 0.72rem; color: rgba(150,190,240,0.48); display: flex; align-items: center; gap: 3px; }
.pop-char { cursor: none; padding: 1px 4px; border-radius: 4px; transition: background 0.15s, color 0.15s; color: rgba(200,220,255,0.6); }
.pop-char:hover { background: rgba(91,200,255,0.15); color: #fff; text-shadow: 0 0 8px #5bc8ff; }
.char-count { font-size: 0.7rem; color: rgba(150,190,240,0.38); font-variant-numeric: tabular-nums; }

/* PREVIEW */
.preview-box {
  min-height: 52px;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(91,200,255,0.15);
  border-radius: 10px; padding: 12px 15px;
  font-family: 'Rajdhani', 'Segoe UI', sans-serif;
  font-size: 1.05rem; font-weight: 600;
  line-height: 1.7; word-break: break-all; color: #fff;
  letter-spacing: 0.02em;
}
.preview-placeholder { color: rgba(150,180,220,0.26); font-size: 0.82rem; font-family: 'Rajdhani', sans-serif; font-weight: 400; }

/* preview span styles */
.preview-box span.p-normal     { font-weight: 400; }
.preview-box span.p-bold       { font-weight: 900; font-size: 1.12em; letter-spacing: 0.04em; }
.preview-box span.p-italic     { font-style: italic; font-weight: 400; }
.preview-box span.p-bolditalic { font-weight: 900; font-style: italic; font-size: 1.12em; }

/* UPDATE PANEL */
.field-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(120,180,255,0.48); margin-bottom: 7px;
}
.token-input {
  width: 100%;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(91,200,255,0.15);
  border-radius: 10px; color: rgba(220,240,255,0.92);
  font-size: 0.83rem; padding: 9px 13px;
  outline: none; cursor: none;
  font-family: 'Courier New', monospace;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.token-input:focus {
  border-color: rgba(91,200,255,0.55);
  box-shadow: 0 0 0 3px rgba(91,200,255,0.1), 0 0 20px rgba(91,200,255,0.15);
}
.token-input:disabled { opacity: 0.35; }
.token-input::placeholder { color: rgba(150,180,220,0.3); }

.field-err {
  display: flex; align-items: center; gap: 6px;
  color: #ff6b9d; font-size: 0.73rem; margin-top: 6px;
  padding: 6px 10px;
  background: rgba(255,80,120,0.08); border: 1px solid rgba(255,80,120,0.22);
  border-radius: 7px; animation: shake 0.35s ease;
}
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-5px)} 75%{transform:translateX(5px)} }
.hidden { display: none !important; }

.update-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; margin-top: 12px; padding: 12px 20px;
  background: linear-gradient(135deg, #0077ee 0%, #7c3aed 60%, #c026d3 100%);
  border: none; border-radius: 11px;
  color: #fff; font-size: 0.86rem; font-weight: 700;
  letter-spacing: 0.08em; cursor: none; transition: all 0.25s;
  box-shadow: 0 0 18px rgba(0,119,238,0.3), inset 0 1px 0 rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.update-btn::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent); }
.update-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(0,119,238,0.5), 0 0 60px rgba(192,38,211,0.2), inset 0 1px 0 rgba(255,255,255,0.18);
}
.update-btn:disabled { opacity: 0.4; }

.spin { width: 15px; height: 15px; animation: rotate 0.7s linear infinite; }
@keyframes rotate { to { transform: rotate(360deg); } }

.update-btn.processing {
  background: linear-gradient(135deg, #0055bb 0%, #5a28bb 60%, #9a1aaa 100%);
  animation: proc-pulse 0.9s ease-in-out infinite alternate;
  cursor: not-allowed;
}
@keyframes proc-pulse {
  0%   { box-shadow: 0 0 18px rgba(0,100,220,0.45), inset 0 1px 0 rgba(255,255,255,0.15); }
  100% { box-shadow: 0 0 38px rgba(160,40,200,0.65), 0 0 70px rgba(100,30,180,0.25), inset 0 1px 0 rgba(255,255,255,0.2); }
}

/* ═══════════════════════════════════
   CONSOLE
═══════════════════════════════════ */
.console-card {
  background: rgba(2,1,12,0.97);
  border-radius: 15px; overflow: hidden;
  height: calc(100vh - 80px - 60px); min-height: 400px;
  display: flex; flex-direction: column;
  animation: con-border 5s linear infinite;
}
@keyframes con-border {
  0%   { box-shadow: 0 0 0 1.5px #5bc8ffaa, 0 0 30px rgba(91,200,255,0.28), 0 24px 70px rgba(0,0,0,0.6); }
  20%  { box-shadow: 0 0 0 1.5px #c084ffaa, 0 0 30px rgba(192,132,255,0.28), 0 24px 70px rgba(0,0,0,0.6); }
  40%  { box-shadow: 0 0 0 1.5px #ff80cfaa, 0 0 30px rgba(255,128,207,0.28), 0 24px 70px rgba(0,0,0,0.6); }
  60%  { box-shadow: 0 0 0 1.5px #00ffccaa, 0 0 30px rgba(0,255,204,0.28), 0 24px 70px rgba(0,0,0,0.6); }
  80%  { box-shadow: 0 0 0 1.5px #fde68aaa, 0 0 30px rgba(253,230,138,0.28), 0 24px 70px rgba(0,0,0,0.6); }
  100% { box-shadow: 0 0 0 1.5px #5bc8ffaa, 0 0 30px rgba(91,200,255,0.28), 0 24px 70px rgba(0,0,0,0.6); }
}

.console-titlebar {
  display: flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: rgba(5, 3, 20, 0.98);
  border-bottom: 1px solid rgba(91,200,255,0.1);
}
.con-dots { display: flex; gap: 5px; }
.cdot { display: block; width: 10px; height: 10px; border-radius: 50%; }
.cdot-r { background: #ff5f57; box-shadow: 0 0 6px #ff5f57, 0 0 12px rgba(255,95,87,0.5); }
.cdot-y { background: #febc2e; box-shadow: 0 0 6px #febc2e, 0 0 12px rgba(254,188,46,0.5); }
.cdot-g { background: #28c840; box-shadow: 0 0 6px #28c840, 0 0 12px rgba(40,200,64,0.5); }
.con-label {
  display: flex; align-items: center; gap: 5px; flex: 1; justify-content: center;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  color: rgba(120,180,255,0.5);
}
.con-clear {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: rgba(255,80,80,0.07); border: 1px solid rgba(255,80,80,0.18);
  border-radius: 6px; color: rgba(255,100,100,0.45); cursor: none; transition: all 0.2s;
}
.con-clear:hover { background: rgba(255,80,80,0.2); color: #ff6b6b; border-color: rgba(255,80,80,0.55); }
.con-clear svg { width: 11px; height: 11px; }

.console-body {
  flex: 1; overflow-y: auto;
  padding: 12px 14px;
  font-family: 'Courier New', monospace; font-size: 0.76rem; line-height: 1.78;
  scroll-behavior: smooth;
  background:
    repeating-linear-gradient(
      0deg,
      rgba(0,0,0,0) 0px,
      rgba(0,0,0,0) 21px,
      rgba(91,200,255,0.012) 21px,
      rgba(91,200,255,0.012) 22px
    );
}
.console-body::-webkit-scrollbar { width: 3px; }
.console-body::-webkit-scrollbar-track { background: transparent; }
.console-body::-webkit-scrollbar-thumb { background: rgba(91,200,255,0.3); border-radius: 2px; }

.log-line { display: flex; align-items: flex-start; gap: 7px; padding: 2px 0; animation: log-in 0.28s ease; }
@keyframes log-in { from{opacity:0;transform:translateX(-7px)} to{opacity:1;transform:translateX(0)} }
.log-icon { flex-shrink: 0; margin-top: 3px; }
.log-msg  { flex: 1; word-break: break-all; }

.log-system .log-icon svg { color: #00d4ff; }
.log-system .log-msg       { color: rgba(120,190,255,0.65); }
.log-info   .log-icon svg  { color: #88bbff; }
.log-info   .log-msg       { color: rgba(160,210,255,0.7); }
.log-success .log-icon svg { color: #00ffcc; }
.log-success .log-msg      { color: #00ffcc; text-shadow: 0 0 12px rgba(0,255,204,0.7); font-weight: 600; }
.log-error  .log-icon svg  { color: #ff5599; }
.log-error  .log-msg       { color: #ff5599; text-shadow: 0 0 10px rgba(255,85,153,0.55); }
.log-warn   .log-icon svg  { color: #ffe066; }
.log-warn   .log-msg       { color: #ffe066; text-shadow: 0 0 8px rgba(255,224,102,0.4); }
.log-data .log-icon svg    { color: #d466ff; }
.log-data .log-msg {
  color: transparent;
  background: linear-gradient(90deg, #ffe066, #00ffcc, #00d4ff, #d466ff, #ff80cf);
  -webkit-background-clip: text; background-clip: text;
  background-size: 300%; animation: shimmer-data 2.8s linear infinite; font-weight: 600;
}
@keyframes shimmer-data { 0%{background-position:0%} 100%{background-position:300%} }
.log-key { color: rgba(130,180,255,0.45); }
.log-val { color: #e0eaff; font-weight: 600; }

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */
.site-footer {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 40;
  display: flex; justify-content: center; align-items: center; gap: 20px;
  padding: 10px 0 12px;
  background: rgba(2,2,14,0.88);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(91,200,255,0.1);
}
.foot-link {
  display: flex; align-items: center; gap: 7px;
  text-decoration: none; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  padding: 7px 16px; border-radius: 9px; border: 1px solid transparent;
  transition: all 0.22s; backdrop-filter: blur(8px);
}
.foot-link svg { width: 17px; height: 17px; flex-shrink: 0; }
.foot-link.yt { color: #f87171; border-color: rgba(248,113,113,0.2); background: rgba(248,113,113,0.06); }
.foot-link.yt:hover { background: rgba(248,113,113,0.18); border-color: rgba(248,113,113,0.6); box-shadow: 0 0 22px rgba(248,113,113,0.4); }
.foot-link.dc { color: #818cf8; border-color: rgba(129,140,248,0.2); background: rgba(129,140,248,0.06); }
.foot-link.dc:hover { background: rgba(129,140,248,0.18); border-color: rgba(129,140,248,0.6); box-shadow: 0 0 22px rgba(129,140,248,0.4); }
.foot-link.bmc { color: #fbbf24; border-color: rgba(251,191,36,0.2); background: rgba(251,191,36,0.06); }
.foot-link.bmc:hover { background: rgba(251,191,36,0.18); border-color: rgba(251,191,36,0.6); box-shadow: 0 0 22px rgba(251,191,36,0.4); }

/* ═══════════════════════════════════
   TOAST
═══════════════════════════════════ */
.toast {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  display: flex; align-items: center; gap: 11px;
  padding: 11px 17px;
  background: rgba(4,2,16,0.94); border: 1px solid rgba(255,80,120,0.4);
  border-radius: 11px; backdrop-filter: blur(18px);
  box-shadow: 0 0 22px rgba(255,80,120,0.25), 0 12px 32px rgba(0,0,0,0.6);
  transform: translateX(120%); opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s ease;
  pointer-events: none;
}
.toast.show { transform: translateX(0); opacity: 1; }
.toast-icon { color: #ff5599; filter: drop-shadow(0 0 6px rgba(255,85,153,0.9)); flex-shrink:0; }
.toast-text { display:flex; flex-direction:column; gap:1px; }
.toast-title { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; color: #ff5599; text-shadow: 0 0 10px rgba(255,85,153,0.7); }
.toast-sub   { font-size: 0.7rem; color: rgba(180,160,220,0.65); letter-spacing: 0.12em; }

/* ═══════════════════════════════════
   RIPPLE
═══════════════════════════════════ */
.ripple {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 50;
  transform: translate(-50%,-50%) scale(0);
  animation: ripple-out 0.65s ease-out forwards;
}
@keyframes ripple-out {
  0%  { transform:translate(-50%,-50%) scale(0); opacity:0.85; }
  100%{ transform:translate(-50%,-50%) scale(1); opacity:0; }
}

/* ═══════════════════════════════════
   CURSOR
═══════════════════════════════════ */
.cursor-dot {
  position: fixed; width: 7px; height: 7px;
  background: #fff; border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 5px 2px #fff, 0 0 14px 4px #a78bff, 0 0 28px 8px #00d4ff;
}
.cursor-ring {
  position: fixed; width: 42px; height: 42px;
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  border: 1.5px solid rgba(180,130,255,0.82);
  box-shadow: 0 0 12px 3px rgba(0,212,255,0.55), 0 0 24px 5px rgba(180,130,255,0.28);
  background: rgba(100,80,255,0.04); backdrop-filter: blur(2px);
  transition: width 0.2s, height 0.2s, border-color 0.2s;
}
