@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;600;700&display=swap');

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

body {
  background: #0a0a0f;
  color: #e0e0e8;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  text-align: center;
  padding: 40px 24px;
  max-width: 420px;
  width: 100%;
}

.discord-icon {
  width: 64px; height: 64px; border-radius: 16px; background: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 24px rgba(88, 101, 242, 0.3);
}
.discord-icon img { width: 42px; height: 32px; object-fit: contain; }

.title {
  font-size: 20px; font-weight: 700;
  color: #e0e0e8; margin-bottom: 8px;
}

.subtitle {
  font-size: 13px; color: #505068;
  line-height: 1.8; margin-bottom: 36px;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
}

.link-discord {
  background: #5865F2;
  color: #fff;
}
.link-discord:hover {
  background: #4752c4;
}

.link-back {
  background: transparent;
  color: #505068;
  border: 1px solid #2a2a3a;
}
.link-back:hover {
  color: #808098;
  border-color: #404060;
}
