/* Base reset */
body {
  font-family: "Georgia", serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #111, #222);
  color: #eee;
}

header {
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 2px solid #444;
}

h1 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 3px;
}

h2 {
  margin-top: 0.5rem;
  font-weight: 400;
  font-size: 1.2rem;
  color: #aaa;
}

main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  padding: 2rem;
}

section {
  background: #1b1b1b;
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

h3 {
  margin-top: 0;
  color: #f39c12;
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-bottom: 1px solid #444;
  padding-bottom: 0.5rem;
}

a {
  display: block;
  margin: 0.4rem 0;
  text-decoration: none;
  color: #eee;
  font-weight: 500;
  transition: color 0.3s, transform 0.2s;
}

a:hover {
  color: #f39c12;
  transform: translateX(4px);
}
