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

body {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #1a1f2b, #1e2430);
  color: #f1f1f1;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px;
  line-height: 1.7;
}

/* Container Styles */
.container {
  max-width: 850px;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation: fadeIn 0.5s ease-in-out;
}

/* Typography */
h1 {
  font-size: 2.2rem;
  color: #00e5ff;
  margin-bottom: 20px;
  text-align: center;
}

h2 {
  font-size: 1.4rem;
  color: #a0f8ff;
  margin-top: 32px;
  margin-bottom: 12px;
}

p {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #e4e4e4;
  text-align: justify;
}

/* List */
ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

ul li {
  padding: 8px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
}

ul li:last-child {
  border-bottom: none;
}

/* Links */
a {
  color: #00e5ff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  cursor: pointer;
}

a:hover {
  color: #66fcf1;
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid #00e5ff;
  outline-offset: 2px;
}

/* Footer */
footer {
  margin-top: 40px;
  text-align: center;
  font-size: 0.9rem;
  color: #bbbbbb;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .container {
    padding: 24px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.2rem;
  }

  p,
  ul li {
    font-size: 0.95rem;
  }
}
