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

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

/* ── INTRO ANIMATION ── */
#intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#skipBtn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: transparent;
  border: 1px solid #333;
  color: #555;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.2s, border-color 0.2s;
}
#skipBtn:hover { color: var(--accent); border-color: var(--accent); }

#introXoxo {
  display: flex;
  gap: 0.3em;
  margin-bottom: 2rem;
}

.xo-letter {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 15vw, 9rem);
  font-weight: 700;
  color: var(--accent);
  opacity: 0;
  transform: translateY(40px);
  animation: letterRise 0.6s ease forwards;
  text-shadow: 0 0 60px rgba(201,168,76,0.4);
  letter-spacing: 0.05em;
}

@keyframes letterRise {
  to { opacity: 1; transform: translateY(0); }
}

#introTagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: #555;
  font-size: clamp(0.9rem, 3vw, 1.2rem);
  letter-spacing: 0.08em;
  min-height: 1.5em;
}

/* Curtain reveal */
.curtain {
  position: absolute;
  left: 0;
  right: 0;
  height: 50%;
  background: #000;
  transition: transform 1.1s cubic-bezier(0.76, 0, 0.24, 1);
  z-index: 2;
}
#introCurtainTop { top: 0; transform: translateY(0); }
#introCurtainBot { bottom: 0; transform: translateY(0); }
#introCurtainTop.open-top { transform: translateY(-100%); }
#introCurtainBot.open-bot { transform: translateY(100%); }

/* ── SUBSCRIBE MODAL ── */
#subOverlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
#subOverlay.hidden { display: none; }

#subModal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--accent);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
#subClose {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
}
#subClose:hover { color: var(--text); }
#subModal h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 1.5rem;
  margin-bottom: 0.3rem;
}

.hidden { display: none !important; }

:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --border: #222;
  --accent: #c9a84c;
  --accent-dim: #7a5f28;
  --text: #e8e0d0;
  --muted: #666;
  --red: #8b1a1a;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

/* HEADER */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--accent-dim);
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}
.tagline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.15em;
  line-height: 1;
}
.subtitle {
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* NAV */
nav {
  display: flex;
  justify-content: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
nav a:hover, nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* MAIN */
main {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem 1rem;
}

/* GOSSIP CARD */
.gossip-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 1.8rem 2rem;
  margin-bottom: 1.5rem;
  position: relative;
}
.gossip-card .spotted {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.gossip-card .content {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
}
.gossip-card .meta {
  margin-top: 1rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gossip-card .tag {
  background: var(--border);
  color: var(--accent-dim);
  padding: 0.2rem 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--muted);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
}

/* FORM */
.form-container {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.form-container h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}
.form-container .form-subtitle {
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 2rem;
  font-style: italic;
}
.form-group {
  margin-bottom: 1.4rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.75rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent-dim);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.anon-note {
  font-size: 0.75rem;
  color: var(--muted);
  font-style: italic;
  margin-top: 0.3rem;
}
.btn {
  background: var(--accent);
  color: #000;
  border: none;
  padding: 0.85rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: background 0.2s;
  width: 100%;
}
.btn:hover { background: #e0b85a; }
.btn:disabled { background: var(--muted); cursor: not-allowed; }

.success-msg {
  text-align: center;
  padding: 3rem;
  font-family: 'Playfair Display', serif;
}
.success-msg h3 { color: var(--accent); font-size: 1.5rem; margin-bottom: 1rem; }
.success-msg p { color: var(--muted); font-style: italic; }

/* ADMIN */
.admin-login {
  max-width: 400px;
  margin: 4rem auto;
  text-align: center;
}
.admin-login h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}
.admin-panel h2 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}
.pending-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.pending-card .content {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.pending-card .meta-info {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.card-actions {
  display: flex;
  gap: 0.75rem;
}
.btn-approve {
  background: #1a5c2a;
  color: #7ecc96;
  border: 1px solid #2a7a40;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-approve:hover { background: #225c38; }
.btn-reject {
  background: #3a1010;
  color: #cc7e7e;
  border: 1px solid #5c2a2a;
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}
.btn-reject:hover { background: #4a1a1a; }
.btn-delete {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  font-size: 0.7rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.section-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
}
.badge {
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  font-size: 0.65rem;
  padding: 0.1rem 0.4rem;
  margin-left: 0.4rem;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--muted);
  font-size: 0.8rem;
  border-top: 1px solid var(--border);
}
footer a { color: var(--border); text-decoration: none; }
footer a:hover { color: var(--accent); }

@media (max-width: 600px) {
  .form-container { padding: 1.5rem; }
  .gossip-card { padding: 1.2rem 1.5rem; }
}
