body {
  background: linear-gradient(-45deg, #000000, #3a005f, #1a002b, #0f0f3a);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  font-family: 'Orbitron', sans-serif;
  color: white;
  overflow: hidden;
  height: 100vh;
  position: relative;
}

/* Animate gradient background */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* This will push the top and bottom sections apart */
}

.home-btn-container {
  text-align: center;
  padding-top: 30px;
}

.home-btn {
  text-decoration: none;
  font-size: 20px;
  padding: 8px 20px;
  border: 2px solid #ff3c78;
  border-radius: 12px;
  color: #ff3c78;
  font-weight: bold;
  background: transparent;
  box-shadow: 0 0 8px #ff3c78;
  transition: all 0.3s ease;
}

.home-btn:hover {
  background-color: #ff3c78;
  color: #fff;
  box-shadow: 0 0 15px #ff3c78;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.about-top {
  text-align: center;
  max-width: 900px;
  margin-top: 10px;
}

.about-top h2 {
  font-size: 32px;
  color: #ff3c78;
  margin-bottom: 12px;
}

.about-top p {
  font-size: 16px;
  color: #e0e0e0;
  line-height: 1.5;
}

/* 👇 This is key! */
.about-bottom {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-end;
  margin-top: auto;        /* pushes it to the bottom */
  margin-bottom: 30px;     /* fine-tuned bottom spacing */
}

.about-bottom img {
  height: 380px;
  max-width: 270px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 0 12px rgba(255, 0, 102, 0.6);
  transition: transform 0.3s ease;
}

.about-bottom img:hover {
  transform: scale(1.02);
}

.about-top h2 {
  text-shadow: 0 0 8px #2a2829, 0 0 16px #2a2929;
}

.about-top {
  max-width: 1000px;
  width: 100%;
  padding: 0 40px;
  margin-top: 10px;
}

.about-top p {
  font-family: 'Creepster', cursive; /* 👈 new font */
  background: rgba(255, 255, 255, 0.05);
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(192, 192, 192, 0.3);
  backdrop-filter: blur(4px);
  text-align: center;
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.corner-image {
  position: fixed;
  bottom: 0;
  width: 130px;
  z-index: 10;
  filter: drop-shadow(0 0 8px silver);
  opacity: 0.95;
}

.left-corner {
  left: 0;
  margin-left: 0px;
}

.right-corner {
  right: 0;
  margin-right: 0px;
}
