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

body {
  background-color: #1a1a1a;
  color: #fceaff;
  font-family: "Courier New", monospace;
  line-height: 1.6;
  padding: 20px;
  min-height: 100vh;
}

/* Links */
a {
  color: #b388eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: underline;
  color: #d4aaff;
}

/* Headers */
h1, h2, h3, h4 {
  font-weight: normal;
  margin-bottom: 0.5em;
  color: #b388eb;
  text-shadow: 0 0 6px #a073e3;
}

/* Navigation */
nav {
  background-color: #2d2239;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(179, 136, 235, 0.5);
  max-width: 220px;
}

nav a {
  display: block;
  margin: 10px 0;
  font-weight: bold;
}

/* Containers */
.container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

/* Buttons */
.button {
  display: inline-block;
  background: linear-gradient(135deg, #026aa7, #005a8f);
  color: #fceaff;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 4px 8px rgba(2, 106, 167, 0.6);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  border: none;
  font-family: "Courier New", monospace;
  text-decoration: none;
}

.button:hover,
.button:focus {
  background: linear-gradient(135deg, #005a8f, #024e75);
  box-shadow: 0 6px 12px rgba(2, 106, 167, 0.9);
}

/* Sections with borders */
.section-box {
  background-color: #2d2239;
  border: 2px dashed #b388eb;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 2rem;
  box-shadow: 0 0 10px #b388eb;
}

/* Images */
img {
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 12px #b388eb;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background-color: #3a2c4d;
  border-top: 2px solid #b388eb;
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #d4aaff;
}

/* Responsive tweaks */
@media (max-width: 700px) {
  nav {
    max-width: 100%;
    padding: 10px;
    border-radius: 0;
    box-shadow: none;
  }

  .container {
    padding: 10px;
  }
}
