:root {
  --bg: #06060b;
  --panel: rgba(20, 20, 32, 0.65);
  --line: rgba(139, 92, 246, 0.25);
  --violet: #8b5cf6;
  --violet-2: #6d28d9;
  --cyan: #22d3ee;
  --text: #e7e7f0;
  --muted: #9a9ab0;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

main, header, footer { position: relative; z-index: 1; }

::selection { background: var(--violet); color: #fff; }

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(6, 6, 11, 0.7);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { display: flex; align-items: center; gap: 10px; }

.logo-cube {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--violet), var(--cyan));
  border-radius: 6px;
  box-shadow: 0 0 18px var(--violet);
  transform: rotate(0deg);
  animation: spin 6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

.logo-text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links { display: flex; gap: 26px; }

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color .2s;
}

.nav-links a:hover { color: var(--text); }

.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--violet);
  border-radius: 999px;
  color: var(--violet);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 28px;
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 34px rgba(139, 92, 246, 0.7); }
}

.hero-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(44px, 9vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 2px;
}

.hero-title span {
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--violet));
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: glow 4s linear infinite;
}

@keyframes glow { to { background-position: 200% 0; } }

.hero-sub {
  max-width: 640px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s, box-shadow .2s;
  border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: #fff;
  box-shadow: 0 8px 30px rgba(109, 40, 217, 0.5);
}

.btn-primary:hover { box-shadow: 0 10px 40px rgba(109, 40, 217, 0.8); }

.btn-ghost {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover { border-color: var(--violet); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }

.btn-discord {
  background: #5865f2;
  color: #fff;
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.4);
}

.btn-lg { padding: 18px 44px; font-size: 17px; }

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 64px;
  flex-wrap: wrap;
}

.stat b {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 34px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span { color: var(--muted); font-size: 13px; letter-spacing: 1px; }

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 90px 24px;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(26px, 5vw, 40px);
  text-align: center;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin: 14px auto 48px;
  font-size: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: transform .2s, box-shadow .25s, border-color .2s;
}

.card:hover {
  transform: translateY(-6px);
  border-color: var(--violet);
  box-shadow: 0 14px 44px rgba(139, 92, 246, 0.22);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--cyan);
}

.card h3 { font-size: 18px; margin-bottom: 10px; }

.card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

.bypass {
  max-width: 640px;
  margin: 0 auto 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bypass-item {
  display: grid;
  grid-template-columns: 160px 1fr 52px;
  align-items: center;
  gap: 14px;
}

.bypass-name { font-weight: 700; font-size: 14px; }

.bypass-bar {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.bypass-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  box-shadow: 0 0 14px var(--violet);
}

.bypass-val { color: var(--cyan); font-weight: 700; font-size: 14px; }

.bypass-list {
  max-width: 640px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bypass-list li {
  padding-left: 26px;
  position: relative;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.bypass-list li::before {
  content: '▹';
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 700;
}

.visuals {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.vis {
  height: 220px;
  border-radius: 18px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  font-weight: 700;
  font-size: 15px;
  transition: transform .25s, box-shadow .25s;
}

.vis:hover { transform: scale(1.03); box-shadow: 0 14px 40px rgba(139, 92, 246, 0.3); }

.vis-1 {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 170, 0, 0.55), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.5), transparent 50%),
    linear-gradient(160deg, #1a1030, #06060b);
}

.vis-2 {
  background:
    radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.9), transparent 55%),
    radial-gradient(circle at 30% 30%, rgba(34, 211, 238, 0.45), transparent 50%),
    linear-gradient(160deg, #0b1e2a, #06060b);
}

.vis-3 {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 255, 255, 0.85), transparent 28%),
    radial-gradient(circle at 82% 15%, rgba(139, 92, 246, 0.6), transparent 40%),
    linear-gradient(180deg, #2b1055, #06060b);
}

.vis-4 {
  background:
    linear-gradient(190deg, transparent 45%, rgba(34, 211, 238, 0.25) 45%, rgba(34, 211, 238, 0.25) 47%, transparent 47%),
    radial-gradient(circle at 50% 90%, rgba(139, 92, 246, 0.5), transparent 60%),
    linear-gradient(160deg, #12102b, #06060b);
}

.btn-tg {
  background: linear-gradient(135deg, #2aabee, #229ed9);
  color: #fff;
  box-shadow: 0 8px 30px rgba(42, 171, 238, 0.35);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  max-width: 980px;
  margin: 0 auto;
}

.plan {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform .2s, box-shadow .25s, border-color .2s;
  display: flex;
  flex-direction: column;
}

.plan:hover {
  transform: translateY(-6px);
  border-color: var(--violet);
  box-shadow: 0 14px 44px rgba(139, 92, 246, 0.22);
}

.plan-hot {
  border-color: var(--violet);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.25);
}

.plan-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan h3 {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.price {
  font-family: 'Unbounded', sans-serif;
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 18px;
}

.plan ul {
  list-style: none;
  margin: 0 0 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.plan li {
  color: var(--muted);
  font-size: 13.5px;
  position: relative;
  padding-left: 20px;
  text-align: left;
}

.plan li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.btn-plan {
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: #fff;
  width: 100%;
  padding: 12px;
  box-shadow: 0 6px 22px rgba(109, 40, 217, 0.4);
}

.btn-plan:hover { box-shadow: 0 8px 30px rgba(109, 40, 217, 0.7); }

.download-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--cyan); }

.btn-auth {
  font-family: inherit;
  cursor: pointer;
}

.btn[hidden] { display: none; }

.auth-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.auth-user[hidden] { display: none; }

.auth-login-name {
  color: #c794ed;
  font-weight: 700;
  font-size: 14px;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.btn-account {
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  border: 1px solid rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.3);
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  line-height: 1.2;
  white-space: nowrap;
  color: #fff;
}

.btn-account:hover {
  box-shadow: 0 0 18px rgba(139, 92, 246, 0.5);
  transform: translateY(-1px);
}

.auth-user .btn-auth.btn-ghost {
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 8px;
  line-height: 1.2;
  white-space: nowrap;
}

.acct-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.acct-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #1e1628;
  border: 1px solid #352a3d;
  border-radius: 10px;
}

.acct-label {
  color: #9a8ea6;
  font-size: 13px;
}

.acct-value {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  word-break: break-all;
  text-align: right;
}

.acct-avatar {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 18px 0;
}

.acct-avatar-img {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--violet);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.35);
}

.acct-avatar-img[hidden] { display: none; }

.acct-avatar-empty {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  border: 2px dashed #352a3d;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a5e74;
  font-size: 13px;
}

.acct-avatar-empty[hidden] { display: none; }

.acct-btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
}

.acct-btn-off {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(3, 3, 8, 0.75);
  backdrop-filter: blur(8px);
  padding: 20px;
}

.auth-modal[hidden] { display: none; }

.auth-box {
  width: 100%;
  max-width: 400px;
  background: #12101c;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
}

.auth-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.auth-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 900;
  font-size: 17px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.auth-close {
  background: none;
  border: none;
  color: #6a5e74;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
}

.auth-close:hover { color: #ff5555; }

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  background: #1a1526;
  padding: 5px;
  border-radius: 12px;
}

.auth-tab {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 9px;
  background: transparent;
  color: #9a8ea6;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

.auth-tab.active {
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: #fff;
}

.auth-input {
  width: 100%;
  padding: 13px 14px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid #352a3d;
  background: #1e1628;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}

.auth-input:focus { border-color: var(--violet); }

.auth-input::placeholder { color: #6a5e74; }

.auth-submit {
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
  font-family: inherit;
}

.auth-status {
  margin: 14px 0 0;
  font-size: 13px;
  text-align: center;
  min-height: 18px;
}

.auth-wait { color: #c794ed; }
.auth-ok { color: #00ff88; }
.auth-bad { color: #ff5555; }

.auth-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 300;
  background: #1a1526;
  border: 1px solid var(--violet);
  color: var(--text);
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(139, 92, 246, 0.25);
  animation: toastIn .25s ease;
  max-width: 320px;
}

.toast[hidden] { display: none; }

@keyframes toastIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.footer-copy {
  max-width: 1100px;
  margin: 18px auto 0;
  text-align: center;
  color: rgba(154, 154, 176, 0.6);
  font-size: 13px;
  letter-spacing: 1px;
}

.footer-copy.footer-agree {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.5px;
}

.footer-agree a {
  color: rgba(154, 154, 176, 0.6);
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 154, 176, 0.3);
  transition: color .2s, border-color .2s;
}

.footer-agree a:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.agree-box {
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  background: #12101c;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.6), 0 0 40px rgba(139, 92, 246, 0.15);
  display: flex;
  flex-direction: column;
}

.agree-body {
  overflow-y: auto;
  color: #b8b0c4;
  font-size: 13px;
  line-height: 1.65;
  padding-right: 8px;
}

.agree-body h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text);
  margin: 18px 0 12px;
}

.agree-body h4 {
  font-size: 14px;
  color: var(--cyan);
  margin: 18px 0 6px;
}

.agree-body p {
  margin: 0 0 8px;
}

.support-box {
  max-width: 420px;
}

.support-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.support-option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #352a3d;
  background: #1a1526;
  color: var(--text);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s, background .2s;
  text-align: left;
}

.support-option:hover {
  border-color: var(--violet);
  background: #221a30;
}

.support-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 17px;
  background: linear-gradient(135deg, var(--violet), var(--violet-2));
  color: #fff;
}

.support-result {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  align-items: center;
  text-align: center;
}

.support-result-label {
  color: var(--muted);
  font-size: 13px;
}

.support-result-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--cyan);
  word-break: break-all;
}

.support-result .auth-submit {
  margin-top: 10px;
  max-width: 240px;
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .hero { padding: 80px 20px 60px; }
  .hero-stats { gap: 24px; }
  .bypass-item { grid-template-columns: 110px 1fr 44px; }
  .footer-inner { justify-content: center; text-align: center; }
}