@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Playfair+Display+SC:wght@400;700&display=swap');

:root {
  --black: #000000;
  --blood: #8b1010;
  --pink-glow: #ff9ab5;
  --pink-soft: #f7c5d5;
  --white: #e8e0d8;
  --cream: #d4c8be;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  /* Drop background.gif or background.png in assets/images/ — JS auto-detects, falls back to black */
  background: #000;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--white);
  font-family: 'Playfair Display', 'Times New Roman', Georgia, serif;
  min-height: 100vh;
  overflow-x: hidden;
  cursor: crosshair;
}

/* ── DARK OVERLAY over background image ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.72);
  z-index: 0;
  pointer-events: none;
}

/* ── ABOUT PAGE background override — swapped via JS ── */
body.about-bg {
  background-image: url('assets/images/bgabt.png') !important;
}
body.about-bg::before {
  background: rgba(0,0,0,0.82);
}

/* ── FLOATING BACKGROUND ICONS ── */
#bg-icons {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
  transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}

#bg-icons.icons-hidden {
  opacity: 0;
  pointer-events: none;
}

.bg-icon {
  pointer-events: auto;
}

.bg-icon {
  position: absolute;
  width: 52px;
  height: 52px;
  opacity: 0;
  animation: floatIcon var(--dur) ease-in-out infinite var(--delay);
  animation-fill-mode: both;
  filter: drop-shadow(0 0 6px rgba(255,154,181,0.4)) drop-shadow(0 0 16px rgba(255,154,181,0.2));
  transition: filter 0.5s ease;
  cursor: default;
}

.bg-icon:hover {
  filter: drop-shadow(0 0 12px rgba(255,154,181,1)) drop-shadow(0 0 28px rgba(255,154,181,0.6)) brightness(1.5);
  opacity: 1 !important;
  animation-play-state: paused;
}

.bg-icon img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }

@keyframes floatIcon {
  0%   { opacity: 0;    transform: translateY(0px) scale(1); }
  15%  { opacity: 0.18; }
  50%  { opacity: 0.22; transform: translateY(-14px) scale(1.04); }
  85%  { opacity: 0.18; }
  100% { opacity: 0;    transform: translateY(0px) scale(1); }
}

/* ══════════════════════════════════
   SPLASH SCREEN
══════════════════════════════════ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#splash.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.splash-img-wrap {
  position: relative;
  display: inline-block;
  cursor: pointer;
  animation: splashFloat 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.splash-img-wrap:hover {
  animation-play-state: paused;
  transform: scale(1.05) !important;
}

.splash-img-wrap img {
  display: block;
  max-width: min(460px, 82vw);
  max-height: 78vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 0 20px rgba(255,154,181,0.15)) drop-shadow(0 0 55px rgba(255,154,181,0.07));
  transition: filter 0.35s ease;
}

.splash-img-wrap:hover img {
  filter: drop-shadow(0 0 30px rgba(255,154,181,0.3)) drop-shadow(0 0 80px rgba(255,154,181,0.14));
}

@keyframes splashFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.splash-expand {
  animation: splashOut 0.7s cubic-bezier(0.55, 0, 1, 0.45) forwards !important;
}

@keyframes splashOut {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.7); }
}

.splash-click-hint {
  position: absolute;
  bottom: 12%;
  left: -2px;
  font-family: 'Playfair Display SC', serif;
  font-size: 7.5px;
  letter-spacing: 0.28em;
  color: rgba(255, 154, 181, 0.55);
  text-transform: uppercase;
  pointer-events: none;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(255, 154, 181, 0.4);
  animation: hintPulse 2.8s ease-in-out infinite;
}

@keyframes hintPulse {
  0%, 100% { opacity: 0.45; }
  50%       { opacity: 0.9; }
}

/* ══════════════════════════════════
   MAIN SITE
══════════════════════════════════ */
#site { position: relative; z-index: 1; opacity: 0; transform: translateY(10px); transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s; }
#site.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════
   HOME PAGE
══════════════════════════════════ */
.home-center {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px 120px;
  position: relative;
  z-index: 1;
}

/* ── PFP ── */
.home-pfp-wrap {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(255,154,181,0.35);
  box-shadow: 0 0 18px rgba(255,154,181,0.2), 0 0 40px rgba(255,154,181,0.1);
  margin-bottom: 20px;
  transition: box-shadow 0.4s ease;
  background: #0d0505;
  flex-shrink: 0;
  animation: pfpFloat 4s ease-in-out infinite;
}

@keyframes pfpFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-6px); }
}

.home-pfp-wrap:hover {
  box-shadow: 0 0 32px rgba(255,154,181,0.5), 0 0 70px rgba(255,154,181,0.22);
  animation-play-state: paused;
}

.home-pfp-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── TITLE with per-letter float ── */
.site-title {
  font-family: 'Playfair Display SC', 'Times New Roman', serif;
  font-size: clamp(1.6rem, 5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--pink-glow);
  text-shadow: 0 0 8px rgba(255,154,181,0.8), 0 0 24px rgba(255,154,181,0.45), 0 0 60px rgba(255,154,181,0.2);
  animation: titlePulse 4s ease-in-out infinite;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
}

.title-letter {
  display: inline-block;
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
  cursor: default;
}

.title-letter.space { width: 0.4em; }

.title-letter:hover {
  transform: translateY(-8px) scale(1.15);
  color: #fff;
  text-shadow: 0 0 16px rgba(255,154,181,1), 0 0 32px rgba(255,154,181,0.7);
}

@keyframes titlePulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,154,181,0.5)); }
  50%       { filter: drop-shadow(0 0 18px rgba(255,154,181,0.9)); }
}

.site-sub { font-size: 12px; color: rgba(255,255,255,0.72); letter-spacing: 0.25em; font-style: italic; margin-bottom: 52px; }

/* ── NAV BUTTONS ── */
.home-nav { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

.home-nav-btn {
  font-family: 'Playfair Display SC', serif;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 10px 22px 10px 14px;
  cursor: pointer;
  transition: all 0.3s ease, transform 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.home-nav-btn img.nav-gif {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: auto;
  border-radius: 3px;
}

.home-nav-btn:hover {
  color: var(--pink-soft);
  border-color: rgba(255,154,181,0.4);
  background: rgba(255,154,181,0.06);
  text-shadow: 0 0 12px rgba(255,154,181,0.4);
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(255,154,181,0.12);
}

/* ══════════════════════════════════
   INNER NAV (non-home pages)
══════════════════════════════════ */
.inner-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 36px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.92), transparent);
  align-items: center;
  justify-content: space-between;
}

.inner-nav.show { display: flex; }

.inner-nav-back {
  font-family: 'Playfair Display SC', serif;
  font-size: 8px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  text-transform: uppercase;
}

.inner-nav-back:hover { color: var(--pink-soft); }

.inner-nav-links { display: flex; gap: 24px; list-style: none; }

.inner-nav-links a {
  font-family: 'Playfair Display SC', serif;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.28);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s;
}

.inner-nav-links a:hover,
.inner-nav-links a.active { color: var(--pink-soft); }

.inner-nav-links a {
  transition: color 0.2s, transform 0.2s;
}
.inner-nav-links a:hover { transform: translateY(-2px); }

/* ══════════════════════════════════
   MUSIC PLAYER — floating pill
══════════════════════════════════ */
#player {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: min(760px, 94vw);
  background: rgba(4, 0, 2, 0.42);
  border: 0.5px solid rgba(255,154,181,0.22);
  border-radius: 18px;
  backdrop-filter: blur(32px) saturate(1.4);
  -webkit-backdrop-filter: blur(32px) saturate(1.4);
  padding: 10px 22px 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1), box-shadow 0.35s ease, background 0.35s ease;
  box-shadow: 0 4px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,154,181,0.06);
}

#player:hover {
  transform: translateX(-50%) translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.45), 0 0 28px rgba(255,154,181,0.1), inset 0 1px 0 rgba(255,154,181,0.1);
  background: rgba(4, 0, 2, 0.52);
}

#player.minimized { transform: translateX(-50%) translateY(calc(100% + 28px)); }
#player.minimized:hover { transform: translateX(-50%) translateY(calc(100% + 20px)); }

.player-song-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #100508;
  border: 0.5px solid rgba(255,154,181,0.15);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(255,154,181,0.25);
}

.player-song-icon img { width: 100%; height: 100%; object-fit: cover; }

.player-meta { display: flex; flex-direction: column; gap: 1px; width: 130px; flex-shrink: 0; }

.player-song-title {
  font-family: 'Playfair Display', serif;
  font-size: 11.5px;
  font-style: italic;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-song-artist {
  font-size: 9.5px;
  color: rgba(255,255,255,0.28);
  font-family: 'Playfair Display SC', serif;
  letter-spacing: 0.06em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-progress-wrap { flex: 1; display: flex; flex-direction: column; gap: 5px; min-width: 0; }

.player-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  position: relative;
  border-radius: 4px;
}

.player-bar-fill {
  height: 100%;
  background: linear-gradient(to right, rgba(139,16,16,0.7), var(--pink-glow));
  width: 0%;
  pointer-events: none;
  transition: width 0.25s linear;
  border-radius: 4px;
}

.player-times { display: flex; justify-content: space-between; font-size: 8.5px; color: rgba(255,255,255,0.2); font-family: 'Playfair Display SC', serif; }

.player-btns { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

.p-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  font-size: 13px;
  padding: 6px 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.15s;
}

.p-btn:hover { color: var(--pink-soft); transform: scale(1.15); }
.p-btn.play { color: var(--pink-glow); font-size: 16px; }

.player-peek {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 7px;
  letter-spacing: 0.2em;
  color: rgba(255,154,181,0.3);
  font-family: 'Playfair Display SC', serif;
  cursor: pointer;
  background: rgba(5,1,2,0.62);
  border: 0.5px solid rgba(255,154,181,0.18);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 5px 16px;
  text-transform: uppercase;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.player-peek:hover { color: var(--pink-soft); }

/* ══════════════════════════════════
   PAGE SECTIONS
══════════════════════════════════ */
.page-content { display: none; }
.page-content.active { display: block; animation: pgIn 0.45s ease; }

@keyframes pgIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.page-wrap { max-width: 820px; margin: 0 auto; padding: 90px 36px 140px; position: relative; z-index: 1; }

.eyebrow {
  font-family: 'Playfair Display SC', serif;
  font-size: 7.5px;
  letter-spacing: 0.45em;
  color: rgba(255,154,181,0.45);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.eyebrow::after { content: ''; flex: 1; height: 0.5px; background: linear-gradient(to right, rgba(255,154,181,0.18), transparent); }

.page-title { font-family: 'Playfair Display SC', serif; font-size: clamp(1.8rem, 4.5vw, 2.6rem); font-weight: 700; color: var(--white); margin-bottom: 42px; line-height: 1.15; }

/* ── ABOUT — carrd-style 2-column layout ── */

/* About page transition overlay */
#about-bg-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 5;
  pointer-events: none;
  transition: background 1.4s cubic-bezier(0.4,0,0.2,1);
}
#about-bg-overlay.darkening { background: rgba(0,0,0,0.88); }

.about-page-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 100px;
  position: relative;
  z-index: 6;
}

/* Full-width banner — taller */
.about-banner {
  width: 100%;
  height: 220px;
  overflow: hidden;
  margin-bottom: 22px;
  background: #0a0303;
  border-radius: 10px;
}

.about-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.92;
}

/* 2-column grid */
.about-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 28px;
}

@media (max-width: 600px) {
  .about-2col { grid-template-columns: 1fr; }
}

.about-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Image inside a column — rounded corners, better shadows */
.about-col-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #0a0303;
  border-radius: 10px;
  border: 0.5px solid rgba(255,154,181,0.1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.about-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
  display: block;
  transition: opacity 0.4s ease, transform 0.55s ease;
}

.about-col-img:hover img { opacity: 1; transform: scale(1.05); }

/* Name/title header — right column top */
.about-col-header {
  text-align: center;
  padding: 14px 8px 10px;
  border-top: 1px solid rgba(255,154,181,0.25);
  border-bottom: 0.5px solid rgba(255,154,181,0.1);
}

.about-col-header-name {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 4px;
}

.about-col-header-sub {
  font-family: 'Playfair Display SC', serif;
  font-size: 8px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.5);
}

/* Text block */
.about-col-text {
  padding: 4px 2px;
}

.about-col-label {
  font-family: 'Playfair Display SC', serif;
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(255,154,181,0.6);
  margin-bottom: 9px;
  text-transform: uppercase;
}

/* Times New Roman, bigger, not italic, hover glows white */
.about-col-body {
  font-family: 'Times New Roman', Times, serif;
  font-size: 14.5px;
  font-style: normal;
  color: rgba(255,255,255,0.72);
  line-height: 1.9;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  cursor: default;
}

.about-col-body:hover {
  color: rgba(255,255,255,1);
  text-shadow: 0 0 12px rgba(255,255,255,0.45), 0 0 28px rgba(255,255,255,0.2);
}

/* Decorative icons row */
.about-col-deco {
  font-size: 10px;
  color: rgba(255,154,181,0.22);
  text-align: center;
  letter-spacing: 0.3em;
  padding: 8px 0;
}

/* Kins — full width, Discord-style tags */
.about-kins {
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 24px 2px 18px;
}

.about-kins-label {
  font-family: 'Playfair Display SC', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,154,181,0.55);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.about-kins-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.about-kin-tag {
  font-family: 'Times New Roman', Times, serif;
  font-size: 13.5px;
  font-style: normal;
  color: rgba(255,255,255,0.75);
  background: rgba(255,154,181,0.08);
  border: 0.5px solid rgba(255,154,181,0.2);
  border-radius: 5px;
  padding: 5px 12px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.about-kin-tag:hover {
  background: rgba(255,154,181,0.16);
  border-color: rgba(255,154,181,0.5);
  color: #fff;
  box-shadow: 0 0 10px rgba(255,154,181,0.2);
}

/* Back button row — bottom center */
.about-back-row {
  text-align: center;
  margin-top: 36px;
}

.about-back-btn {
  font-family: 'Playfair Display SC', serif;
  font-size: 8.5px;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(255,255,255,0.14);
  padding: 13px 32px;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.about-back-btn:hover {
  color: var(--pink-soft);
  border-color: rgba(255,154,181,0.4);
  background: rgba(255,154,181,0.05);
}

/* BYF/DNI rules */
.rule-section { margin-bottom: 36px; }
.rule-heading { font-family: 'Playfair Display SC', serif; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 14px; font-weight: 400; }
.rule-list { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.rule-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.48);
  font-style: italic;
  padding: 9px 15px;
  background: rgba(255,255,255,0.016);
  border-left: 1.5px solid rgba(255,154,181,0.18);
  line-height: 1.7;
  transition: background 0.2s, color 0.2s;
}
.rule-list.dni li { border-left-color: rgba(200,20,20,0.3); }
.rule-list li:hover { background: rgba(255,154,181,0.035); color: rgba(255,255,255,0.72); }
.soft-note { font-size: 11px; color: rgba(255,255,255,0.2); font-style: italic; margin-top: 12px; padding-left: 4px; }

.divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 40px 0; opacity: 0.28; }
.divider::before { content: ''; flex: 1; height: 0.5px; background: linear-gradient(to right, transparent, rgba(255,154,181,0.5)); }
.divider::after  { content: ''; flex: 1; height: 0.5px; background: linear-gradient(to left, transparent, rgba(255,154,181,0.5)); }
.divider span { font-size: 13px; color: rgba(255,154,181,0.65); }

/* ── SOCIALS ── */
.socials-list { display: flex; flex-direction: column; gap: 1px; }

.social-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.016);
  border: 0.5px solid rgba(255,255,255,0.044);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.social-row::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 0.5px; background: rgba(255,154,181,0.35); transition: width 0.3s; }
.social-row:hover { background: rgba(255,154,181,0.035); border-color: rgba(255,154,181,0.12); transform: translateX(3px); }
.social-row:hover::after { width: 100%; }
.social-row.no-link { cursor: default; }
.social-row.no-link:hover { transform: none; }

.social-icon-wrap { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; opacity: 0.6; }
.social-icon-wrap svg, .social-icon-wrap img { width: 16px; height: 16px; }

.social-label-group { flex: 1; min-width: 0; }
.social-platform { font-family: 'Playfair Display SC', serif; font-size: 9.5px; letter-spacing: 0.15em; color: rgba(255,255,255,0.52); display: block; margin-bottom: 1px; }
.social-value { font-size: 11.5px; color: rgba(255,255,255,0.28); font-style: italic; display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.social-arrow { font-size: 10px; color: rgba(255,154,181,0.28); flex-shrink: 0; transition: color 0.2s; }
.social-row:hover .social-arrow { color: rgba(255,154,181,0.65); }

.copy-btn {
  background: none;
  border: 0.5px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.28);
  font-family: 'Playfair Display SC', serif;
  font-size: 7.5px;
  letter-spacing: 0.12em;
  padding: 4px 9px;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
  text-transform: uppercase;
}

.copy-btn:hover { border-color: rgba(255,154,181,0.28); color: var(--pink-soft); }
.copy-btn.copied { border-color: rgba(255,154,181,0.5); color: var(--pink-glow); }

.socials-section-label { font-family: 'Playfair Display SC', serif; font-size: 7.5px; letter-spacing: 0.35em; color: rgba(255,154,181,0.3); padding: 18px 0 8px; display: block; }

/* ── GIFT PAGE ── */
.gift-intro { font-size: 14.5px; font-style: italic; color: rgba(255,255,255,0.35); line-height: 2; margin-bottom: 48px; }

.gift-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1px; background: rgba(255,255,255,0.04); border: 0.5px solid rgba(255,255,255,0.045); }

.gift-item {
  background: #000;
  padding: 28px 26px;
  text-decoration: none;
  color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 9px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}

.gift-item:hover { background: rgba(255,154,181,0.038); }

.gift-item::before { content: ''; position: absolute; top: 0; left: 0; width: 1.5px; height: 0; background: rgba(255,154,181,0.38); transition: height 0.35s; }
.gift-item:hover::before { height: 100%; }

.gift-platform { font-family: 'Playfair Display SC', serif; font-size: 10.5px; letter-spacing: 0.18em; color: rgba(255,255,255,0.52); }
.gift-desc { font-size: 12px; font-style: italic; color: rgba(255,255,255,0.26); line-height: 1.75; }
.gift-cta { font-family: 'Playfair Display SC', serif; font-size: 7.5px; letter-spacing: 0.18em; color: rgba(255,154,181,0.38); margin-top: 2px; transition: color 0.2s; }
.gift-item:hover .gift-cta { color: rgba(255,154,181,0.75); }

.gift-note { text-align: center; font-size: 12px; font-style: italic; color: rgba(255,255,255,0.16); margin-top: 44px; line-height: 1.95; }

/* ── PROJECTS COMING SOON ── */
.coming-soon-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 18px;
}

.coming-soon-eyebrow {
  font-family: 'Playfair Display SC', serif;
  font-size: 7.5px;
  letter-spacing: 0.45em;
  color: rgba(255,154,181,0.35);
  text-transform: uppercase;
}

.coming-soon-title {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 8vw, 4.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,154,181,0.18);
  -webkit-text-stroke: 0.5px rgba(255,154,181,0.22);
  animation: csShimmer 4s ease-in-out infinite;
  line-height: 1.1;
}

@keyframes csShimmer {
  0%, 100% { color: rgba(255,154,181,0.14); -webkit-text-stroke-color: rgba(255,154,181,0.18); }
  50%       { color: rgba(255,154,181,0.32); -webkit-text-stroke-color: rgba(255,154,181,0.45); }
}

.coming-soon-sub {
  font-size: 12px;
  font-style: italic;
  color: rgba(255,255,255,0.16);
  letter-spacing: 0.15em;
}

.coming-soon-line {
  width: 50px;
  height: 0.5px;
  background: rgba(255,154,181,0.18);
  animation: csLine 3.5s ease-in-out infinite;
}

@keyframes csLine {
  0%, 100% { width: 35px; opacity: 0.25; }
  50%       { width: 75px; opacity: 0.6; }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.shown { opacity: 1; transform: translateY(0); }

/* ── CURSOR TRAIL ── */
.cursor-dot { position: fixed; pointer-events: none; width: 3px; height: 3px; background: rgba(255,154,181,0.55); border-radius: 50%; z-index: 9999; }

/* ── FOOTER ── */
footer { position: relative; z-index: 1; text-align: center; padding: 32px 40px 96px; border-top: 0.5px solid rgba(255,255,255,0.04); }
footer p { font-family: 'Playfair Display SC', serif; font-size: 7.5px; letter-spacing: 0.3em; color: rgba(255,255,255,0.13); }

@media (max-width: 640px) {
  /* inner nav */
  .inner-nav { padding: 12px 14px; }
  .inner-nav-links { gap: 10px; }
  .inner-nav-links a { font-size: 7px; letter-spacing: 0.12em; }
  .inner-nav-back { font-size: 7px; }

  /* page wrap */
  .page-wrap { padding: 74px 16px 140px; }

  /* home */
  .home-center { padding: 50px 20px 130px; }
  .home-pfp-wrap { width: 100px; height: 100px; }
  .home-nav { gap: 8px; }
  .home-nav-btn { font-size: 8px; padding: 9px 16px 9px 12px; gap: 6px; }
  .home-nav-btn img.nav-gif { width: 15px; height: 15px; }

  /* about */
  .about-page-wrap { padding: 50px 14px 80px; }
  .about-banner { height: 140px; }
  .about-2col { grid-template-columns: 1fr; gap: 14px; }
  .about-col-header-name { font-size: 1.1rem; }
  .about-col-body { font-size: 13.5px; line-height: 1.8; }

  /* socials */
  .social-row { padding: 12px 12px; gap: 12px; }
  .social-icon-wrap { width: 22px; height: 22px; }
  .social-value { font-size: 10px; }
  .socials-section-label { padding: 14px 0 6px; }

  /* donate */
  .social-row.no-link .social-value { font-size: 9px; }

  /* player */
  #player {
    width: 96vw;
    padding: 8px 12px 10px;
    gap: 8px;
    border-radius: 14px;
  }
  .player-meta { width: 90px; }
  .player-song-title { font-size: 10px; }
  .player-song-artist { font-size: 8.5px; }
  .player-song-icon { width: 30px; height: 30px; }
  .p-btn { font-size: 11px; padding: 5px 5px; }
  .player-peek { font-size: 6.5px; padding: 4px 12px; }

  /* coming soon */
  .coming-soon-title { font-size: clamp(1.8rem, 11vw, 3rem); }

  /* footer */
  footer { padding: 24px 16px 100px; }
}