body {
  background-color: #0d0d0d;
  background-image: url('wallpaper.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #f0f0f0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  text-align: center;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem 3rem;
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
  max-width: 800px;
}

h1 {
  font-size: 3rem;
  color: #00ffff;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: 0 0 10px #00ffff;
}

p {
  font-size: 1.25rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  body {
    background-image: url('phone.png');
  }

  h1 {
    font-size: 2rem;
  }

  p {
    font-size: 1rem;
  }

  .container {
    padding: 1.5rem;
  }
}
.footer-link {
  position: absolute;
  bottom: 1rem;
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: #cccccc;
  text-decoration: underline;
  z-index: 10;
}

@media (min-width: 768px) {
  .footer-link {
    font-size: 1rem;
    bottom: 2rem;
  }
}
/* NeverManifest top-left link */
.manifest-link {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #bb66ff;
  font-size: 1.1rem;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 5px #bb66ff, 0 0 10px #bb66ff;
}

.manifest-link:hover {
  text-decoration: underline;
  color: #d399ff;
}

/* Studio name bottom-right */
.studio-name {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #00faff;
  text-shadow: 0 0 5px #00faff, 0 0 10px #00faff;
}

/* Responsive font size for mobile */
@media (max-width: 768px) {
  .studio-name {
    font-size: 1.2rem;
  }

  .manifest-link {
    font-size: 1rem;
  }
}

