@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Eagle+Lake&display=swap');

/* ===== The Furby Queen — GOTHIC / 90s crypt edition =====
   STELLA: this is the ONE file that controls how the site looks.
   Change a color below and the whole site updates. You do not need to
   touch anything else. Start with the :root colors. */

:root {
  /* >>> CHANGE THESE to re-skin your whole site <<< */
  --pink:   #c2185b;   /* blood rose — main accent */
  --purple: #4a148c;   /* deep violet — secondary */
  --cream:  #0e0a14;   /* near-black page background */
  --ink:    #e6dcf2;   /* pale lavender text */
  --card:   #1a1326;   /* charcoal-violet cards */
  --radius: 12px;
  --font:   "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Creepster", "Eagle Lake", "Poppins", system-ui, sans-serif;
  --spook:  "Eagle Lake", "Creepster", Georgia, serif;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(194,24,91,.16), transparent 38%),
    radial-gradient(circle at 18% 8%, rgba(74,20,140,.18), transparent 46%),
    var(--cream);
  line-height: 1.6;
}

a { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

/* --- Top nav --- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 20px;
  background: linear-gradient(90deg, #1a0f2e, #2a0f3a 50%, #3a0f2a);
  border-bottom: 1px solid rgba(194,24,91,.4);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-wrap: wrap;
}
.brand {
  font-family: var(--display);
  font-size: 1.5rem;
  letter-spacing: 1px;
  color: #f3e9ff;
  text-shadow: 0 0 8px rgba(194,24,91,.7);
}
.brand span { filter: drop-shadow(0 0 4px rgba(194,24,91,.8)); }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-links a {
  color: #e6dcf2;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .95rem;
}
.nav-links a:hover, .nav-links a.active {
  background: rgba(194,24,91,.25);
  text-decoration: none;
}

/* --- Layout --- */
.wrap { max-width: 980px; margin: 0 auto; padding: 28px 20px 60px; }
.hero {
  text-align: center;
  padding: 52px 20px 34px;
  background:
    radial-gradient(circle at 50% -10%, rgba(74,20,140,.30), transparent 60%);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin: 0 0 10px;
  color: #f3e9ff;
  letter-spacing: 1px;
  text-shadow: 0 0 14px rgba(194,24,91,.6);
}
.hero p { font-size: 1.1rem; max-width: 620px; margin: 0 auto; opacity: .85; }

.btn {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  margin: 8px 6px;
  border: 1px solid rgba(194,24,91,.5);
  box-shadow: 0 0 12px rgba(74,20,140,.5);
  cursor: pointer;
  font-size: 1rem;
}
.btn:hover { text-decoration: none; filter: brightness(1.15); box-shadow: 0 0 18px rgba(194,24,91,.6); }
.btn.pink { background: var(--pink); }
.btn.pp { background: #ffc439; color: #111; box-shadow: none; } /* PayPal yellow */
.btn.pp:hover { filter: brightness(.95); }

/* --- Cards / product grid --- */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 24px;
}
.card {
  background: var(--card);
  border: 1px solid rgba(194,24,91,.35);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 22px rgba(74,20,140,.35);
  display: flex;
  flex-direction: column;
}
.card img { width: 100%; height: 220px; object-fit: cover; background: #110b1a; filter: saturate(.9) contrast(1.05); }
.card .body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card h3 { margin: 0 0 4px; font-size: 1.1rem; font-family: var(--spook); color: #f3e9ff; }
.card .meta { font-size: .9rem; opacity: .7; margin-bottom: 8px; }
.card .price { font-weight: 700; color: var(--pink); font-size: 1.25rem; margin: 6px 0; text-shadow: 0 0 8px rgba(194,24,91,.5); }
.card .btn { margin: 8px 0 0; text-align: center; }

/* --- Generic sections --- */
.section { margin: 38px 0; }
.section h2 {
  font-family: var(--spook);
  font-size: 1.7rem;
  color: #f3e9ff;
  text-shadow: 0 0 10px rgba(194,24,91,.4);
  margin-bottom: 6px;
}
.note {
  background: rgba(74,20,140,.14);
  border-left: 4px solid var(--pink);
  padding: 14px 16px;
  border-radius: 10px;
  margin: 16px 0;
}

/* --- Footer --- */
.footer {
  text-align: center;
  padding: 30px 20px;
  color: #e6dcf2;
  background: linear-gradient(90deg, #2a0f3a, #3a0f2a);
  border-top: 1px solid rgba(194,24,91,.4);
  margin-top: 40px;
}
.footer a { color: var(--pink); text-decoration: underline; }

.community-banner {
  display: block; width: 100%; max-width: 720px; height: auto;
  margin: 0 auto 26px; border-radius: 12px;
  border: 2px solid var(--pink);
  box-shadow: 0 0 18px rgba(194,24,91,.45);
}
.discord-widget-wrap { text-align: center; }
.discord-widget {
  display: inline-block; max-width: 100%;
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--pink);
  box-shadow: 0 0 18px rgba(194,24,91,.45);
  margin: 10px 0;
}
.discord-widget iframe { display: block; max-width: 100%; }
.widget-note { font-size: .85rem; opacity: .75; }

/* --- Myspace-style music player --- */
.musicbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 150;
  display: flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  background: linear-gradient(90deg, #2a0f3a, #3a0f2a);
  border-top: 1px solid rgba(194,24,91,.5);
  box-shadow: 0 -2px 16px rgba(194,24,91,.35);
  font-size: .9rem;
}
.musicbar button {
  background: none; border: 1px solid var(--pink); color: #f3e9ff;
  border-radius: 50%; width: 34px; height: 34px; cursor: pointer;
  font-size: 1rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: box-shadow .2s;
}
.musicbar button:hover { box-shadow: 0 0 10px rgba(194,24,91,.8); }
.mp-meta { flex: 1; min-width: 0; }
.mp-title {
  color: #f3e9ff; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; margin-bottom: 4px;
  font-family: "Eagle Lake", "Creepster", cursive; letter-spacing: .3px;
}
.mp-progress {
  height: 6px; background: rgba(255,255,255,.12); border-radius: 4px;
  cursor: pointer; overflow: hidden;
}
.mp-fill { height: 100%; width: 0%; background: var(--pink); transition: width .2s; }
body { padding-bottom: 56px; } /* room so player doesn't cover footer */
.about-head { display: flex; gap: 22px; align-items: flex-start; flex-wrap: wrap; }
.profile {
  width: 150px; height: 150px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 3px solid var(--pink);
  box-shadow: 0 0 18px rgba(194,24,91,.5);
  background: #110b1a;
}
.profile.ph { object-fit: contain; padding: 14px; opacity: .6; }
.about-head > div { flex: 1; min-width: 240px; }

@media (max-width: 520px) {
  .nav { justify-content: center; }
  .brand { width: 100%; text-align: center; margin-bottom: 6px; }
  .about-head { flex-direction: column; align-items: center; text-align: center; }
}


/* --- Gallery thumbnails + modal --- */
.card .cover { cursor: zoom-in; }
.thumbs { display: flex; gap: 6px; padding: 0 16px 12px; flex-wrap: wrap; align-items: center; }
.thumb {
  width: 52px; height: 52px; padding: 0; border: 1px solid rgba(194,24,91,.4);
  border-radius: 8px; overflow: hidden; background: #110b1a; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--pink); box-shadow: 0 0 8px rgba(194,24,91,.6); }
.thumbs .more { font-size: .85rem; opacity: .7; padding-left: 2px; }

.empty-note { opacity: .7; font-style: italic; }
.dict { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px 24px; margin-top: 12px; }
.dict .row { padding: 8px 0; border-bottom: 1px solid rgba(194,24,91,.2); }
.dict .fur { color: var(--pink); font-weight: bold; font-family: "Eagle Lake", cursive; }
.dict .en { opacity: .85; }
.sold-form { display: flex; flex-direction: column; gap: 10px; max-width: 460px; margin-top: 10px; }
.sold-form input, .sold-form textarea {
  background: rgba(255,255,255,.06); border: 1px solid rgba(194,24,91,.4);
  color: #f3e9ff; border-radius: 8px; padding: 10px; font: inherit;
}
.sold-form input:focus { outline: 1px solid var(--pink); }
.form-note { font-size: .8rem; opacity: .7; }
.sold-wall { display: grid; gap: 14px; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); margin-top: 10px; }
.wall-post {
  background: rgba(255,255,255,.05); border: 1px solid rgba(194,24,91,.4);
  border-radius: 12px; padding: 14px; box-shadow: 0 0 12px rgba(194,24,91,.25);
}
.wall-photo { width: 100%; max-height: 220px; object-fit: cover; border-radius: 8px; margin-bottom: 8px; }
.wall-msg { margin: 0 0 6px; }
.wall-by { margin: 0; font-size: .85rem; opacity: .8; font-style: italic; }

.modal {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(8,4,14,.92); align-items: center; justify-content: center;
  flex-direction: column; padding: 20px;
}
.modal img, .modal video { max-width: 92vw; max-height: 78vh; border-radius: 10px; box-shadow: 0 0 30px rgba(194,24,91,.5); }
.modal-close {
  position: absolute; top: 16px; right: 20px; background: none; border: none;
  color: #f3e9ff; font-size: 2rem; cursor: pointer; line-height: 1;
}
.modal-nav {
  position: absolute; top: 50%; transform: translateY(-50%); background: none; border: none;
  color: #f3e9ff; font-size: 3rem; cursor: pointer; padding: 0 18px; opacity: .8;
}
.modal-nav:hover { opacity: 1; }
#modalPrev { left: 4px; }
#modalNext { right: 4px; }
.guide-preview {
  display: block; width: 200px; max-width: 60%; height: auto;
  margin: 6px auto 12px; border-radius: 10px;
  border: 2px solid var(--pink);
  box-shadow: 0 0 14px rgba(194,24,91,.45);
}
