:root {
  --bg: #07111f;
  --bg-soft: rgba(14, 24, 41, 0.76);
  --panel: rgba(12, 21, 37, 0.85);
  --panel-strong: rgba(16, 29, 49, 0.94);
  --line: rgba(166, 192, 255, 0.18);
  --text: #eef4ff;
  --muted: #a9b8d6;
  --accent: #86b7ff;
  --accent-2: #7ef0d3;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(107, 149, 255, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(126, 240, 211, 0.14), transparent 28%),
    linear-gradient(180deg, #060c16 0%, #09111d 52%, #050a12 100%);
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.2;
  pointer-events: none;
}

.orb-one {
  top: -8rem;
  left: -10rem;
  background: #4b84ff;
}

.orb-two {
  right: -10rem;
  bottom: -10rem;
  background: #34d7b2;
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 18px;
}

.notice-card {
  position: relative;
  width: min(100%, 860px);
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, var(--bg-soft), var(--panel));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.eyebrow,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.lead {
  margin: 18px 0 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.info-box {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(134, 183, 255, 0.12), rgba(134, 183, 255, 0.05));
  border: 1px solid rgba(134, 183, 255, 0.22);
}

.info-box h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.info-box p {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}


.gif-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 36px 0 34px;
  padding: 24px 0;
}

.notice-gif {
  display: block;
  width: min(100%, 180px);
  height: auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  background: rgba(255, 255, 255, 0.03);
}

.developer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.developer-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  color: var(--text);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.developer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(134, 183, 255, 0.42);
  background: linear-gradient(180deg, rgba(134, 183, 255, 0.11), rgba(255, 255, 255, 0.03));
}

.icon-wrap,
.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--accent);
}

.icon-wrap svg,
.arrow svg {
  width: 20px;
  height: 20px;
}

.card-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.card-copy strong {
  font-size: 1rem;
}

.card-copy span,
.card-copy small {
  color: var(--muted);
  line-height: 1.5;
  word-break: break-word;
}

.arrow {
  margin-left: auto;
  color: var(--accent-2);
}

@media (max-width: 760px) {
  .notice-card {
    padding: 24px;
    border-radius: 24px;
  }

  .developer-links {
    grid-template-columns: 1fr;
  }

  .developer-card {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .page-shell {
    padding: 16px;
  }

  .notice-card {
    padding: 20px;
    border-radius: 22px;
  }

  .eyebrow,
  .status-pill {
    min-height: 34px;
    font-size: 0.8rem;
  }
}
