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

/* Body */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: linear-gradient(135deg, #1b1f36 0%, #2a2f4f 100%);
  color: #e6e6f0;
}

/* Header */
header {
  background: rgba(27, 31, 54, 0.95);
  color: #fff;
  padding: 2rem;
  text-align: center;
  border-bottom: 3px solid #9a7dff;
  box-shadow: 0 4px 6px rgba(154, 125, 255, 0.25);
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #9a7dff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

header p {
  font-size: 1.1rem;
  color: #c0c0d6;
}

header p a {
  color: #9a7dff;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

header p a:hover {
  color: #fff;
  text-decoration: underline;
}

header .header-link {
  font-size: 1rem;
  display: inline-block;
  margin-top: 1rem;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 2rem;
}

section {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(154, 125, 255, 0.3);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

section:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(154, 125, 255, 0.6);
  box-shadow: 0 8px 18px rgba(154, 125, 255, 0.2);
}

section h2 {
  font-size: 2rem;
  color: #9a7dff;
  margin-bottom: 1rem;
  border-bottom: 2px solid #9a7dff;
  padding-bottom: 0.5rem;
}

section ul {
  list-style: none;
  margin-top: 1rem;
}

section ul li {
  padding: 0.75rem 0;
  padding-left: 1.5rem;
  position: relative;
}

section ul li:before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #9a7dff;
  font-weight: bold;
}

section a {
  color: #9a7dff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

section a:hover {
  color: #fff;
  text-decoration: underline;
}

section p {
  font-size: 1rem;
  line-height: 1.8;
  color: #d6d6e6;
}

/* Footer */
footer {
  background: rgba(27, 31, 54, 0.95);
  color: #c0c0d6;
  text-align: center;
  padding: 2rem;
  border-top: 3px solid #9a7dff;
  margin-top: 3rem;
}

footer a {
  color: #9a7dff;
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .footer-link {
  font-weight: 600;
}

footer p {
  font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  section h2 {
    font-size: 1.5rem;
  }
}
