:root {
  --accent: #2563eb;
  --accent-light: #eff6ff;
  --accent2: #059669;
  --accent2-light: #ecfdf5;
  --dark: #0f172a;
  --mid: #475569;
  --light: #94a3b8;
  --border: #e2e8f0;
  --bg: #ffffff;
  --sidebar-bg: #f8fafc;
}

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

body {
  font-family: 'Manrope', sans-serif;
  background: #f1f5f9;
  color: var(--dark);
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
}

/* ── SCROLL PROGRESS BAR ── */
#progressBar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent);
  z-index: 10000;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── CUSTOM CURSOR (desktop only) ── */
#customCursor {
  position: fixed;
  pointer-events: none;
  z-index: 9999999;
  font-size: 20px;
  line-height: 1;
  transform: translate(-50%, -50%);
  user-select: none;
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  body.has-custom-cursor { cursor: none !important; }
  body.has-custom-cursor * { cursor: none !important; }
  #customCursor { display: block; }
}

/* ── PAGE ── */
.page {
  max-width: 1080px;
  margin: 32px auto;
  background: var(--bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.08);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--dark);
  padding: 36px 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  position: relative;
}

.top-name {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
  cursor: default;
  user-select: none;
}

.top-title {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 400;
  letter-spacing: 0.3px;
  min-height: 18px;
}
.top-title span { color: #60a5fa; font-weight: 600; }

/* Typing cursor */
.type-cursor {
  animation: blink 0.8s step-end infinite;
  color: #60a5fa;
  font-weight: 300;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

/* View counter */
.view-counter {
  font-size: 11px;
  color: #475569;
  margin-top: 8px;
  min-height: 16px;
}

.topbar-right {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}

.top-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.top-contact-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #64748b;
  font-weight: 600;
}

.top-contact-val {
  font-size: 12px;
  color: #e2e8f0;
  font-family: 'JetBrains Mono', monospace;
}

.top-contact-val.clickable {
  cursor: pointer;
  transition: color 0.15s;
}
.top-contact-val.clickable:hover { color: #60a5fa; }

/* Lang toggle */
.lang-toggle {
  position: absolute;
  top: 16px; right: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #94a3b8;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: 6px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: border-color 0.2s, color 0.2s;
  line-height: 1;
}
.lang-toggle:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ── TOPBAR ACTIONS ── */
.topbar-actions {
  position: absolute;
  top: 10px; right: 76px;
  display: flex; gap: 6px; align-items: center;
}
.action-btn {
  display: flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #94a3b8;
  border-radius: 6px; padding: 5px 11px;
  font-size: 11px; font-weight: 600;
  cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap; line-height: 1;
}
.action-btn:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.35); }
.action-btn:disabled { opacity: 0.5; cursor: not-allowed; }
.action-btn-primary { background: rgba(37,99,235,0.25); border-color: rgba(37,99,235,0.5); color: #93c5fd; }
.action-btn-primary:hover { background: rgba(37,99,235,0.45); color: #fff; border-color: #2563eb; }

@media (max-width: 768px) {
  .topbar-actions { position: static; order: 3; margin-top: 12px; }
}

/* ── STATS ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.stat {
  padding: 20px 28px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 14px;
}
.stat:last-child { border-right: none; }

.stat-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.stat-icon.green { background: var(--accent2-light); }

.stat-val { font-size: 22px; font-weight: 800; color: var(--dark); line-height: 1; margin-bottom: 3px; }
.stat-val span { color: var(--accent); }
.stat-val.green span { color: var(--accent2); }
.stat-desc { font-size: 11px; color: var(--light); font-weight: 500; }

/* ── BODY ── */
.body { display: grid; grid-template-columns: 1fr 280px; }

/* ── MAIN ── */
.main { padding: 36px 48px; border-right: 1px solid var(--border); }

.about {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 13px; line-height: 1.75;
  color: #1e40af; margin-bottom: 32px;
}

.section { margin-bottom: 32px; }

.section-head { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.section-head h2 {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--accent);
}
.section-head::after { content: ''; flex: 1; height: 1px; background: var(--border); }

.job { margin-bottom: 26px; padding-bottom: 26px; border-bottom: 1px dashed var(--border); }
.job:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.job-meta { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4px; gap: 12px; }
.job-title { font-size: 14.5px; font-weight: 700; color: var(--dark); }
.job-period {
  font-size: 11px; font-family: 'JetBrains Mono', monospace;
  color: var(--accent); background: var(--accent-light);
  padding: 3px 8px; border-radius: 4px; white-space: nowrap; flex-shrink: 0;
}
.job-company { font-size: 12px; color: var(--light); margin-bottom: 4px; }
.job-growth {
  font-size: 11px; color: var(--accent2); font-weight: 600;
  margin-bottom: 12px; display: flex; align-items: center; gap: 6px;
}
.job-growth::before { content: '↑'; font-size: 12px; }

.bullets { list-style: none; display: flex; flex-direction: column; gap: 5px; }
.bullets li { font-size: 12.5px; line-height: 1.65; color: var(--mid); padding-left: 16px; position: relative; }
.bullets li::before { content: '·'; position: absolute; left: 4px; color: var(--accent); font-size: 16px; line-height: 1.2; }
.bullets li b { color: var(--dark); font-weight: 600; }

.job-sub-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.8px; color: var(--accent); margin: 14px 0 6px;
}

/* ── SIDEBAR ── */
.sidebar { padding: 36px 28px; background: var(--sidebar-bg); }
.sb-section { margin-bottom: 24px; }
.sb-label { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--light); margin-bottom: 12px; }
.skill-tags { display: flex; flex-wrap: wrap; gap: 4px; }
.tag {
  font-size: 10px; font-family: 'JetBrains Mono', monospace;
  padding: 3px 7px; border-radius: 4px;
  border: 1px solid var(--border); background: #fff; color: var(--mid);
}
.tag.blue { background: var(--accent-light); color: var(--accent); border-color: #bfdbfe; }
.tag.green { background: var(--accent2-light); color: var(--accent2); border-color: #a7f3d0; }
.sb-divider { height: 1px; background: var(--border); margin: 20px 0; }
.info-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 12px; color: var(--mid); }
.info-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.comp-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; margin-bottom: 8px; }
.comp-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--accent); margin-bottom: 5px; }
.comp-text { font-size: 11.5px; color: var(--mid); line-height: 1.6; }

/* ── REACTIONS ── */
.reactions-block {
  padding: 20px 48px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: #fafbfc;
}
.reactions-label { font-size: 12px; color: var(--light); font-weight: 600; flex-shrink: 0; }
.reactions-btns { display: flex; gap: 8px; flex-wrap: wrap; }
.reaction-btn {
  display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 14px;
  cursor: pointer; font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 600; color: var(--mid);
  transition: transform 0.15s, border-color 0.15s, background 0.15s;
}
.reaction-btn:hover { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.reaction-btn.voted { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.reaction-btn span:first-child { font-size: 16px; }

/* ── MINI GAME ── */
.minigame-wrap { padding: 10px 48px 24px; text-align: center; }
.minigame-btn {
  background: none; border: none;
  font-size: 11px; color: var(--light);
  cursor: pointer; font-family: 'Manrope', sans-serif;
  text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.15s;
}
.minigame-btn:hover { color: var(--mid); }

/* ── MODALS ── */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,0.6);
  z-index: 99990;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
  backdrop-filter: blur(3px);
}
.modal-overlay.show { opacity: 1; pointer-events: all; }
.modal-box {
  background: #fff; border-radius: 20px;
  padding: 32px; max-width: 400px;
  width: calc(100% - 48px); text-align: center;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  transform: scale(0.88);
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-overlay.show .modal-box { transform: scale(1); }
.modal-emoji { font-size: 52px; margin-bottom: 12px; line-height: 1; }
.modal-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.modal-subtitle { font-size: 13px; color: var(--mid); line-height: 1.65; margin-bottom: 24px; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; font-size: 22px;
  color: var(--light); cursor: pointer; line-height: 1; transition: color 0.15s;
}
.modal-close:hover { color: var(--dark); }
.modal-btn {
  display: block; width: 100%;
  padding: 12px; border-radius: 10px; border: none;
  font-size: 13.5px; font-weight: 700;
  cursor: pointer; font-family: 'Manrope', sans-serif;
  margin-bottom: 8px;
  transition: transform 0.1s;
  text-decoration: none; text-align: center;
}
.modal-btn:last-child { margin-bottom: 0; }
.modal-btn:hover { transform: scale(1.02); }
.modal-btn.primary { background: var(--accent); color: #fff; }
.modal-btn.secondary { background: var(--accent-light); color: var(--accent); }
.modal-btn.ghost { background: #f1f5f9; color: var(--mid); }

/* ── TOASTS ── */
.exit-toast {
  position: fixed; bottom: -140px; left: 50%;
  transform: translateX(-50%);
  background: var(--dark); color: #fff;
  border-radius: 16px; padding: 16px 18px 16px 20px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.35);
  display: flex; align-items: center; gap: 14px;
  z-index: 9999; max-width: 500px; width: calc(100% - 32px);
  transition: bottom 0.45s cubic-bezier(0.34, 1.4, 0.64, 1);
  border: 1px solid rgba(255,255,255,0.07);
}
.exit-toast.show { bottom: 24px; }
.exit-toast-emoji { font-size: 30px; flex-shrink: 0; line-height: 1; }
.exit-toast-text { flex: 1; font-size: 13px; line-height: 1.55; color: #cbd5e1; }
.exit-toast-text b { color: #fff; font-size: 13.5px; }
.exit-toast-btn {
  background: var(--accent); color: #fff; border: none;
  border-radius: 9px; padding: 9px 16px;
  font-size: 12.5px; font-weight: 700;
  cursor: pointer; white-space: nowrap;
  font-family: 'Manrope', sans-serif; flex-shrink: 0;
  transition: background 0.15s;
}
.exit-toast-btn:hover { background: #1d4ed8; }
.exit-toast-close {
  background: none; border: none; color: #475569;
  font-size: 20px; cursor: pointer; flex-shrink: 0; line-height: 1; padding: 0;
}

/* copy easter egg toast */
.copy-toast {
  position: fixed; bottom: -60px; right: 20px;
  background: #1e293b; color: #94a3b8;
  font-size: 12px; font-family: 'JetBrains Mono', monospace;
  padding: 8px 14px; border-radius: 8px;
  z-index: 9998; border: 1px solid rgba(255,255,255,0.06);
  transition: bottom 0.3s ease, opacity 0.3s ease;
  opacity: 0; white-space: nowrap;
}
.copy-toast.show { bottom: 72px; opacity: 1; }

/* contact copy toast */
.contact-toast {
  position: fixed; bottom: -60px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent2); color: #fff;
  font-size: 13px; font-weight: 600;
  padding: 10px 22px; border-radius: 10px;
  z-index: 9999; white-space: nowrap;
  transition: bottom 0.3s cubic-bezier(0.34, 1.4, 0.64, 1);
  box-shadow: 0 4px 20px rgba(5,150,105,0.35);
}
.contact-toast.show { bottom: 20px; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  body { background: var(--bg); }
  .page { margin: 0; border-radius: 0; box-shadow: none; }

  .topbar { flex-direction: column; align-items: flex-start; padding: 48px 20px 24px; gap: 16px; }
  .topbar-actions { position: static; }
  .top-name { font-size: 26px; }
  .top-title { font-size: 12px; }
  .topbar-right { flex-direction: column; gap: 10px; width: 100%; }
  .top-contact { flex-direction: row; align-items: center; gap: 8px; }
  .top-contact-label { min-width: 64px; }
  .lang-toggle { top: 12px; right: 14px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 16px 18px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); }
  .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .body { grid-template-columns: 1fr; }
  .main { padding: 24px 20px; border-right: none; border-bottom: 1px solid var(--border); }
  .sidebar { padding: 24px 20px; }

  .job-meta { flex-wrap: wrap; }
  .job-title { font-size: 13.5px; width: 100%; }
  .job-period { margin-bottom: 4px; }

  .top-contact-val { word-break: break-all; font-size: 11px; }
  .about { font-size: 12.5px; }
  .tag { white-space: normal; word-break: break-word; }

  .reactions-block { padding: 20px; }
  .minigame-wrap { padding: 10px 20px 24px; }

  .exit-toast { flex-wrap: wrap; display: none !important; }
  .exit-toast-btn { width: 100%; text-align: center; margin-top: 4px; }
  .copy-toast { right: 10px; left: 10px; text-align: center; white-space: normal; }
  .contact-toast { white-space: normal; text-align: center; width: calc(100% - 32px); }
}

/* ── PDF FOOTER ── */
.pdf-url-footer {
  display: none;
  padding: 12px 48px 16px;
  border-top: 1px solid var(--border);
  font-size: 11px; color: var(--light);
  text-align: center;
}
.pdf-url-footer a { color: var(--accent); text-decoration: none; font-weight: 600; }

/* ── PAGE BREAK RULES (for PDF export) ── */
.job { break-inside: avoid; page-break-inside: avoid; }
.comp-card { break-inside: avoid; page-break-inside: avoid; }
.bullets li { break-inside: avoid; page-break-inside: avoid; }
.stat { break-inside: avoid; page-break-inside: avoid; }
.job-sub-label + ul { break-before: avoid; page-break-before: avoid; }

@media print {
  body { background: #fff; }
  .page { margin: 0; border-radius: 0; box-shadow: none; }
  #progressBar, #customCursor, .lang-toggle, .topbar-actions,
  .exit-toast, .copy-toast, .contact-toast,
  .modal-overlay, .reactions-block, .minigame-wrap { display: none !important; }
  .pdf-url-footer { display: block !important; }
}

/* ═══════════════════════════════════════
   CLOSED PAGE
═══════════════════════════════════════ */
#closedPage {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: var(--dark);
  overflow: hidden;
}
.closed-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(5,150,105,0.10) 0%, transparent 50%);
  pointer-events: none;
}
.closed-wrap {
  position: relative; z-index: 1;
  text-align: center; max-width: 520px; padding: 40px 24px;
}
.closed-badge {
  width: 88px; height: 88px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 40px; color: #fff; font-weight: 800;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(37,99,235,0.4);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  user-select: none;
}
.closed-badge:hover { transform: scale(1.08); box-shadow: 0 0 60px rgba(37,99,235,0.6); }
.closed-badge.shake {
  animation: badgeShake 0.5s ease;
}
@keyframes badgeShake {
  0%,100% { transform: rotate(0deg); }
  20% { transform: rotate(-8deg) scale(1.1); }
  40% { transform: rotate(8deg) scale(1.15); }
  60% { transform: rotate(-5deg) scale(1.1); }
  80% { transform: rotate(5deg); }
}
.closed-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent2); margin-bottom: 12px;
}
.closed-title {
  font-size: 42px; font-weight: 800; color: #fff;
  letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.1;
}
.closed-sub {
  font-size: 16px; color: #94a3b8; line-height: 1.7; margin-bottom: 12px;
}
/* Eyes */
.closed-eyes {
  display: flex; gap: 20px; justify-content: center; margin: 8px 0 16px;
}
.eye {
  width: 38px; height: 38px; background: #1e293b; border: 2px solid #334155;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.pupil {
  width: 14px; height: 14px; background: #2563eb; border-radius: 50%;
  position: absolute; transition: transform 0.08s ease;
  box-shadow: 0 0 6px rgba(37,99,235,0.8);
}
.closed-visitor-text {
  font-size: 12px; color: #475569; margin: -4px 0 16px; font-style: italic; min-height: 18px;
}
.closed-note {
  font-size: 13px; color: #64748b; line-height: 1.7; margin-bottom: 32px;
}
.closed-copyright {
  margin-top: 40px; font-size: 11px; color: #334155; letter-spacing: 0.5px;
}

/* ── COMIC PANELS ── */
.comic-side {
  position: fixed; top: 0; bottom: 0; width: 220px;
  display: flex; flex-direction: column; justify-content: center;
  gap: 0; pointer-events: none;
  z-index: 100000;
}
.comic-left  { left: 0; }
.comic-right { right: 0; }

.comic-panel {
  border: 3px solid #000;
  background: #fff;
  padding: 10px 12px 12px;
  position: relative;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  box-shadow: 4px 4px 0 #000;
}
.comic-left .comic-panel  { border-right-width: 3px; margin-bottom: -3px; }
.comic-right .comic-panel { border-left-width: 3px;  margin-bottom: -3px; }

.comic-caption {
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  font-size: 9px; color: #555; text-transform: uppercase;
  letter-spacing: 0.5px; align-self: flex-start;
  border-bottom: 1px solid #ddd; width: 100%; padding-bottom: 3px; margin-bottom: 2px;
}

.comic-art {
  font-size: 38px; line-height: 1;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,0.15));
}
.comic-art.spidey-small { font-size: 28px; }
.comic-art.spidey-flip  { transform: scaleX(-1); }

.comic-bubble {
  background: #fff; border: 2.5px solid #000;
  border-radius: 12px; padding: 7px 10px;
  font-family: 'Comic Sans MS', 'Chalkboard SE', cursive;
  font-size: 11px; line-height: 1.4; color: #111;
  position: relative; text-align: center;
  box-shadow: 2px 2px 0 #000;
}
.comic-bubble.exclaim {
  background: #fef08a; font-weight: 700;
}
/* tail right */
.comic-bubble.bubble-right::after {
  content: ''; position: absolute;
  bottom: -10px; right: 18px;
  border: 8px solid transparent;
  border-top: 8px solid #000;
  border-bottom: 0;
}
.comic-bubble.bubble-right::before {
  content: ''; position: absolute;
  bottom: -7px; right: 20px;
  border: 6px solid transparent;
  border-top: 6px solid #fff;
  border-bottom: 0; z-index: 1;
}
/* tail left */
.comic-bubble.bubble-left::after {
  content: ''; position: absolute;
  bottom: -10px; left: 18px;
  border: 8px solid transparent;
  border-top: 8px solid #000;
  border-bottom: 0;
}
.comic-bubble.bubble-left::before {
  content: ''; position: absolute;
  bottom: -7px; left: 20px;
  border: 6px solid transparent;
  border-top: 6px solid #fff;
  border-bottom: 0; z-index: 1;
}
.comic-bubble.exclaim::before { border-top-color: #fef08a; }

@media (max-width: 1100px) { .comic-side { display: none; } }

.closed-contacts { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.closed-contact-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,99,235,0.15); border: 1px solid rgba(37,99,235,0.35);
  color: #93c5fd; text-decoration: none;
  padding: 13px 28px; border-radius: 12px;
  font-size: 14px; font-weight: 600; font-family: 'Manrope', sans-serif;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  min-width: 300px; justify-content: center;
}
.closed-contact-btn:hover { background: rgba(37,99,235,0.3); transform: translateY(-2px); border-color: rgba(37,99,235,0.6); }
.closed-contact-btn.secondary {
  background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: #94a3b8;
}
.closed-contact-btn.secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.closed-footer { margin-top: 32px; }
.closed-hint { font-size: 11px; color: #475569; font-style: italic; }
.closed-secret {
  margin-top: 24px; padding: 16px 20px; border-radius: 12px;
  background: rgba(5,150,105,0.1); border: 1px solid rgba(5,150,105,0.25);
  color: #6ee7b7; font-size: 13px; line-height: 1.6;
}

/* ═══════════════════════════════════════
   ADMIN PANEL
═══════════════════════════════════════ */
#adminPanel {
  position: fixed; bottom: 24px; right: 24px; z-index: 999999;
  background: #1e293b; border: 1px solid #334155;
  border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  min-width: 200px;
}
.admin-title { font-size: 12px; font-weight: 700; color: #64748b; margin-bottom: 12px; letter-spacing: 1px; }
.admin-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 8px; }
.admin-label { font-size: 13px; color: #e2e8f0; font-weight: 600; }
.admin-hint { font-size: 10px; color: #475569; }
.admin-toggle { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.admin-toggle input { opacity: 0; width: 0; height: 0; }
.admin-slider {
  position: absolute; inset: 0; background: #334155;
  border-radius: 24px; cursor: pointer; transition: background 0.2s;
}
.admin-slider::before {
  content: ''; position: absolute;
  width: 18px; height: 18px; left: 3px; top: 3px;
  background: #fff; border-radius: 50%;
  transition: transform 0.2s;
}
.admin-toggle input:checked + .admin-slider { background: var(--accent2); }
.admin-toggle input:checked + .admin-slider::before { transform: translateX(20px); }
