* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  width: 100%;
  font-family: Arial, Helvetica, sans-serif;
  background: #18051f;
  color: #ffffff;
  overflow-x: hidden;
}

html {
  width: 100%;
  overflow-x: hidden;
}

.maintenance-page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 5vw, 72px);
  background:
    /*  radial-gradient(circle at center, rgba(22, 0, 24, 0.62) 0%, rgba(22, 0, 24, 0.78) 42%, rgba(12, 0, 18, 0.52) 100%),
      linear-gradient(180deg, rgba(32, 0, 42, 0.62), rgba(8, 0, 14, 0.62)), */
      radial-gradient(circle at center, rgba(141, 18, 2, 0.62) 0%, rgba(144, 23, 4, 0.78) 42%, rgba(12, 0, 18, 0.52) 100%),
      linear-gradient(180deg, rgba(32, 0, 42, 0.62), rgba(8, 0, 14, 0.62)),
      url("img/banner.png") center / cover no-repeat;
}

.maintenance-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 77% 12%, rgba(255, 255, 255, 0.066), transparent 24%),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.477), transparent 30%),
    linear-gradient(180deg, rgba(0,0,0,0.16), rgba(0,0,0,0.56));
  pointer-events: none;
}

/*  .curve {
    position: absolute;
    left: -260px;
    top: -130px;
    width: 520px;
    height: 128%;
    border-right: 58px solid rgba(255, 61, 76, 0.34);
    border-radius: 50%;
    filter: drop-shadow(0 0 16px rgba(255, 61, 76, 0.14));
    opacity: 0.82;
    pointer-events: none;
  }
*/


.content-card {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 40px));
  max-width: 720px;
  text-align: center;
  overflow: hidden;
  padding: clamp(26px, 4vw, 48px);
  border-radius: 28px;
  background: rgba(20, 3, 28, 0.465);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(12px);
}


.brand-lockup {
  display: block;
  width: min(430px, 100%);
  margin: 0 auto 28px;
  line-height: 0;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,0.35));
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.brand-footer-logo {
  display: block;
  width: 20%;
  height: auto;
  border: 0;
  margin: 18px auto 0;
  opacity: 0.9;
}


.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff3d4c;
  box-shadow: 0 0 0 0 rgba(255, 61, 76, 0.75);
  animation: pulse 1.7s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 61, 76, 0.75); }
  70% { box-shadow: 0 0 0 12px rgba(255, 61, 76, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 61, 76, 0); }
}

h1 {
  width: 100%;
  max-width: 100%;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
  letter-spacing: -1.4px;
  overflow-wrap: normal;
}

.headline-line {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.highlight {
  color: #ff4055;
}

.message {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(16px, 1.65vw, 19px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 18px;
}

.message-line {
  display: block;
}

.patience-note {
  font-size: clamp(15px, 1.4vw, 17px);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 0;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.info-box {
  min-height: 92px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.info-box strong {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #ffb5bd;
}

.info-box span {
  font-size: 15px;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.9);
}

.cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff3046, #c90b1d);
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(255, 48, 70, 0.28);
}

.small-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.footer-note {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 4vw, 52px);
  bottom: clamp(20px, 4vw, 38px);
  font-size: 13px;
  color: rgba(255,255,255,0.58);
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .maintenance-page {
    align-items: center;
    justify-content: center;
    padding: 16px;
    background-position: 68% center;
  }

  .maintenance-page::before {
    background:
      radial-gradient(circle at 72% 10%, rgba(255, 255, 255, 0.1), transparent 24%),
      linear-gradient(180deg, rgba(0,0,0,0.2), rgba(12, 0, 18, 0.78));
  }

  /*.curve {
    left: -250px;
    top: -70px;
    width: 350px;
    border-right-width: 34px;
  }

  .curve::after {
    right: -70px;
    width: 120px;
    height: 24px;
  }*/

  .content-card {
    width: min(100%, calc(100vw - 32px));
    max-width: 100%;
    padding: 22px;
    border-radius: 24px;
  }

  .brand-lockup {
    width: min(330px, 100%);
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(28px, 7.8vw, 42px);
    line-height: 1.03;
    letter-spacing: -0.8px;
  }

  .headline-line {
    white-space: normal;
  }

  .message {
    font-size: 16px;
  }

  .dream-team {
    -webkit-text-stroke: 2px #c31624;
  }

  .info-strip {
    grid-template-columns: 1fr;
  }

  .footer-note {
    display: none;
  }
}

