:root {
  /* Pulled from nftfi.com landing design system (nftfi.landing-mainpage/src/index.css) */
  --bg-base: #271e23; /* body background-color */
  --bg-start: 30 35% 42%; /* warm brown */
  --bg-mid: 350 28% 38%; /* mauve / rose */
  --bg-end: 320 32% 28%; /* dark plum */
  --foreground: 40 20% 95%; /* warm near-white */
  --muted-foreground: 40 15% 70%;
  --primary: 38 75% 55%; /* golden accent */
  --primary-hi: 38 85% 68%;
  --glass-bg: 0 0% 100% / 0.06;
  --glass-border: 0 0% 100% / 0.1;
  --radius: 1rem;
  --font-sans: "General Sans", "Satoshi", system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-base);
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
  min-height: 100vh;
  margin: 0;
  color: hsl(var(--foreground));
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  /* Warm gradient + ambient glows layered over the dark base, echoing the
     landing hero: golden warmth up top, mauve/plom depth below. */
  background:
    radial-gradient(
      120% 90% at 50% -10%,
      hsl(var(--bg-start) / 0.9) 0%,
      hsl(var(--bg-mid) / 0.55) 42%,
      hsl(var(--bg-end) / 0) 72%
    ),
    radial-gradient(
      90% 70% at 85% 8%,
      hsl(38 70% 55% / 0.22) 0%,
      hsl(38 70% 55% / 0) 50%
    ),
    radial-gradient(
      100% 80% at 12% 100%,
      hsl(var(--bg-mid) / 0.5) 0%,
      hsl(var(--bg-mid) / 0) 55%
    ),
    linear-gradient(
      135deg,
      hsl(var(--bg-start)) 0%,
      hsl(var(--bg-mid)) 50%,
      hsl(var(--bg-end)) 100%
    ),
    var(--bg-base);
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: hsl(var(--primary));
  overflow-wrap: anywhere;
  text-decoration-color: hsl(var(--primary) / 0.4);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition:
    color 150ms ease,
    text-decoration-color 150ms ease;
}

a:hover {
  color: hsl(var(--primary-hi));
  text-decoration-color: currentColor;
}

.notice-page {
  width: 100%;
  min-width: 0;
  min-height: 100vh;
  max-width: 1150px;
  margin: 0 auto;
  padding: 18px 16px 40px;
  display: flex;
  flex-direction: column;
}

.site-header {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-logo {
  width: auto;
  height: 26px;
}

.notice-hero {
  margin: 32px auto 0;
  width: 100%;
  max-width: 820px;
  text-align: center;
}

.notice-heading {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  /* Warm foreground → golden gradient text, as on the landing hero. */
  background: linear-gradient(
    135deg,
    hsl(var(--foreground)) 0%,
    hsl(var(--primary)) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.notice-card {
  width: min(100%, 720px);
  min-width: 0;
  max-width: 720px;
  margin: 40px auto 0;
  padding: 30px 24px 32px;
  border-radius: var(--radius);
  background: hsl(var(--glass-bg));
  border: 1px solid hsl(var(--glass-border));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 34px 60px rgba(20, 10, 14, 0.45),
    inset 0 1px 0 hsl(0 0% 100% / 0.08);
}

.notice-card p {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 18px;
  color: hsl(var(--muted-foreground));
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.notice-card p:last-child {
  margin-bottom: 0;
}

.signature {
  color: hsl(var(--foreground));
  font-weight: 500;
}

@media (min-width: 768px) {
  .notice-page {
    padding: 28px 72px 72px;
  }

  .site-header {
    min-height: 56px;
  }

  .site-logo {
    height: 30px;
  }

  .notice-hero {
    margin-top: 48px;
  }

  .notice-card {
    margin: 40px auto 0;
    padding: 52px 58px 56px;
    text-align: center;
  }

  .notice-card p {
    font-size: 19px;
    line-height: 1.75;
  }
}

@media (min-width: 1024px) {
  .notice-page {
    padding-inline: 24px;
    justify-content: center;
  }
}

@media (min-width: 1280px) {
  .notice-page {
    padding-inline: 0;
  }
}
