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

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

:root {
  --purple-deep: #4c1d95;
  --purple-mid: #7c3aed;
  --purple-light: #a78bfa;
  --blue-mid: #2563eb;
  --blue-light: #60a5fa;
  --bg: #0a0612;
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(167, 139, 250, 0.2);
  --text: #e2e8f0;
  --muted: #94a3b8;
}

html, body {
  height: 100%;
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Background canvas ── */
#particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── Glow orbs ── */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: drift 12s ease-in-out infinite alternate;
}

.orb1 {
  width: 500px; height: 500px;
  background: var(--purple-mid);
  top: -150px; left: -150px;
  animation-delay: 0s;
}

.orb2 {
  width: 400px; height: 400px;
  background: var(--blue-mid);
  bottom: -100px; right: -100px;
  animation-delay: 4s;
}

.orb3 {
  width: 300px; height: 300px;
  background: #1e1b4b;
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 8s;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, 30px) scale(1.1); }
}

/* ── Layout ── */
.container {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

/* ── Card ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 560px;
  width: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 0 1px rgba(167, 139, 250, 0.08),
    0 25px 60px rgba(0, 0, 0, 0.5),
    0 0 80px rgba(124, 58, 237, 0.12);
  text-align: center;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Badge ── */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(37,99,235,0.3));
  border: 1px solid rgba(167,139,250,0.35);
  color: var(--purple-light);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  animation: pulseBorder 3s ease-in-out infinite;
}

@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(167,139,250,0.0); }
  50%       { box-shadow: 0 0 0 4px rgba(167,139,250,0.15); }
}

/* ── Shield icon ── */
.icon-wrap {
  margin-bottom: 1.25rem;
}

.shield-icon {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 20px rgba(124,58,237,0.6));
  animation: floatIcon 4s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Title ── */
.title {
  font-size: 1.9rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c4b5fd 0%, #818cf8 40%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167,139,250,0.3), transparent);
  margin: 1.5rem 0;
}

/* ── Main text ── */
.main-text {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.highlight {
  background: linear-gradient(135deg, rgba(124,58,237,0.2), rgba(37,99,235,0.2));
  border: 1px solid rgba(167,139,250,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}

.highlight strong {
  background: linear-gradient(135deg, #c4b5fd, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Disclaimer box ── */
.disclaimer-box {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  text-align: left;
}

.warn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.disclaimer-box p {
  font-size: 0.875rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.disclaimer-box strong {
  color: #fbbf24;
}

.blockman {
  color: #93c5fd;
  font-style: italic;
}

/* ── Contact section ── */
.contact-section {
  margin-top: 0.5rem;
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, #5865f2, #4752c4);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
  box-shadow: 0 4px 20px rgba(88, 101, 242, 0.4);
}

.discord-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.6);
  filter: brightness(1.1);
}

.discord-btn:active {
  transform: translateY(0) scale(0.98);
}

.discord-logo {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ── Footer note ── */
.footer-note {
  margin-top: 1.75rem;
  font-size: 0.72rem;
  color: #475569;
  letter-spacing: 0.05em;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .card { padding: 2rem 1.5rem; }
  .title { font-size: 1.5rem; }
}
