@font-face {
  font-family: "Ambiguity Inline";
  src: url("AmbiguityInline.woff2") format("woff2"),
       url("AmbiguityInline.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

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

body {
  min-height: 100vh;
  font-family: "Ambiguity Inline", Arial, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 0, 0, 0.35), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 30, 30, 0.25), transparent 38%),
    linear-gradient(135deg, #030303 0%, #140000 22%, #7b0000 50%, #1b0000 74%, #000000 100%);
  color: #ffffff;
  overflow-x: hidden;
}

.maintenance-wrapper {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
}

.maintenance-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
}

.maintenance-wrapper::after {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.18);
  filter: blur(90px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.content-box {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 54px 38px;
  max-width: 760px;
  width: 100%;
  border-radius: 28px;
  background: rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(12px);
}

.logo {
  width: 190px;
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto 34px;
}

.main-title {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1.12;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  color: #ffffff;
  text-shadow: 0 0 26px rgba(255, 0, 0, 0.65);
}

.main-title span {
  display: block;
  white-space: nowrap;
}

p {
  font-size: clamp(18px, 2.8vw, 26px);
  line-height: 1.55;
  letter-spacing: 1px;
  color: #f4f4f4;
  max-width: 520px;
  margin: 0 auto;
}

.contact-section {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-title {
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 18px;
}

.contact-list {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.contact-list a {
  color: #ffffff;
  text-decoration: none;
  font-size: clamp(15px, 2vw, 18px);
  letter-spacing: 0.8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  transition: all 0.25s ease;
}

.contact-list a:hover {
  background: rgba(255, 0, 0, 0.22);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.32);
}

.small-line {
  display: inline-block;
  margin-top: 28px;
  width: 90px;
  height: 3px;
  border-radius: 50px;
  background: linear-gradient(90deg, transparent, #ff1d1d, transparent);
  box-shadow: 0 0 18px rgba(255, 0, 0, 0.9);
}

@media (max-width: 600px) {
  .content-box {
    padding: 42px 24px;
  }

  .logo {
    width: 145px;
    margin-bottom: 28px;
  }

  .main-title {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.15;
    letter-spacing: 1px;
  }

  .contact-list {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .contact-list a {
    width: 100%;
    max-width: 260px;
  }
}
