* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    sans-serif;
}

body {
  background-color: #0f172a;
  background-image: url("../images/background.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.glass-box {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Font */
.glass-box h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.glass-box p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 25px 0;
}

.glass-box .status {
  font-size: 0.95rem;
  color: #38bdf8;
  font-family: monospace;
}

/* Mobile */
@media (max-width: 767px) {
  body {
    background-size: auto 100vh;
    background-position: center;
  }

  .glass-box {
    width: 85%;
    max-width: none;
    margin: 0 auto;

    padding: 30px 20px;
    border-radius: 15px;
  }

  /* Scaled text */
  .glass-box h1 {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }

  .glass-box p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .divider {
    margin: 15px 0;
  }

  .glass-box .status {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}
