/* Privacy page theme (uses your neon green brand + Creepster font) */

/* Local Creepster if you want the page independent of Google fonts */
@font-face{
  font-family: 'CreepsterLocal';
  src: url('../assets/fonts/Creepster-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

/* Page background: reuse your graveyard or ballroom look */
body {
  background: url('../assets/backgrounds/graveyard-greenfog.png') no-repeat center center fixed;
  background-size: cover;
  color: #15fb00;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
  position: relative;
}

/* Keep content above the overlay */
header, main, footer {
  position: relative;
  z-index: 1;
}

/* Simple header/footer like Rules page */
header {
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
  padding: 1rem;
  font-size: 1.3rem;
  border-bottom: 2px solid #15fb00;
}
footer {
  background-color: rgba(0, 0, 0, 0.85);
  text-align: center;
  padding: 1rem;
  border-top: 2px solid #15fb00;
}

/* Container & hero */
.container {
  max-width: 1100px;
  margin: 2.5rem auto;
  padding: 1rem;
}

.hero h1 {
  font-family: 'CreepsterLocal', 'Creepster', cursive;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  text-align: center;
  margin: 0.25rem 0 0.75rem;
  color: #15fb00;
}

.last-revised, .intro {
  text-align: center;
  max-width: 920px;
  margin: 0.25rem auto 0.75rem;
  color: #eaffea;
  text-shadow: 1px 1px 3px #000;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  justify-content: center;
  margin: 1.25rem auto 1.75rem;
  max-width: 980px;
}

.toc a {
  padding: 0.4rem 0.7rem;
  border: 1px solid #15fb00;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  color: #eaffea;
  text-decoration: none;
  font-size: 0.98rem;
}
.toc a:hover { box-shadow: 0 0 10px #15fb00; }

/* Cards */
.card {
  background: rgba(0,0,0,0.80);
  border: 2px solid #15fb00;
  border-radius: 14px;
  box-shadow: 0 0 18px rgba(21,251,0,0.4);
  padding: 1.2rem 1.3rem;
  margin: 1rem auto;
  color: #eaffea;
}

.card h2 {
  font-family: 'CreepsterLocal', 'Creepster', cursive;
  color: #15fb00;
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.card ul {
  padding-left: 1.1rem;
  margin: 0.5rem 0 0;
}

.card li {
  margin: 0.3rem 0;
  line-height: 1.55;
}

.note {
  color: #d7ffd7;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Details/summary (rights sections) */
details {
  background: rgba(0,0,0,0.65);
  border: 1px solid #15fb00;
  border-radius: 10px;
  padding: 0.6rem 0.8rem;
  margin: 0.6rem 0;
}
summary {
  cursor: pointer;
  font-weight: bold;
  color: #eaffea;
}

/* Back to top */
.back-top {
  text-align: center;
  margin: 1.6rem 0 0.4rem;
}
.back-top a {
  color: #eaffea;
  text-decoration: none;
  border-bottom: 1px dotted #15fb00;
}
.back-top a:hover { color: #fff; }

/* Return-to-signup section */
.return-section {
  text-align: center;
  margin: 2rem 0 0.5rem;
}
.return-btn {
  background: #15fb00;
  color: #000;
  border: none;
  padding: 0.8rem 1.5rem;
  font-family: 'CreepsterLocal', cursive;
  font-size: 1.3rem;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 0 15px #15fb00;
  transition: 0.3s;
}
.return-btn:hover {
  background: #0f0;
  box-shadow: 0 0 20px #15fb00;
}

/* Footer */
footer a {
  color: #15fb00;
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* Mobile tweaks */
@media (max-width: 768px) {
  .container { padding: 0.75rem; }
  .card { padding: 1rem; }
  .toc a { font-size: 0.9rem; }
}