body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url('images/neon_background.PNG');
  background-size: cover;
  background-position: center;
  font-family: 'Karla', sans-serif;
}

.content {
  background-color: rgba(30, 15, 48, 0.7);
  padding: 2rem;
  border-radius: 10px;
  max-width: 900px;
  width: 90%;
  box-sizing: border-box;
  min-height: 100vh; /* keeps vertical space consistent */
}

/* Collapse box style */
.fragment-box {
  background-color: rgba(60, 30, 90, 0.9);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

/* Summary always fills the box visually */
.fragment-box summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.2rem;
  display: block;
}


/* Remove triangle icon */
.fragment-box summary::-webkit-details-marker {
  display: none;
}

h1 {
  color: rgba(231, 215, 250, 1);
  background-color: #350b52;
  text-align: center;
  padding: 1rem;
  border-radius: 10px;
  width: 80%;
}

h2 {
  color: #0FFF50;
  font-size: 1.5rem;
  margin: 0;
}

p {
  color: rgba(243, 242, 245, 1);
  margin-top: 0.5rem;
}

.footer-nav {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.footer-nav a {
  color: #0FFF50;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
}

.footer-nav a:hover {
  text-decoration: underline;
}

footer p {
  text-align: center;
  margin-top: 0.5rem;
}

a {
  color: #0FFF50;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

b {
  color: #b3b3b3;
}
