/* === Body === */

/* Coming Soon Page */
.comingsoon-page {
  background: #E3E3E3;
}

/* === Header === */

/* Header Shell */
.site-header {
  background: #0e0e18;
  border-bottom: 1px solid #2e2e46;
  padding: 8px 16px;
}

/* Header Top Row */
.header-main {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
}

/* Header Left */
.header-left {
  display: flex;
  justify-content: flex-start;
}

/* Header Center */
.header-center {
  text-align: center;
}

/* Header Right */
.header-right {
  display: flex;
  justify-content: flex-end;
}

/* Header Mark */
.brand-mark {
  width: 44px;
  height: 44px;
}

/* Header Brand Title */
.brand-title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #5EC453;
  font-family: Arial, sans-serif;
  text-shadow:
    0 0 6px rgba(66, 138, 58, 0.7),
    0 0 18px rgba(66, 138, 58, 0.35);
}

/* Header Kicker */
.header-kicker {
  margin: 0 0 8px 0;
  color: #BC54BD;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(125, 249, 255, 0.45);
}

/* Header Brand Title Link */
.brand-title-link {
  text-decoration: none;
  color: inherit;
}

/* Coming Soon Badge */
.cs-badge {
  width: 44px;
  height: 44px;
}

/* Header Scroll State (Mobile) */
@media (max-width: 768px) {

  .site-header {
    padding: 6px 10px;
  }

  .site-header.is-scrolled {
    padding: 4px 10px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .site-header.is-scrolled .brand-mark {
    width: 32px;
    height: 32px;
  }

  /* Brand Title */
  .brand-title {
    font-size: 1.3rem;
  }

  .site-header.is-scrolled .brand-title {
    font-size: 1.15rem;
  }

  .site-header.is-scrolled .menu-toggle {
    font-size: 1.3rem;
  }
}

/* === Page === */

/* Coming Soon Wrap */
.comingsoon-wrap {
  background:
    radial-gradient(circle at top, rgba(201, 162, 39, 0.10), transparent 35%),
    linear-gradient(180deg, #02D5FF, #2463EB);
}

/* Coming Soon Section */
.comingsoon-section {
  padding: 24px 0 0 0;
}

/* Coming Soon Card */
.comingsoon-card {
  max-width: 360px;
  margin: 0 auto;
  background: rgba(20, 20, 32, 0.85);
  border: 1px solid #000000;
  border-radius: 6px;
  color: #FFFE91;
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  padding: 6px 6px 6px 6px;
}

/* Domain Section */
.domain-section {
  padding: 24px 16px 60px 16px;
}


/* Domain Card */
.domain-card {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(221, 237, 255, 0.85);
  border: 1px solid #3a3a56;
  border-radius: 10px;
  padding: 0 14px 40px 14px;
  color: #010236;
  font-family: Arial, sans-serif;
  text-align: center;
}

.domain-card h1 {
  margin-top: 0;
  padding: 0 0 12px 0;
  font-family: Georgia, serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #397833;
}

.domain-card h2 {
  margin-top: 0;
  padding: 40px 0 0 0;
  color: #153987;
}

.domain-card span {
  color: #000000;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.8;
}

/* === Footer === */

/* Footer Shell */
.site-footer {
  background: rgba(14, 14, 24, 0.95);
  border-top: 1px solid #2e2e46;
  color: #cfd0e6;
  font-family: Arial, sans-serif;
  padding: 18px 16px 16px 16px;
}

/* Footer Inner */
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Footer Brand */
.footer-brand {
  margin-bottom: 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #5EC453;
  text-shadow:
    0 0 6px rgba(66, 138, 58, 0.7),
    0 0 18px rgba(66, 138, 58, 0.35);
}

/* Footer Domain Listing */
.footer-domain {
  margin-bottom: 8px;
  color: #f3f3f8;
  font-size: 0.95rem;
}

/* Footer AZXT */
.footer-meta {
  font-size: 0.82rem;
  color: #b7b7c9;
  line-height: 1.5;
  margin-bottom: 8px;
}

.footer-meta a {
  color: #E8E8FF;
  text-decoration: none;
}

.footer-meta a:hover {
  font-weight: 700;
  color: #F4F4FF;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .site-footer {
    padding: 16px 12px 14px 12px;
  }

  .footer-brand {
    margin-bottom: 6px;
  }

  .footer-meta {
    font-size: 0.78rem;
    margin-bottom: 6px;
  }
}

