:root {
  --scc-dark: #211922;
  --scc-signal: #B00248;
  --scc-signal-dark: #97003d;
  --text: #2d2730;
  --muted: #746b73;
  --bg: #f7f4f6;
  --card: #ffffff;
  --border: rgba(33, 25, 34, 0.10);
  --shadow: 0 28px 90px rgba(33, 25, 34, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: Inter, Roboto, Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 16% 18%, rgba(176, 2, 72, 0.20), transparent 28rem),
    radial-gradient(circle at 88% 82%, rgba(33, 25, 34, 0.14), transparent 30rem),
    linear-gradient(135deg, #ffffff 0%, var(--bg) 46%, #eee8ec 100%);
}

.maintenance-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}

.maintenance-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(33, 25, 34, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(33, 25, 34, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
  pointer-events: none;
}

.maintenance-card {
  width: min(920px, 100%);
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 58px);
  overflow: hidden;
}

.maintenance-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--scc-dark), var(--scc-signal), var(--scc-dark));
}

.maintenance-card::after {
  content: "";
  position: absolute;
  right: -96px;
  top: -96px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(176, 2, 72, 0.08);
  pointer-events: none;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(36px, 6vw, 62px);
  position: relative;
  z-index: 1;
}

.logo-box {
  width: 112px;
  height: 72px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 14px 36px rgba(33, 25, 34, 0.08);
  overflow: hidden;
}

.logo-box img {
  width: 88px;
  height: auto;
  display: block;
}

.brand-text {
  display: grid;
  gap: 2px;
  line-height: 1.15;
}

.brand-text .club {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--scc-dark);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 950;
  letter-spacing: -0.035em;
}

.status-pill {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--scc-signal);
  background: rgba(176, 2, 72, 0.08);
  border: 1px solid rgba(176, 2, 72, 0.16);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--scc-signal);
  box-shadow: 0 0 0 7px rgba(176, 2, 72, 0.10);
  animation: pulse 1.7s ease-in-out infinite;
}

h1 {
  max-width: 760px;
  color: var(--scc-dark);
  font-size: clamp(2.4rem, 7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  margin: 0 0 22px;
  font-weight: 950;
  position: relative;
  z-index: 1;
}

.lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
  margin: 0 0 34px;
  position: relative;
  z-index: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}

.info-box {
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff 0%, #faf8f9 100%);
  padding: 18px 20px;
}

.info-box span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.info-box strong {
  display: block;
  color: var(--scc-dark);
  font-size: 1.02rem;
  font-weight: 900;
}

.small-note {
  color: var(--muted);
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.72); opacity: 0.55; }
}

@media (max-width: 680px) {
  .maintenance-page {
    align-items: stretch;
    padding: 16px;
  }

  .maintenance-card {
    min-height: calc(100vh - 32px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 26px;
  }

  .brand-row {
    align-items: flex-start;
    gap: 14px;
  }

  .logo-box {
    width: 84px;
    height: 60px;
    border-radius: 17px;
  }

  .logo-box img {
    width: 66px;
  }

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