/* Minimal styles: set background image and position the logo top-left. */
.page-root {
  background: #000000;
  color: #f4efe6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background: url("pfp.jpg");
  background-repeat: repeat;
  background-size: 100px;
  background-position: center; */
  opacity: 0.95;
}

.site-logo {
  position: fixed;
  top: 18px;
  left: 18px;
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2.5px solid rgba(40, 0, 0, 0.18); /* subtle, matches bg */
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
  background: transparent;
  z-index: 50;
}

/* logo pulse */
.site-logo {
  animation: pulse 3s ease-in-out infinite;
}

.container {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  outline: none;
}

/* .btn:active {
  transform: scale(0.97);
  box-shadow: 0 2px 8px rgba(255, 140, 40, 0.12);
} */

.btn:focus {
  box-shadow: 0 0 0 3px #ffcc6688;
  border-color: #0f0f0f;
  z-index: 2;
}

.btn.primary {
  background: linear-gradient(90deg, #0f0f0f, #0f0f0f);
  color: #ff0000;
  /* box-shadow: 0 8px 22px rgba(255, 140, 40, 0.18); */
  transform: translateY(0);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn.primary:hover {
  transform: translateY(-4px);
  /* box-shadow: 0 20px 50px rgba(255, 140, 40, 0.22); */
}

/* .btn.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
} */

/* Responsive */
@media (max-width: 1024px) {
  body::before {
    font-size: 10rem;
  }

  body::after {
    font-size: 6rem;
  }

  .container::before {
    font-size: 8rem;
  }

  .container::after {
    font-size: 12rem;
  }
}

@media (max-width: 768px) {
  .page-root {
    padding: 1.5rem 1rem;
  }

  body::before {
    font-size: 8rem;
    top: 10%;
    right: 5%;
  }

  body::after {
    font-size: 5rem;
    bottom: 20%;
    left: 2%;
  }

  .container::before {
    font-size: 6rem;
    top: 55%;
    left: 2%;
  }

  .container::after {
    font-size: 10rem;
    bottom: 10%;
    right: 3%;
  }

  .site-logo {
    width: 56px;
    height: 56px;
    top: 12px;
    left: 12px;
  }

  .social-icons {
    top: 10px;
    right: 8px;
    gap: 6px;
  }

  .social-icons a {
    width: 24px;
    height: 24px;
  }

  .social-icons svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 600px) {
  .page-root {
    padding: 1rem 0.75rem;
  }

  .hero-card {
    padding: 1.5rem;
    border-radius: 10px;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  body::before {
    font-size: 6rem;
    top: 15%;
    right: 3%;
  }

  body::after {
    font-size: 4rem;
    bottom: 25%;
    left: 1%;
  }

  .container::before {
    font-size: 5rem;
    top: 60%;
    left: 1%;
  }

  .container::after {
    font-size: 8rem;
    bottom: 15%;
    right: 2%;
  }

  .site-logo {
    width: 48px;
    height: 48px;
    top: 8px;
    left: 8px;
  }

  .social-icons {
    top: 6px;
    right: 6px;
    gap: 4px;
  }

  .social-icons a {
    width: 20px;
    height: 20px;
  }

  .social-icons svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .page-root {
    padding: 0.75rem;
  }

  body::before {
    font-size: 4rem;
    top: 20%;
    right: 2%;
    opacity: 0.1;
  }

  body::after {
    font-size: 3rem;
    bottom: 30%;
    left: 0%;
    opacity: 0.08;
  }

  .container::before {
    font-size: 3.5rem;
    top: 65%;
    left: 0%;
    opacity: 0.08;
  }

  .container::after {
    font-size: 5rem;
    bottom: 20%;
    right: 0%;
    opacity: 0.08;
  }

  .site-logo {
    width: 40px;
    height: 40px;
    top: 6px;
    left: 6px;
  }

  .social-icons {
    top: 4px;
    right: 4px;
    gap: 3px;
  }

  .social-icons a {
    width: 18px;
    height: 18px;
  }

  .social-icons svg {
    width: 18px;
    height: 18px;
  }

  .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.9rem;
  }
}
.social-icons {
  position: fixed;
  top: 12px;
  right: 2px;
  display: flex;
  gap: 8px;
  z-index: 100;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  opacity: 0.82;
  transition: opacity 0.18s, transform 0.18s;
}
.social-icons a:hover {
  opacity: 1;
  transform: scale(1.15);
}
.social-icons svg {
  width: 28px;
  height: 28px;
  display: block;
}

/*  */
body::before,
body::after {
  content: "🦇";
  position: fixed;
  color: #cc0000;
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

body::before {
  font-size: 12rem;
  top: 5%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

body::after {
  font-size: 8rem;
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite 1s;
}

.container::before,
.container::after {
  content: "🦇";
  position: fixed;
  color: #cc0000;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.container::before {
  font-size: 10rem;
  top: 50%;
  left: 3%;
  animation: float 7s ease-in-out infinite 2s;
}

.container::after {
  font-size: 15rem;
  bottom: 5%;
  right: 5%;
  animation: float 9s ease-in-out infinite 0.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-40px) translateX(-10px);
  }
  75% {
    transform: translateY(-20px) translateX(15px);
  }
}

.music-player {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.music-player:hover {
  opacity: 1;
}
