/* Background */
body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background: url("background.png") no-repeat center center fixed;
  background-size: cover;
  color: #3b1b2f;
}

/* Dark pink overlay for readability */
.overlay {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  background: rgba(20, 0, 15, 0.55);
  backdrop-filter: blur(4px);
}

/* Main container */
.container {
  max-width: 800px;
  padding: 40px;
  text-align: center;
}

/* Title */
h1 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #ff3f9e;
  text-shadow: 0 2px 10px rgba(255, 63, 158, 0.4);
  letter-spacing: 1px;
}

/* Subtitle */
.subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.highlight {
  color: #ff3f9e;
  font-weight: bold;
}

/* Download button */
.download-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff4fa3, #ff77b8);
  color: white;
  text-decoration: none;
  border-radius: 999px;
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(255, 79, 163, 0.35);
  margin-bottom: 30px;
  transition: 0.25s ease;
}

.download-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 79, 163, 0.5);
}

/* Tutorial */
.tutorial {
  background: rgba(255, 255, 255, 0.75);
  padding: 25px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  line-height: 1.7;
  margin-top: 20px;
}

/* Tutorial title */
.tutorial h2 {
  text-align: center;
  color: #ff3f9e;
  margin-bottom: 20px;
  font-size: 22px;
  text-shadow: 0 1px 0 white;
}

/* Server box */
.server-box {
  margin: 15px 0;
  padding: 12px;
  background: white;
  border-radius: 12px;
  border: 2px dashed #ff3f9e;
  text-align: center;
  font-weight: bold;
  color: #ff3f9e;
  word-break: break-all;
}

/* Footer */
.footer {
  margin-top: 30px;
}

.footer a {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);

  color: white;
  font-weight: bold;
  font-size: 16px;

  backdrop-filter: blur(6px);

  transition: 0.2s;
}

.footer a:hover {
  background: rgba(255, 64, 160, 0.6);
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 600px) {

  .container {
    padding: 20px;
  }

  h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow:
    0 2px 10px rgba(255, 64, 160, 0.8),
    0 0 25px rgba(255, 64, 160, 0.6);
    letter-spacing: 1.5px;
  }
}
