:root {
  --cl-accent: #2673d6;
  --cl-bg: #000000;
  --cl-bg2: #0a0a0a;
  --cl-text: #ffffff;
  --cl-text-dim: rgba(255, 255, 255, 0.75);
  --cl-text-muted: rgba(255, 255, 255, 0.55);
  --cl-border: rgba(255, 255, 255, 0.12);
  --bs-font-sans-serif: 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.4); }

#liquid-canvas {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none;
}

.click-particle {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  animation: particle-burst 0.7s ease-out forwards;
}
@keyframes particle-burst {
  0%   { transform: translate(0,0) scale(1); opacity: 1; }
  100% { transform: translate(var(--tx),var(--ty)) scale(0); opacity: 0; }
}

.flex-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.flex-wrapper > .components { flex: 1; }

.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 {
  color: var(--cl-text) !important; font-weight: 800;
  letter-spacing: -0.02em; text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}
.section-title p { color: var(--cl-text-muted); font-size: .95rem; max-width: 640px; margin: .5rem auto 0; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.navbar.component {
  background: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
  transition: box-shadow .3s, border-color .3s;
}
.navbar.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,0.8) !important;
  border-bottom-color: rgba(255,255,255,0.15) !important;
}
.navbar .navbar-brand { color: #ffffff !important; font-weight: 700; letter-spacing: 0.03em; }
.navbar .navbar-brand:hover { color: rgba(255,255,255,0.8) !important; }
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.75) !important; font-weight: 500;
  font-size: .88rem; letter-spacing: .02em; position: relative;
  padding-bottom: 4px !important; transition: color .2s;
}
.navbar .nav-link::after {
  content: ''; position: absolute; left: 50%; bottom: 0; width: 0; height: 1px;
  background: #ffffff; border-radius: 2px;
  transform: translateX(-50%); transition: width .25s ease;
}
.navbar .nav-link:hover { color: #ffffff !important; }
.navbar .nav-link:hover::after { width: 70%; }

.navbar .btn-outline-primary {
  color: rgba(255, 255, 255, 0.9) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.05) !important;
  font-weight: 500; font-size: .83rem; letter-spacing: .03em;
  border-radius: 8px; padding: 6px 14px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px; transition: background .2s, border-color .2s, color .2s, transform .15s;
  white-space: nowrap;
}
.navbar .btn-outline-primary:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: rgba(255,255,255,0.4) !important;
  color: #ffffff !important; transform: translateY(-1px);
}
.navbar .btn-outline-primary svg { width: 16px !important; height: 16px !important; flex-shrink: 0; opacity: .9; }
.navbar .btn-discord {
  background: #5865F2 !important; border-color: #5865F2 !important;
  color: #fff !important;
}
.navbar .btn-discord:hover { background: #6b77f5 !important; border-color: #6b77f5 !important; }

.navbar .navbar-toggler { border-color: rgba(255,255,255,0.2) !important; border-radius: 8px; }
.navbar .navbar-toggler-icon { filter: invert(1); }
.navbar .navbar-collapse {
  background: rgba(10, 10, 10, 0.95); border-radius: 12px; padding: 8px 12px;
  margin-top: 8px; border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(12px);
}
@media (min-width: 992px) {
  .navbar .navbar-collapse { background: transparent; border: none; padding: 0; margin-top: 0; backdrop-filter: none; }
}

.hero.component {
  position: relative; background-size: cover;
  background-position: center; overflow: hidden;
  min-height: 80vh; display: flex; align-items: center;
}
.hero .bg-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(10,10,10,0.85) 50%, rgba(0,0,0,0.98) 100%);
}
.hero .container { position: relative; z-index: 1; }

.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.hero-particle {
  position: absolute; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: .6; }
  100% { transform: translateY(-120px) scale(1.2); opacity: 0; }
}

.hero-animate {
  opacity: 0; transform: translateY(28px);
  animation: hero-fade-up .75s cubic-bezier(.22,1,.36,1) forwards;
}
@keyframes hero-fade-up { to { opacity:1; transform:translateY(0); } }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }
.delay-5 { animation-delay: .7s; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  border-radius: 20px; padding: 5px 14px; font-size: .75rem;
  font-weight: 600; letter-spacing: .08em; color: #ffffff;
  text-transform: uppercase; margin-bottom: 18px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
}
.hero-badge svg { width: 13px; height: 13px; fill: #ffffff; animation: pulse-icon 2s ease-in-out infinite; }
@keyframes pulse-icon { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.6; transform:scale(1.2); } }

.hero h1 { color: #ffffff !important; font-weight: 800; letter-spacing: -.02em; text-shadow: 0 4px 30px rgba(0,0,0,.8); line-height: 1.15; }
.hero h1 .h1-accent { color: var(--cl-accent); text-shadow: 0 0 20px rgba(38,115,214,0.6); }
.hero .content p { color: var(--cl-text-dim) !important; font-size: 1.05rem; line-height: 1.7; max-width: 520px; }

.hero-icon-row {
  display: flex !important; flex-wrap: wrap !important; gap: 10px 18px !important;
  margin-bottom: 26px !important; width: 100% !important; max-width: 100% !important;
  justify-content: center !important; align-items: center !important;
}
.hero-icon-chip {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 6px 13px;
  font-size: .8rem; font-weight: 500; color: var(--cl-text-dim);
}
.hero-icon-chip svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; flex-shrink: 0; }

.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 8px; }
.btn-hero {
  display: inline-flex; align-items: center; gap: 9px;
  border-radius: 10px; padding: 12px 26px; font-weight: 600; font-size: .92rem;
  letter-spacing: .02em; transition: all .2s; text-decoration: none;
}
.btn-hero.primary {
  background: var(--cl-accent); color: #fff; border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 6px 30px rgba(38,115,214,0.35);
}
.btn-hero.primary:hover { background: #2f82ee; transform: translateY(-2px); }
.btn-hero.ghost {
  background: rgba(255,255,255,0.06); color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-hero.ghost:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.btn-hero svg { width: 17px; height: 17px; flex-shrink: 0; }

.stats-wrapper { margin-top: 30px; }
.stats { display: flex; justify-content: center; gap: 48px; }
.stats > div { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.stats .value { font-size: 1.7rem; font-weight: 800; color: #fff; line-height: 1; }
.stats .label { font-size: .75rem; color: var(--cl-text-muted); letter-spacing: .04em; }

/* ============ FEATURES ============ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.feature-card {
  position: relative; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09); border-radius: 16px;
  padding: 26px 24px; transition: transform .2s, border-color .2s, background .2s;
  overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--cl-accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(38,115,214,0.4); background: rgba(38,115,214,0.06); }
.feature-card:hover::before { opacity: 1; }
.feature-card .icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(38,115,214,0.15); border: 1px solid rgba(38,115,214,0.35);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feature-card .icon svg { width: 22px; height: 22px; fill: none; stroke: #6ba4ee; stroke-width: 1.7; }
.feature-card h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 8px; }
.feature-card p { font-size: .85rem; color: var(--cl-text-muted); line-height: 1.65; margin: 0; }
.feature-card .tag {
  display: inline-block; margin-top: 14px; font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; color: #6ba4ee;
  background: rgba(38,115,214,0.12); border: 1px solid rgba(38,115,214,0.25);
  padding: 3px 10px; border-radius: 20px;
}

/* ============ HERO SPLIT (menu UI on the right) ============ */
.hero-split {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2.5rem; padding: 4rem 0 2rem;
}
.hero-left { flex: 1 1 auto; min-width: 0; text-align: left; }
.hero-right { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; }
.hero-left .hero-icon-row,
.hero-left .hero-buttons,
.hero-left .stats-wrapper .stats { justify-content: flex-start; }
.hero-left .content p { margin-left: 0; }
.hero-right .menu-static { pointer-events: auto; }
.hero-right #drax-menu-frame {
  width: 640px; height: 520px;
  border: none;
  background: transparent;
  overflow: hidden;
  margin-left: 4rem;
}
@media (max-width: 1500px) {
  .hero-right #drax-menu-frame { width: 560px; height: 460px; margin-left: 2.5rem; }
}
@media (max-width: 1200px) {
  .hero-right #drax-menu-frame { width: 500px; height: 410px; margin-left: 2rem; }
}

/* ============ DOWNLOAD / REDEEM ============ */
.panel-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 30px;
}
.panel-card h3 { font-weight: 700; font-size: 1.25rem; margin-bottom: 6px; }
.panel-card .sub { color: var(--cl-text-muted); font-size: .87rem; margin-bottom: 20px; }
.panel-card .form-label { color: var(--cl-text-dim); font-size: .85rem; font-weight: 500; }
.panel-card .form-control {
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; border-radius: 9px; padding: 11px 14px;
}
.panel-card .form-control:focus {
  background: rgba(0,0,0,0.6); border-color: var(--cl-accent);
  box-shadow: 0 0 0 3px rgba(38,115,214,0.18); color: #fff;
}
.panel-card .form-control::placeholder { color: rgba(255,255,255,0.3); }
.btn-solid {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--cl-accent); color: #fff; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 9px; padding: 11px 20px; font-weight: 600; font-size: .9rem;
  transition: all .2s; text-decoration: none; width: 100%;
}
.btn-solid:hover { background: #2f82ee; color: #fff; transform: translateY(-1px); }
.btn-solid svg { width: 16px; height: 16px; }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: rgba(255,255,255,0.05); color: #fff;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 9px;
  padding: 11px 20px; font-weight: 600; font-size: .9rem;
  transition: all .2s; text-decoration: none; width: 100%;
}
.btn-outline:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-discord-solid {
  background: #5865F2; border-color: #5865F2; color: #fff;
}
.btn-discord-solid:hover { background: #6b77f5; border-color: #6b77f5; color: #fff; }

.dl-requirements { margin-top: 22px; }
.dl-requirements .req {
  display: flex; align-items: center; gap: 10px;
  font-size: .82rem; color: var(--cl-text-muted); margin-bottom: 8px;
}
.dl-requirements .req svg { width: 15px; height: 15px; flex-shrink: 0; }
.dl-requirements .req .ok { color: #4ade80; }
.dl-requirements .req .bad { color: #f87171; }

.license-row {
  display: flex; align-items: center; gap: 12px;
  background: rgba(0,0,0,0.45); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 12px;
}
.license-row .key { font-family: 'Consolas', monospace; font-size: .85rem; color: #8fd3ff; flex: 1; word-break: break-all; }
.license-row .status {
  font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px; white-space: nowrap;
}
.license-row .status.active { color: #4ade80; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3); }
.license-row .status.expired { color: #f87171; background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); }
.license-row .status.used { color: #fbbf24; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.3); }

/* ============ LOGIN / REGISTER ============ */
.auth-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 40px 16px;
}
.auth-card {
  width: 100%; max-width: 440px;
  background: rgba(12,12,14,0.92); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 38px 34px;
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
}
.auth-card .logo { text-align: center; margin-bottom: 22px; }
.auth-card .logo img, .auth-card .logo svg { width: 54px; height: 54px; margin-bottom: 10px; }
.auth-card h2 { font-weight: 700; font-size: 1.4rem; margin-bottom: 4px; }
.auth-card .sub { color: var(--cl-text-muted); font-size: .85rem; margin-bottom: 26px; }
.auth-card .form-label { color: var(--cl-text-dim); font-size: .84rem; font-weight: 500; }
.auth-card .form-control {
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; border-radius: 10px; padding: 12px 14px;
}
.auth-card .form-control:focus {
  background: rgba(0,0,0,0.6); border-color: var(--cl-accent);
  box-shadow: 0 0 0 3px rgba(38,115,214,0.18); color: #fff;
}
.auth-card .form-control::placeholder { color: rgba(255,255,255,0.3); }
.divider-auth {
  display: flex; align-items: center; gap: 14px; margin: 22px 0;
  color: var(--cl-text-muted); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase;
}
.divider-auth::before, .divider-auth::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.auth-foot { text-align: center; margin-top: 20px; font-size: .84rem; color: var(--cl-text-muted); }

.auth-back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cl-text-muted); font-size: .84rem; text-decoration: none;
  margin-bottom: 16px; transition: color .2s;
}
.auth-back:hover { color: #6ba4ee; }
.auth-foot a { color: #6ba4ee; text-decoration: none; font-weight: 500; }
.auth-foot a:hover { text-decoration: underline; }
.auth-msg { display: none; border-radius: 10px; padding: 11px 14px; font-size: .84rem; margin-bottom: 16px; }
.auth-msg.show { display: block; }
.auth-msg.error { background: rgba(248,113,113,0.1); border: 1px solid rgba(248,113,113,0.3); color: #fca5a5; }
.auth-msg.success { background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.3); color: #86efac; }

/* ============ FAQ / FOOTER ============ */
.accordion-item {
  background: rgba(255,255,255,0.03) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  border-radius: 12px !important; margin-bottom: 12px; overflow: hidden;
}
.accordion-button {
  background: transparent !important; color: var(--cl-text) !important;
  font-weight: 500; font-size: .92rem; padding: 16px 20px;
}
.accordion-button:not(.collapsed) { box-shadow: none !important; }
.accordion-button::after { filter: invert(1); }
.accordion-body { color: var(--cl-text-muted); font-size: .87rem; }
.accordion-body a { color: #6ba4ee; }

.socials .social {
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; padding: 18px 20px; color: var(--cl-text);
  text-decoration: none; transition: all .2s; margin-bottom: 14px;
}
.socials .social:hover { border-color: rgba(38,115,214,0.4); transform: translateY(-2px); background: rgba(38,115,214,0.06); }
.socials .social .left { display: flex; align-items: center; gap: 12px; font-weight: 600; font-size: .92rem; }
.socials .social .right svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 1.6; opacity: .7; }

.footer.component {
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(to bottom, rgba(10,10,10,0.9), #000);
}
.footer h5 { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cl-text-dim); margin-bottom: 14px; }
.footer .nav-link { color: var(--cl-text-muted) !important; font-size: .85rem; padding: 3px 0 !important; }
.footer .nav-link:hover { color: #fff !important; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0;
  text-align: center; color: var(--cl-text-muted); font-size: .8rem;
}

/* ============ MODALS ============ */
.modal-content {
  background: rgba(14,14,16,0.97) !important; border: 1px solid rgba(255,255,255,0.1) !important;
  border-radius: 16px !important; backdrop-filter: blur(20px);
}
.modal-header { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
.modal-title { font-weight: 700; font-size: 1.1rem; }
.btn-close { filter: invert(1); }
.modal .form-label { color: var(--cl-text-dim); font-size: .84rem; font-weight: 500; }
.modal .form-control {
  background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.14);
  color: #fff; border-radius: 9px; padding: 11px 14px;
}
.modal .form-control:focus {
  background: rgba(0,0,0,0.6); border-color: var(--cl-accent);
  box-shadow: 0 0 0 3px rgba(38,115,214,0.18); color: #fff;
}
.modal .form-control::placeholder { color: rgba(255,255,255,0.3); }

.toast-drax {
  background: rgba(10,10,10,0.95); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; border-radius: 12px;
}

/* ============ DASHBOARD ============ */
.dash-card {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px; padding: 24px; height: 100%;
}
.dash-card h5 { font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--cl-text-muted); margin-bottom: 14px; }
.dash-stat { display: flex; align-items: center; gap: 14px; }
.dash-stat .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.dash-stat .lbl { font-size: .78rem; color: var(--cl-text-muted); }
.dash-stats { display: flex; gap: 36px; }
.dash-stats .dash-stat .v { font-size: 1.8rem; font-weight: 800; line-height: 1; color: #fff; }
.dash-stats .dash-stat .l { font-size: .75rem; color: var(--cl-text-muted); margin-top: 4px; }
.badge-status {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; white-space: nowrap;
}
.badge-status.ok { color: #4ade80; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3); }
.badge-status.bad { color: #f87171; background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); }
.badge-status.warn { color: #fbbf24; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.3); }

/* ============ LOADING PAGE ============ */
.loading-icon {
  width: 74px; height: 74px; margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; color: var(--cl-primary);
  border-radius: 22px; border: 1px solid rgba(107,164,238,0.25);
  background: rgba(107,164,238,0.08);
}
.loading-card h1 { margin-bottom: 8px; }
.loading-spinner {
  width: 42px; height: 42px; border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.12);
  border-top-color: var(--cl-primary);
  animation: drx-spin 0.8s linear infinite;
}
@keyframes drx-spin { to { transform: rotate(360deg); } }
.loading-card code { font-size: .8rem; word-break: break-all; }

/* ============ CHANGELOG ============ */
.changelog-entry { margin-bottom: 18px; }
.changelog-entry.current { border-color: rgba(74,222,128,0.35); }
.badge-version {
  display: inline-block; font-size: .78rem; font-weight: 700;
  letter-spacing: .06em; padding: 4px 12px; border-radius: 8px;
  color: #6ba4ee; background: rgba(107,164,238,0.12); border: 1px solid rgba(107,164,238,0.3);
}
.badge-date { font-size: .72rem; color: var(--cl-text-muted); }
.badge-state {
  display: inline-block; font-size: .66rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 20px; white-space: nowrap;
}
.badge-state.valid { color: #4ade80; background: rgba(74,222,128,0.12); border: 1px solid rgba(74,222,128,0.3); }
.badge-state.expired { color: #fbbf24; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.3); }
.badge-state.blacklisted { color: #fb923c; background: rgba(251,146,60,0.12); border: 1px solid rgba(251,146,60,0.3); }
.badge-state.banned { color: #f87171; background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); }
.badge-state.invalid { color: #f87171; background: rgba(248,113,113,0.12); border: 1px solid rgba(248,113,113,0.3); }

/* ============ RESPONSIVE ============ */
@media (max-width: 991px) {
  .hero-split { flex-direction: column; gap: 3rem; }
  .hero-left { text-align: center; }
  .hero-left .hero-icon-row,
  .hero-left .hero-buttons,
  .hero-left .stats-wrapper .stats { justify-content: center; }
  .hero-left .content p { margin-left: auto; margin-right: auto; }
  .hero-right { display: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 70vh; }
  .stats { gap: 28px; }
  .stats .value { font-size: 1.3rem; }
}/* ============ AUTH PAGE (login/register) ============ */
.auth-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
  background:
    radial-gradient(ellipse at top, rgba(38, 115, 214, 0.10), transparent 60%),
    var(--cl-bg, #07080b);
}

.auth-wrapper { width: 100%; max-width: 440px; }

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: .12em;
}

.auth-logo img { width: 44px; height: 44px; }

.auth-card h1 {
  font-weight: 700;
  font-size: 1.45rem;
  margin-bottom: 6px;
  text-align: center;
}

.auth-sub {
  color: var(--cl-text-muted);
  font-size: .87rem;
  margin-bottom: 26px;
  text-align: center;
}/* ============ PRICING ============ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(38, 115, 214, 0.4);
  background: rgba(38, 115, 214, 0.06);
}

.pricing-card.featured {
  border-color: rgba(38, 115, 214, 0.55);
  background: rgba(38, 115, 214, 0.08);
  box-shadow: 0 0 40px rgba(38, 115, 214, 0.15);
}

.pricing-card h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cl-text-muted);
}

.pricing-card .price {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card .price .currency {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 2px;
  color: var(--cl-text-muted);
}

.pricing-desc { font-size: .84rem; color: var(--cl-text-muted); margin-bottom: 20px; }

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  width: 100%;
  text-align: left;
}

.pricing-card ul li {
  font-size: .85rem;
  color: #cfd5dd;
  padding: 6px 0 6px 24px;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 2px;
  color: #4ade80;
  font-weight: 700;
}

.pricing-card .btn-hero { width: 100%; justify-content: center; }

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cl-accent, #2673d6);
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}