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

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

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: #fff;
  background: #030006;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  position: relative;
  min-height: 100vh;
  padding: 42px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(150, 49, 255, .42), transparent 36%),
    radial-gradient(circle at 10% 72%, rgba(92, 0, 210, .34), transparent 30%),
    radial-gradient(circle at 90% 70%, rgba(209, 62, 255, .24), transparent 30%),
    linear-gradient(180deg, #080011 0%, #020004 100%);
}

.page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(184, 69, 255, .12) 42.2%, transparent 42.8% 100%),
    linear-gradient(65deg, transparent 0 52%, rgba(255, 255, 255, .08) 52.1%, transparent 52.7% 100%);
  opacity: .75;
}

.page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(177,80,255,.9) 0 1px, transparent 1.6px);
  background-size: 120px 120px, 180px 180px;
  background-position: 10px 20px, 70px 90px;
  opacity: .22;
}

.landing-card {
  position: relative;
  width: 100%;
  max-width: 860px;
  padding: 42px 42px 34px;
  border: 1px solid rgba(211, 111, 255, .58);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(15, 0, 29, .84), rgba(6, 0, 15, .92)),
    rgba(8, 0, 20, .78);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.06) inset,
    0 0 34px rgba(151, 39, 255, .42),
    0 0 90px rgba(85, 0, 180, .42);
  backdrop-filter: blur(12px);
  overflow: hidden;
  z-index: 1;
}

.landing-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(190, 78, 255, .42);
  border-radius: 24px;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  opacity: .7;
}

.glow-01 {
  width: 180px;
  height: 180px;
  top: -80px;
  right: 60px;
  background: rgba(179, 54, 255, .62);
}

.glow-02 {
  width: 160px;
  height: 160px;
  bottom: -70px;
  left: 40px;
  background: rgba(103, 0, 255, .45);
}

.header {
  position: relative;
  z-index: 2;
  text-align: center;
}

.logo-wrap {
  width: min(100%, 690px);
  margin: 0 auto 20px;
}

.logo {
  width: 100%;
  margin: 0 auto;
  filter: drop-shadow(0 0 18px rgba(180, 72, 255, .56));
}

.notice {
  margin: 0 auto 28px;
  padding: 26px 24px;
  border: 1px solid rgba(217, 119, 255, .55);
  border-radius: 24px;
  background: rgba(7, 0, 18, .62);
  box-shadow:
    0 0 26px rgba(162, 59, 255, .28),
    inset 0 0 24px rgba(255,255,255,.035);
}

.notice-title {
  margin-bottom: 12px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  text-shadow: 0 0 16px rgba(189, 85, 255, .78);
}

.notice-desc {
  font-size: 21px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  word-break: keep-all;
}

.domain-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin: 0 0 22px;
}

.domain-item {
  animation-delay: var(--delay);
}

.domain-item a {
  position: relative;
  min-height: 84px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 88px 1fr 102px;
  align-items: center;
  gap: 14px;
  border-radius: 20px;
  border: 1px solid rgba(200, 99, 255, .58);
  background:
    linear-gradient(90deg, rgba(127, 30, 255, .22), rgba(31, 0, 66, .78)),
    radial-gradient(circle at 10% 50%, rgba(218, 120, 255, .28), transparent 34%);
  box-shadow:
    0 0 22px rgba(127, 32, 255, .24),
    inset 0 0 24px rgba(255,255,255,.03);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.domain-item a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 40%, rgba(255,255,255,.16) 48%, transparent 56% 100%);
  transform: translateX(-120%);
  transition: transform .62s ease;
}

.domain-item a:hover {
  transform: translateY(-4px);
  border-color: rgba(241, 194, 255, .84);
  box-shadow:
    0 0 32px rgba(174, 74, 255, .48),
    inset 0 0 26px rgba(255,255,255,.05);
}

.domain-item a:hover::before {
  transform: translateX(120%);
}

.domain-badge {
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #6e19ff, #d16bff);
  box-shadow: 0 0 16px rgba(181, 77, 255, .55);
}

.domain-item strong {
  font-size: 27px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .6px;
  color: #fff;
  text-shadow: 0 0 12px rgba(191, 96, 255, .78);
}

.domain-action {
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 900;
  color: #2b0045;
  background: #fff;
  box-shadow: 0 0 16px rgba(255,255,255,.28);
}

.guide-box {
  position: relative;
  z-index: 2;
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  text-align: center;
}

.guide-box p {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  word-break: keep-all;
}

.footer {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 6px;
  text-align: center;
  color: rgba(255,255,255,.62);
}

.footer strong {
  font-size: 16px;
  color: rgba(255,255,255,.82);
}

.footer span {
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 720px) {
  .page {
    padding: 28px 12px;
  }

  .landing-card {
    padding: 28px 18px 24px;
    border-radius: 24px;
  }

  .landing-card::before {
    inset: 9px;
    border-radius: 18px;
  }

  .logo-wrap {
    margin-bottom: 16px;
  }

  .notice {
    padding: 21px 16px;
    margin-bottom: 20px;
    border-radius: 18px;
  }

  .notice-title {
    font-size: 28px;
  }

  .notice-desc {
    font-size: 17px;
  }

  .domain-list {
    gap: 12px;
  }

  .domain-item a {
    min-height: 92px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 14px;
    text-align: center;
  }

  .domain-badge {
    width: 92px;
    height: 32px;
    margin: 0 auto;
    font-size: 13px;
  }

  .domain-item strong {
    font-size: 22px;
  }

  .domain-action {
    width: 110px;
    height: 34px;
    margin: 0 auto;
    font-size: 13px;
  }

  .guide-box {
    padding: 15px 14px;
  }

  .guide-box p {
    font-size: 13px;
  }
}
