/* ==== Global settings ==== */
* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  color: #e0d8ff;
  background: linear-gradient(135deg, #090022 0%, #220033 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ==== Header ==== */
header {
  margin-top: 3rem;
}

h1 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 2px;
  color: #ffe6ff;
  text-shadow: 0 0 6px #ff00cc, 0 0 12px #6600ff;
}

/* ==== Paragraphs and Lists ==== */
main {
  max-width: 600px;
  margin: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 2rem;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 15px rgba(255, 0, 255, 0.2);
}

p {
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul {
  list-style-type: square;
  padding-left: 1.2rem;
  text-align: left;
}

li {
  margin: 0.3rem 0;
}

/* ==== Links ==== */
a {
  color: #ff99ff;
  text-decoration: none;
  border-bottom: 1px dashed #ff99ff;
  transition: 0.3s ease;
}

a:hover {
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
  text-shadow: 0 0 8px #ffccff;
}

/* ==== Image ==== */
img {
  width: 200px;
  margin: 1rem auto;
  display: block;
  filter: drop-shadow(0 0 10px #ff00ff);
  transition: transform 0.3s ease;
}

img:hover {
  transform: rotate(5deg) scale(1.1);
}

/* ==== Footer ==== */
footer {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

footer a {
  color: #bb99ff;
}

footer a:hover {
  color: #fff;
}

/* ==== Optional: subtle animation background ==== */
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255,0,255,0.1), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(0,255,255,0.1), transparent 60%);
  animation: float 10s ease-in-out infinite alternate;
  z-index: -1;
}

@keyframes float {
  from { transform: translateY(0px); }
  to { transform: translateY(20px); }
}