:root {
  --bg: #0a0a12;
  --card: rgba(20, 20, 35, 0.7);
  --border: rgba(120, 90, 255, 0.25);
  --accent: #7c5cff;
  --accent-2: #00e0ff;
  --discord: #5865f2;
  --text: #e8e8f0;
  --muted: #9a9ab0;
}

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

html { scroll-behavior: smooth; }

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

/* Background effects */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(124, 92, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 92, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  z-index: -2;
}

.bg-glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.25), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Nav */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
}

.nav-discord {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: 0.25s;
}
.nav-discord:hover { background: var(--accent); border-color: var(--accent); }

/* Hero */
.hero { min-height: 100vh; display: flex; flex-direction: column; }

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 6vw 10vh;
  max-width: 900px;
  margin: 0 auto;
}

.hero-logo {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  margin-bottom: 28px;
  border: 2px solid rgba(124, 92, 255, 0.5);
  box-shadow: 0 0 40px rgba(124, 92, 255, 0.5);
  animation: float 4s ease-in-out infinite;
}

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

.title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 20px;
}
.title span {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 8px 30px rgba(124, 92, 255, 0.4);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(124, 92, 255, 0.6); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { background: rgba(124, 92, 255, 0.15); }
.btn-discord {
  background: var(--discord);
  color: #fff;
  margin-top: 16px;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}
.btn-discord:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(88, 101, 242, 0.6); }

/* Sections */
.section { max-width: 1100px; margin: 0 auto; padding: 80px 6vw; }
.section-title {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
}
.section-sub { text-align: center; color: var(--muted); margin-bottom: 48px; }

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  backdrop-filter: blur(12px);
}

.discord-card { text-align: center; max-width: 560px; margin: 0 auto; }
.discord-card h2 { font-size: 1.8rem; margin-bottom: 12px; }
.discord-card p { color: var(--muted); }

/* Methods */
.methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.method { position: relative; transition: 0.25s; }
.method:hover { transform: translateY(-6px); border-color: var(--accent); }
.method-num {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 12px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  margin-bottom: 16px;
}
.method h3 { font-size: 1.15rem; margin-bottom: 14px; }
.method ol { padding-left: 20px; color: var(--muted); }
.method li { margin-bottom: 8px; line-height: 1.5; }

/* Notice banner */
.notice {
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 16px 22px;
  background: rgba(255, 180, 0, 0.08);
  border: 1px solid rgba(255, 180, 0, 0.35);
  border-radius: 14px;
  color: #ffd98a;
  font-size: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

/* Platform groups */
.platform { margin-bottom: 56px; }
.platform-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 6px;
}

.method-note { color: var(--muted); font-size: 0.88rem; margin-bottom: 12px; font-style: italic; }

.method a { color: var(--accent-2); text-decoration: none; font-weight: 600; }
.method a:hover { text-decoration: underline; }

.method code {
  background: rgba(124, 92, 255, 0.15);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1px 7px;
  font-size: 0.85em;
  word-break: break-all;
}

.method pre {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 10px 0;
  font-size: 0.82rem;
  color: var(--accent-2);
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

/* Footer */
.footer {
  text-align: center;
  padding: 40px 6vw;
  color: var(--muted);
  border-top: 1px solid var(--border);
}
