body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #121212;
  color: #e0e0e0;
  padding-bottom: 100px;
}
.official-banner {
  color: #ffffff;
  padding: 0.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.official-banner p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.official-banner a {
  color: #e67cc4;
  text-decoration: underline;
  font-weight: bold;
}
.official-banner a:hover {
  color: #fff;
}
.banner-icon {
  width: 20px;
  height: 20px;
}
nav {
  background: #1e1e1e;
  border-bottom: 1px solid #333;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
nav ul li {
  margin: 0;
  flex: 1;
  text-align: center;
}
nav ul li a {
  display: block;
  padding: 1rem;
  color: #e0e0e0;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}
nav ul li a:hover {
  background: #333;
  color: #e67cc4;
}
nav ul li a.active {
  background: #e67cc4;
  color: #121212;
}
main {
  padding: 2rem;
}
a {
  color: #e67cc4;
  text-decoration: none;
  transition: color 0.3s, text-decoration 0.3s;
}
a:hover {
  color: #81c784;
  text-decoration: underline;
}
footer {
  background: #1e1e1e;
  color: #bbb;
  text-align: center;
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid #333;
}
.footer-image {
  width: 100%;
  height: 75px;
  background: url("/assets/images/cryfurstudios-footer.jpg") no-repeat center center/cover;
}
footer p {
  margin: 0;
  padding: 0.5rem;
  font-size: 0.9rem;
}