/* ===========================
   Login Page
   =========================== */
.login-page {
  min-height: 100vh;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.login-bg-blur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.login-bg-blur.b1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -100px; left: -150px;
}

.login-bg-blur.b2 {
  width: 400px; height: 400px;
  background: #eb459e;
  bottom: -80px; right: -100px;
}

.login-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
}

.login-logo {
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 0 32px rgba(88, 101, 242, 0.4);
}

.login-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.login-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 32px;
  line-height: 1.5;
}

.btn-discord {
  background: #5865f2;
  color: #fff;
  width: 100%;
  justify-content: center;
  padding: 14px;
  font-size: 1rem;
  border-radius: 10px;
  font-weight: 700;
  gap: 12px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(88, 101, 242, 0.4);
}

.btn-discord:hover {
  background: #4752c4;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(88, 101, 242, 0.55);
  transform: translateY(-1px);
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 24px 0;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.login-divider::before,
.login-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

.login-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.login-note a { color: var(--text-secondary); }

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.feature-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}
