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

body {
  background-color: #0f0f11;
  color: #eaeaea;
  font-family: 'Inter', 'Poppins', sans-serif;
  line-height: 1.6;
  padding: 0;
  overflow-x: hidden;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: #161618;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.back-button {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.2rem;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.back-button:hover {
  background: rgba(255, 255, 255, 0.15);
}

.header-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.placeholder {
  width: 40px;
}

/* Content */
.content {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1.5rem 5rem;
}

.last-updated {
  font-size: 0.9rem;
  color: #b0b0b0;
  text-align: center;
  margin-bottom: 1.5rem;
}

/* Headings */
h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  border-left: 3px solid #9a63ff;
  padding-left: 0.6rem;
}

h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #9a63ff;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

/* Paragraphs and lists */
p {
  margin-bottom: 1rem;
  color: #dcdcdc;
  font-size: 0.96rem;
}

ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
  color: #bdbdbd;
  font-size: 0.95rem;
}

/* Contact info */
.contact-info a {
  color: #9a63ff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #b388ff;
}

/* Responsive */
@media (max-width: 600px) {
  .header-title {
    font-size: 1.1rem;
  }

  .content {
    padding: 0 1rem 4rem;
  }
}
