@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&family=VT323&display=swap');

html {
  background: #0a0005;
}

:root {
  --pink:       #ffb3c6;
  --pink-soft:  #ffd6e3;
  --pink-dim:   #ffb3c655;
  --pink-glow:  #ffb3c699;
  --pink-deep:  #ff7ca0;
  --white-haze: rgba(255,240,245,0.92);
  --bg:         #0a0005;
  --bg2:        #0d0008;
  --text:       #ecdde3;
  --text-soft:  #c8a8b8;
  --mono:       'Share Tech Mono', monospace;
  --display:    'VT323', monospace;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── fuzzy grain overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: screen;
}

/* ── CRT scanlines ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent, transparent 2px,
    rgba(0, 0, 0, 0.18) 2px, rgba(0, 0, 0, 0.18) 4px
  );
  pointer-events: none;
  z-index: 9999;
}

/* ── star-burst halos (CSS-only, scattered) ── */
.star-halo {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  animation: haloPulse 8s ease-in-out infinite alternate;
}
.star-halo.h1 {
  width: 340px; height: 340px;
  top: -80px; right: -60px;
  background: radial-gradient(circle, rgba(255,180,210,0.18) 0%, transparent 70%);
  animation-delay: 0s;
}
.star-halo.h2 {
  width: 220px; height: 220px;
  bottom: 20%; left: -50px;
  background: radial-gradient(circle, rgba(255,200,225,0.12) 0%, transparent 65%);
  animation-delay: 3s;
}
.star-halo.h3 {
  width: 160px; height: 160px;
  top: 40%; left: 55%;
  background: radial-gradient(circle, rgba(255,160,195,0.1) 0%, transparent 60%);
  animation-delay: 5.5s;
}
@keyframes haloPulse {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.12); }
}

/* ── matrix canvas ── */
canvas#matrix-rain {
  position: fixed;
  top: 0; left: 0;
  z-index: 0;
  opacity: 0.055;
  will-change: transform;
}

/* ── main wrapper ── */
.wrap {
  position: relative;
  z-index: 1;
  max-width: 1020px;
  margin: 0 auto;
  /* 28px status bar + ~48px nav = 80px; add a little breathing room */
  padding: 92px 20px 80px;
}

/* ── windowed box ── */
.window-box {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,179,198,0.28);
  border-top: 2px solid rgba(255,213,227,0.5);
  /* fully opaque bg — no bleed-through from matrix rain */
  background: #0e0009;
  box-shadow:
    0 0 0 1px rgba(255,100,150,0.08),
    0 12px 60px rgba(0,0,0,0.9),
    inset 0 1px 0 rgba(255,213,227,0.06);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 18px;
  /* isolate so children can't bleed outside */
  isolation: isolate;
}
.window-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  background: #170010;
  border-bottom: 1px solid rgba(255,179,198,0.18);
  flex-shrink: 0;
  user-select: none;
}
.window-titlebar-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(255,213,227,0.55);
}
.window-titlebar-dots { display: flex; gap: 5px; }
.window-titlebar-dots span {
  display: block;
  width: 8px; height: 8px;
  border-radius: 50%;
  opacity: 0.7;
}
.window-titlebar-dots span:nth-child(1) { background: #ff7ca0; }
.window-titlebar-dots span:nth-child(2) { background: #ffb3c6; }
.window-titlebar-dots span:nth-child(3) { background: #ffd6e3; }
.window-body {
  display: flex;
  flex: 1;
  min-height: 0;
}
.window-sidebar {
  width: 195px;
  flex-shrink: 0;
  /* solid sidebar bg — same dark base, slight pink tint */
  background: #100009;
  border-right: 1px solid rgba(255,179,198,0.13);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,140,180,0.25) transparent;
}
.window-sidebar::-webkit-scrollbar { width: 3px; }
.window-sidebar::-webkit-scrollbar-thumb { background: rgba(255,140,180,0.25); }
.sidebar-section-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,213,227,0.35);
  padding: 10px 12px 5px;
  text-transform: uppercase;
  background: rgba(255,100,150,0.06);
  border-bottom: 1px solid rgba(255,179,198,0.08);
  flex-shrink: 0;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-soft);
  text-decoration: none;
  letter-spacing: 0.08em;
  border-left: 2px solid transparent;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}
.sidebar-item::before {
  content: '\25C7';
  font-size: 7px;
  color: rgba(255,179,198,0.3);
  flex-shrink: 0;
}
.sidebar-item:hover {
  background: rgba(255,179,198,0.06);
  border-left-color: var(--pink);
  color: var(--pink-soft);
  text-decoration: none;
}
.sidebar-item.active {
  background: rgba(255,140,180,0.12);
  border-left-color: var(--pink-deep);
  color: var(--pink-soft);
}
.sidebar-item.active::before { color: var(--pink); }
.window-main {
  flex: 1;
  min-width: 0;
  overflow-y: auto;
  padding: 22px 26px 36px;
  max-height: 78vh;
  /* solid bg so nothing behind bleeds through while scrolling */
  background: #0e0009;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,140,180,0.2) transparent;
}
.window-main::-webkit-scrollbar { width: 4px; }
.window-main::-webkit-scrollbar-thumb { background: rgba(255,140,180,0.22); border-radius: 2px; }
.window-tab-header {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  color: rgba(255,213,227,0.4);
  border-bottom: 1px solid rgba(255,179,198,0.14);
  padding-bottom: 7px;
  margin-bottom: 18px;
}
@media (max-width: 720px) {
  .window-body    { flex-direction: column; }
  .window-sidebar { width: 100%; border-right: none; border-bottom: 1px solid rgba(255,179,198,0.13); }
  .window-main    { max-height: none; }
}

/* ── side panels ── */
.side-panel {
  position: fixed;
  top: 0;
  bottom: 0;
  width: calc((100vw - 860px) / 2 - 2px);
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.side-panel.left  { left: 0; align-items: flex-end; }
.side-panel.right { right: 0; align-items: flex-start; }

/* hide panels when viewport is too narrow */
@media (max-width: 1100px) {
  .side-panel { display: none; }
}

/* thin border stripe along the inner edge */
.side-panel.left  { border-right: 1px solid rgba(255,179,198,0.12); }
.side-panel.right { border-left:  1px solid rgba(255,179,198,0.12); }

/* ── side panel inner ── */
.side-panel-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0 0;
  position: relative;
}

/* vertical label strip */
.side-vert-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(255,179,198,0.22);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
}
.side-panel.left  .side-vert-label { right: 10px; text-orientation: mixed; }
.side-panel.right .side-vert-label { left: 10px;  transform: translateY(-50%) rotate(180deg); }

/* scan bar — the animated line that slides down */
.side-scan {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,179,198,0.55), transparent);
  animation: scanSlide 7s linear infinite;
  pointer-events: none;
}
.side-panel.right .side-scan { animation-delay: -3.5s; }
@keyframes scanSlide {
  from { top: 0%; }
  to   { top: 100%; }
}

/* tick marks along the inner edge */
.side-ticks {
  position: absolute;
  top: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 60px 0;
  pointer-events: none;
}
.side-panel.left  .side-ticks { right: 0; align-items: flex-end; }
.side-panel.right .side-ticks { left: 0;  align-items: flex-start; }
.side-tick {
  width: 8px;
  height: 1px;
  background: rgba(255,179,198,0.2);
}
.side-tick.long {
  width: 16px;
  background: rgba(255,179,198,0.35);
}
.side-tick.bright {
  width: 12px;
  background: rgba(255,213,227,0.5);
  box-shadow: 0 0 4px rgba(255,179,198,0.4);
}

/* HEX address counter blocks */
.side-hex-block {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 3px;
  pointer-events: none;
}
.side-panel.left  .side-hex-block { right: 22px; }
.side-panel.right .side-hex-block { left: 22px; }
.side-hex-block.top    { top: 80px; }
.side-hex-block.middle { top: 50%; transform: translateY(-50%); }
.side-hex-block.bottom { bottom: 80px; }
.side-hex-line {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.12em;
  color: rgba(255,179,198,0.18);
  white-space: nowrap;
  line-height: 1.4;
}
.side-hex-line.bright { color: rgba(255,213,227,0.4); }
.side-hex-line.dim    { color: rgba(255,179,198,0.1); }

/* corner bracket decorations */
.side-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
}
.side-panel.left  .side-corner { right: 0; }
.side-panel.right .side-corner { left: 0; }
.side-corner.top-c    { top: 48px; }
.side-corner.bot-c    { bottom: 24px; }

.side-corner svg {
  width: 18px; height: 18px;
  overflow: visible;
}

/* vertical dotted line */
.side-dot-line {
  position: absolute;
  top: 120px;
  bottom: 120px;
  width: 1px;
  background: repeating-linear-gradient(
    180deg,
    rgba(255,179,198,0.18) 0px,
    rgba(255,179,198,0.18) 3px,
    transparent 3px,
    transparent 8px
  );
  pointer-events: none;
}
.side-panel.left  .side-dot-line { right: 28px; }
.side-panel.right .side-dot-line { left: 28px; }

/* pulsing diamond node */
.side-node {
  position: absolute;
  width: 6px; height: 6px;
  background: var(--pink);
  transform: rotate(45deg);
  opacity: 0.6;
  animation: nodePulse 3s ease-in-out infinite alternate;
  pointer-events: none;
}
.side-panel.left  .side-node { right: 26px; }
.side-panel.right .side-node { left: 26px; }
.side-node.n1 { top: 28%; animation-delay: 0s; }
.side-node.n2 { top: 55%; animation-delay: 1.4s; }
.side-node.n3 { top: 72%; animation-delay: 0.7s; }
@keyframes nodePulse {
  from { opacity: 0.25; box-shadow: 0 0 0 0 transparent; }
  to   { opacity: 0.75; box-shadow: 0 0 6px 2px rgba(255,140,180,0.35); }
}

/* small data readout widget */
.side-readout {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 2px;
  pointer-events: none;
}
.side-panel.left  .side-readout { right: 36px; text-align: right; }
.side-panel.right .side-readout { left: 36px; text-align: left; }
.side-readout.r1 { top: 38%; }
.side-readout.r2 { top: 62%; }
.side-readout-label {
  font-family: var(--mono);
  font-size: 7px;
  color: rgba(255,179,198,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.side-readout-val {
  font-family: var(--display);
  font-size: 14px;
  color: rgba(255,213,227,0.35);
  letter-spacing: 0.1em;
  animation: valFlicker 5s steps(1) infinite;
}
@keyframes valFlicker {
  0%,100% { opacity: 1; }
  48%     { opacity: 1; }
  50%     { opacity: 0.4; }
  52%     { opacity: 1; }
  78%     { opacity: 1; }
  80%     { opacity: 0.3; }
  82%     { opacity: 1; }
}

/* mini 4-star decoration */
.side-star {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  animation: sideStarFade 6s ease-in-out infinite;
}
.side-panel.left  .side-star { right: 14px; }
.side-panel.right .side-star { left: 14px; }
.side-star.s1 { top: 18%;  animation-delay: 0s; }
.side-star.s2 { top: 45%;  animation-delay: 2.2s; }
.side-star.s3 { top: 80%;  animation-delay: 4.1s; }
@keyframes sideStarFade {
  0%, 100%    { opacity: 0; transform: scale(0.6) rotate(0deg); }
  30%, 70%    { opacity: 0.5; transform: scale(1) rotate(20deg); }
}

/* nav top-offset compensation — panels start below nav */
.side-panel { padding-top: 0; }

/* ── nav ── */
#hud-nav {
  display: none;
}
.hud-nav-left {
  display: none;
}
.hud-link {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--pink);
  text-decoration: none;
  letter-spacing: 0.15em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, text-shadow 0.2s;
}
.hud-link:hover {
  border-color: var(--pink);
  text-shadow: 0 0 10px var(--pink), 0 0 22px rgba(255,179,198,0.4);
}
hr.divider {
  border: none;
  border-top: 1px solid var(--pink-dim);
  opacity: 0.7;
  margin: 0;
}

/* ── page header ── */
.page_header {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 28px 0 0;
  min-width: 0;
}
.page_header img {
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(255,179,198,0.35));
}
.page_header h1 {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--pink-soft);
  letter-spacing: 0.15em;
  /* layered glow: tight pink core + wide soft halo */
  text-shadow:
    0 0 6px rgba(255,213,227,0.9),
    0 0 18px rgba(255,179,198,0.65),
    0 0 40px rgba(255,140,180,0.35);
  line-height: 1.1;
  margin: 0 0 10px;
  white-space: nowrap;
}
.page_header h1 span {
  display: block;
  font-size: 1rem;
  font-family: var(--mono);
  letter-spacing: 0.2em;
  color: var(--text-soft);
  opacity: 0.75;
  margin-top: 4px;
  text-shadow: none;
  white-space: nowrap;
}

/* ── status bar ── */
.status-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  padding: 4px 0;
  background: linear-gradient(90deg, var(--pink-deep), var(--pink-soft), var(--pink-deep));
  background-size: 200% 100%;
  animation: statusShimmer 6s linear infinite;
  color: #fff;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 1.5px 1.5px 0 #3a0e1e;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes statusShimmer {
  0%   { background-position: 0% 0%; }
  100% { background-position: 200% 0%; }
}

/* ── boot overlay ── */
#boot-overlay {
  position: fixed; inset: 0;
  background: #0a0005;
  color: var(--pink-soft);
  font-family: var(--mono);
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}
#boot-overlay.hidden { display: none; }

/* ── wired call ── */
.wired-call {
  text-align: center;
  margin: 10px 0;
  font-size: 12px;
  letter-spacing: 0.25em;
}
.wired-call a {
  color: var(--pink);
  text-decoration: none;
  font-weight: bold;
  opacity: 0.85;
  text-shadow: 0 0 5px rgba(255,179,198,0.55), 0 0 12px rgba(255,140,180,0.3);
}
.wired-call a:hover { opacity: 1; text-shadow: 0 0 10px var(--pink), 0 0 22px var(--pink-glow); }

/* ── section headers ── */
.section_header {
  padding: 4px 8px;
  background: linear-gradient(90deg, var(--pink-deep) 0%, var(--pink-soft) 100%);
  color: #fff;
  font-weight: bold;
  font-size: 112%;
  letter-spacing: 10px;
  text-align: center;
  text-shadow: 1.5px 1.5px 0 #3a0e1e;
  margin: 24px 0 12px;
  position: relative;
  overflow: hidden;
}
/* shimmer line across the section header */
.section_header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 20%, rgba(255,255,255,0.18) 50%, transparent 80%);
  animation: headerSweep 4s linear infinite;
}
@keyframes headerSweep {
  from { transform: translateX(-100%); }
  to   { transform: translateX(100%); }
}

/* ── generic links ── */
a {
  text-decoration: none;
  font-weight: bold;
  color: var(--text);
}
a:hover { text-decoration: underline; }

/* ── content text ── */
.content-block {
  font-size: 13px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 8px;
}
.content-block p { margin-bottom: 8px; }
.content-block b,
.content-block strong {
  color: var(--pink-soft);
  text-shadow: 0 0 8px rgba(255,213,227,0.4);
}
.content-block a { color: var(--pink); }

/* ── pre / code ── */
pre {
  padding: 8px 10px;
  background: rgba(255,179,198,0.04);
  border: 1px dotted rgba(255,179,198,0.3);
  border-left: 2px solid var(--pink);
  font-family: var(--mono);
  font-size: 12px;
  overflow-x: auto;
  color: var(--text);
  /* faint inner glow on left edge */
  box-shadow: -2px 0 12px rgba(255,140,180,0.12);
}

/* ── terminal art strip ── */
.terminal-art {
  border: 1px solid var(--pink-dim);
  background: var(--bg);
  margin: 12px 0;
  position: relative;
  overflow: hidden;
}
/* ghostly horizontal flicker lines on terminal art */
.terminal-art::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0px,
    transparent 18px,
    rgba(255,179,198,0.03) 18px,
    rgba(255,179,198,0.03) 19px
  );
  pointer-events: none;
}
#side-matrix { display: block; background-color: transparent; }

/* ── audio bar ── */
.audio-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 8px 0;
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 0.2em;
}
.audio-toggle-inline {
  background: transparent;
  border: 1px dotted var(--pink);
  color: var(--pink);
  font-family: var(--mono);
  font-size: 11px;
  padding: 2px 8px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.audio-toggle-inline:hover {
  box-shadow: 0 0 10px rgba(255,140,180,0.3);
}

#audio-viz {
  display: block;
  background: transparent;
  border-top: 2px solid rgba(255,179,198,0.5);
  border-bottom: 2px solid rgba(255,179,198,0.5);
  margin-left: auto;
  margin-right: auto;
}

/* ── project / report cards ── */
.project-item,
.report-item {
  padding: 10px 14px;
  margin-bottom: 10px;
  border: 1px solid rgba(255,179,198,0.18);
  border-left: 2px solid var(--pink);
  font-size: 13px;
  line-height: 1.65;
  background: rgba(255,179,198,0.025);
  transition: background 0.2s, box-shadow 0.2s;
}
.project-item:hover,
.report-item:hover {
  background: rgba(255,179,198,0.05);
  box-shadow: 0 0 16px rgba(255,140,180,0.1);
}
.project-item a,
.report-item a {
  color: var(--pink);
}
.project-item a:hover,
.report-item a:hover {
  text-decoration: underline;
}
.project-item small,
.report-item small {
  opacity: 0.55;
  color: var(--text-soft);
}

/* ── CTF tags ── */
span[style*="border:1px solid #ff98ab"] {
  border-color: var(--pink) !important;
  color: var(--pink) !important;
}

/* ── footer ── */
.footer-social-bar {
  display: flex;
  width: 100%;
  margin-top: 24px;
}
.footer-btn {
  flex: 1;
  padding: 6px 0;
  text-align: center;
  font-weight: bold;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #fff;
  text-decoration: none;
  text-shadow: 1.5px 1.5px 0 #3a0e1e;
  transition: filter 0.2s;
}
.footer-btn.github  { background: #e87aa0; }
.footer-btn.crackme { background: #d45e85; }
.footer-btn:hover {
  background: var(--pink-soft);
  filter: brightness(1.1) drop-shadow(0 0 6px rgba(255,179,198,0.4));
}

/* ── glitch text util ── */
.glitch {
  position: relative;
}
.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  overflow: hidden;
  font-family: inherit;
  color: inherit;
}
.glitch::before {
  left: 2px;
  text-shadow: -1px 0 rgba(255,100,150,0.7);
  animation: glitchA 3.5s infinite linear;
  clip-path: polygon(0 20%, 100% 20%, 100% 35%, 0 35%);
}
.glitch::after {
  left: -2px;
  text-shadow: 1px 0 rgba(200,100,180,0.6);
  animation: glitchB 4.2s infinite linear;
  clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%);
}
@keyframes glitchA {
  0%, 90%, 100% { transform: translate(0); opacity: 0; }
  91% { transform: translate(-2px, 1px); opacity: 1; }
  93% { transform: translate(2px, -1px); opacity: 0.8; }
  95% { transform: translate(0); opacity: 0; }
}
@keyframes glitchB {
  0%, 87%, 100% { transform: translate(0); opacity: 0; }
  88% { transform: translate(2px, 2px); opacity: 1; }
  90% { transform: translate(-1px, -1px); opacity: 0.7; }
  92% { transform: translate(0); opacity: 0; }
}

/* ── fade-in animation ── */
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-10px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── star-burst SVG util (injected by JS) ── */
.star-burst-svg {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: starAppear 1.2s ease-out forwards;
}
@keyframes starAppear {
  0%   { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  40%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(1.6) rotate(8deg); }
}

/* ── responsive ── */
@media (max-width: 600px) {
  .page_header { flex-direction: column; align-items: flex-start; }
  .footer-social-bar { flex-wrap: wrap; }
  .footer-btn { flex: 1 1 48%; }
}