/* =============================================
   SILENT — Premium Dark Design System v6 (Auth & Gmail)
   Monochrome: Black · Off-white · Grays · Auth Modal
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&display=swap');

/* ---------- CSS Reset & Native Cursor ---------- */
*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

*::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Standard Mouse Cursor & Particle Trail Canvas Setup */
html, body {
  cursor: default;
}

a, button, input, select, textarea, label, summary, .btn, .prod-card, .plan-card, .cat-pill, .pill-nav-link, .custom-lang-btn, .btn-showcase-hover, [role="button"] {
  cursor: pointer !important;
}

#cursor-trail-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none !important;
  z-index: -1 !important;
  display: block !important;
}

.custom-cursor-dot {
  display: none !important;
}

.custom-cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(34, 197, 94, 0.85);
  border-radius: 50%;
  pointer-events: none !important;
  z-index: -1 !important;
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.5);
  opacity: 0;
  transition: opacity 0.2s ease, width 0.2s ease-out, height 0.2s ease-out, border-color 0.2s, background-color 0.2s;
  display: block !important;
}

/* Hover State on Interactive Elements */
body.cursor-hover .custom-cursor-ring {
  width: 52px;
  height: 52px;
  border-color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.65);
}



html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #000000 !important;
  color: #e8e6e3;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- Tokens ---------- */
:root {
  /* Colors - Monochrome refined (Adapted to first image palette) */
  --black:     #000000;
  --black-2:   #141414; /* chinese-black */
  --black-3:   #1B1B1B; /* eerie-black */
  --black-4:   #2E2E2E; /* night rider */
  --gray-dark: #2E2E2E; /* night rider */
  --gray:      #7e8590; /* Uiverse sidebar label gray */
  --gray-mid:  #99999d; /* Uiverse changelog label gray */
  --gray-light:#a8a8bc;
  --gray-pale: #E1E1E1; /* chinese-white */
  --offwhite:  #F3F3F3; /* anti-flash-white */
  --white:     #FFFFFF; /* white */
  --pure:      #FFFFFF;

  /* Semantic */
  --bg:          var(--black);
  --bg-2:        var(--black-2);
  --bg-card:     var(--black-3);
  --bg-hover:    var(--black-4);
  --border:      rgba(255,255,255,0.055);
  --border-md:   rgba(255,255,255,0.09);
  --border-hi:   rgba(255,255,255,0.16);
  --text:        var(--white);
  --text-2:      var(--gray-pale);
  --text-muted:  var(--gray-mid);
  --text-dim:    var(--gray);

  /* Glass tokens */
  --glass-bg:       rgba(255, 255, 255, 0.028);
  --glass-bg-hover: rgba(255, 255, 255, 0.045);
  --glass-border:   rgba(255, 255, 255, 0.08);
  --glass-border-hi:rgba(255, 255, 255, 0.15);
  --glass-inset:    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  --glass-shadow:   0 20px 60px rgba(0, 0, 0, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);

  /* Radii */
  --r-sm:   0.375rem;
  --r:      0.75rem;
  --r-md:   1rem;
  --r-lg:   1.25rem;
  --r-xl:   1.75rem;
  --r-full: 9999px;

  /* Motion */
  --ease-out:  cubic-bezier(0.0, 0, 0.2, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --spring:    cubic-bezier(0.34, 1.56, 0.64, 1);

  --t-fast:   0.15s;
  --t:        0.25s;
  --t-slow:   0.45s;
  --t-xslow:  0.65s;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.6);
  --shadow:    0 8px 24px rgba(0,0,0,0.7);
  --shadow-lg: 0 16px 56px rgba(0,0,0,0.8);
  --shadow-xl: 0 28px 88px rgba(0,0,0,0.85);
}

main {
  flex: 1;
  display: block;
  width: 100%;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
a, button, input, select, textarea, label, summary, .prod-card, .plan-card, .cat-pill, .pill-nav-link, .btn, [role="button"] {
  pointer-events: auto !important;
}

.hidden,
.hidden.portal-dashboard-layout,
.hidden.user-dl-modal,
.hidden.portal-dashboard-modal,
.hidden.cart-overlay,
.hidden.cart-drawer,
.hidden.auth-overlay,
.hidden.checkout-modal,
.hidden.admin-modal,
.hidden.prod-details-modal,
.hidden.video-showcase-card-modal,
.hidden.sc-modal,
.hidden.discord-oauth-modal,
div.hidden,
section.hidden,
article.hidden,
aside.hidden,
header.hidden,
nav.hidden,
form.hidden,
button.hidden {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  z-index: -9999 !important;
  animation: none !important;
}
.hide-mobile { display: inline; }
.mobile-only { display: none; }
.scroll-offset { scroll-margin-top: 88px; }
.text-center { text-align: center; }

/* Body Instant Full Opacity */
body {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

.blur-scroll {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

.blur-scroll.in-focus {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

/* =============================================
   BACKGROUND FX
   ============================================= */
.bg-fx {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}
#snowflake-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 0%, black 20%, transparent 100%);
}
.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.glow-top {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.018) 0%, transparent 60%);
}
.glow-side {
  position: absolute;
  top: 10%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.01), transparent 70%);
}

/* =============================================
   HEADER
   ============================================= */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  background: rgba(5, 5, 7, 0.65);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04), 0 4px 24px rgba(0,0,0,0.4);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
  animation: headerSlideDown 0.5s var(--ease) both;
}
@keyframes headerSlideDown {
  from { opacity: 0; transform: translateY(-100%); }
  to   { opacity: 1; transform: translateY(0); }
}
.sticky-header.scrolled {
  background: rgba(5, 5, 7, 0.85);
  border-color: rgba(255, 255, 255, 0.065);
}

.header-inner {
  height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* Logo fills left cell, left-aligned */
.logo-link { justify-self: start; }

/* Nav fills center cell */
.pill-nav { justify-self: center; }

/* Right actions fill right cell, right-aligned */
.nav-right { justify-self: end; }

/* ── Logo ── */
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
  padding: 0.25rem 0.375rem;
  border-radius: var(--r-md);
  transition: opacity var(--t) var(--ease);
  text-decoration: none;
}
.logo-link:hover { opacity: 0.8; }
.logo-img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.0625rem;
  letter-spacing: -0.03em;
  color: var(--white);
}
.logo-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.4;
  align-self: flex-start;
  margin-top: 5px;
}

/* Badge */
.verified-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.45rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--gray-pale);
  letter-spacing: 0.05em;
}
.verified-badge svg { width: 9px; height: 9px; }

/* ══════════════════════════════════════════════
   PILL NAV — Raycast-style floating nav bar
   ══════════════════════════════════════════════ */
.pill-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.3rem 0.375rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-full);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.07);
  white-space: nowrap;
  animation: pillNavIn 0.6s 0.1s var(--spring) both;
}
@keyframes pillNavIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .pill-nav { display: none; }
}

/* Divider inside pill */
.pill-nav-divider {
  width: 1px;
  height: 1.125rem;
  background: rgba(255,255,255,0.12);
  margin: 0 0.25rem;
  flex-shrink: 0;
}

/* Login link — subtly different */
.pill-nav-link.pill-nav-login {
  color: var(--gray-pale);
  font-weight: 600;
}
.pill-nav-link.pill-nav-login:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}

/* Nav Links */
.pill-nav-link {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--r-full);
  transition: color var(--t) var(--ease), background var(--t) var(--ease);
  white-space: nowrap;
  position: relative;
  text-decoration: none;
}
.pill-nav-link::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--white);
  border-radius: 99px;
  transform: translateX(-50%);
  transition: width var(--t) var(--ease);
  opacity: 0.5;
}
.pill-nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.pill-nav-link:hover::after {
  width: 60%;
}
.pill-nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.pill-nav-link.active::after {
  width: 60%;
  opacity: 1;
}

/* Search Button inside pill */
.pill-nav-search-wrap {
  position: relative;
  margin-left: 0.25rem;
}
.pill-nav-search-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  height: 1.875rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--t) var(--ease);
  white-space: nowrap;
}
.pill-nav-search-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--border-hi);
  color: var(--gray-light);
}
.pill-search-kbd {
  font-size: 0.6rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 0.2rem;
  padding: 0.08rem 0.3rem;
  color: var(--text-dim);
  font-family: inherit;
  margin-left: 0.125rem;
}
.pill-search-input {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 1.875rem;
  background: rgba(15,15,15,0.95);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-full);
  padding: 0 0.875rem;
  color: var(--white);
  font-size: 0.8125rem;
  font-family: inherit;
  outline: none;
  opacity: 0;
  pointer-events: none;
  transition: width 0.3s var(--ease), opacity 0.2s;
  z-index: 10;
}
.pill-search-input.open {
  width: 240px;
  opacity: 1;
  pointer-events: auto;
}
.pill-search-input::placeholder { color: var(--text-dim); }

/* Search dropdown stays positioned below */
.pill-nav-search-wrap .search-dropdown {
  top: calc(100% + 0.5rem);
  right: 0;
  left: auto;
  width: 320px;
}

/* ── Search (legacy, keep for mobile bar) ── */
.search-wrap {
  position: relative;
  display: none;
}
@media (min-width: 768px) { .search-wrap { display: block; } }

.search-input-el {
  width: 280px;
  height: 2.375rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0 1rem 0 2.625rem;
  color: var(--white);
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.search-input-el::placeholder { color: var(--text-dim); }
.search-input-el:focus {
  border-color: var(--border-hi);
  background: rgba(255,255,255,0.06);
}
.search-icon {
  position: absolute;
  left: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.9375rem;
  height: 0.9375rem;
  color: var(--text-dim);
  pointer-events: none;
}
.search-kbd {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.6875rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md);
  border-radius: 0.25rem;
  padding: 0.1rem 0.35rem;
  pointer-events: none;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: var(--black-2);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  max-height: 380px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-md) transparent;
  z-index: 200;
  animation: dropIn var(--t-slow) var(--spring) both;
}
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

/* Mobile search bar */
.mobile-search-bar {
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(8,8,8,0.95);
  animation: slideDown var(--t-slow) var(--ease-out) both;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-search-bar .search-input-el { width: 100%; border-radius: var(--r); }
.mobile-search-bar .search-wrap { display: block; width: 100%; }



/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: inherit;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: var(--r);
  transition:
    background var(--t) var(--ease),
    border-color var(--t) var(--ease),
    color var(--t) var(--ease),
    transform var(--t-fast) var(--ease),
    box-shadow var(--t) var(--ease),
    opacity var(--t) var(--ease);
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:active::after { opacity: 0.06; }
.btn:active { transform: scale(0.97); }

/* Sizes */
.btn-xs { height: 1.875rem; padding: 0 0.75rem; font-size: 0.75rem; border-radius: var(--r-sm); }
.btn-sm { height: 2.125rem; padding: 0 0.875rem; font-size: 0.8125rem; }
.btn-md { height: 2.375rem; padding: 0 1.125rem; font-size: 0.875rem; }
.btn-lg { height: 2.75rem;  padding: 0 1.5rem;   font-size: 0.9375rem; }
.btn-xl { height: 3.25rem;  padding: 0 2rem;     font-size: 1.0625rem; border-radius: var(--r-md); }

/* Variants */
.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-white:hover {
  background: var(--pure);
  box-shadow: 0 4px 16px rgba(255,255,255,0.12), inset 0 1px 0 rgba(255,255,255,0.3);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text-2);
  border-color: var(--border);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-md);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text-2);
  border-color: var(--border-md);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hi);
  color: var(--white);
}

.btn-icon-only {
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
  border-radius: var(--r);
}

/* =============================================
   AUTH MODAL STYLES (GMAIL & REGISTER)
   ============================================= */
.auth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(440px, 92vw);
  background: linear-gradient(160deg, rgba(22, 22, 28, 0.97) 0%, rgba(12, 12, 15, 0.99) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.8), 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  z-index: 160;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-slow) var(--spring), opacity var(--t-slow) var(--ease);
  backdrop-filter: blur(40px) saturate(200%);
  -webkit-backdrop-filter: blur(40px) saturate(200%);
}
.auth-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.auth-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.auth-close:hover { background: rgba(255,255,255,0.15); }

.auth-inner { padding: 2rem; }

.auth-tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.025);
  padding: 0.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  margin: 1.25rem 0 1.5rem;
}
.auth-tab {
  flex: 1;
  padding: 0.5rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  border-radius: 8px;
  transition: all var(--t) var(--ease);
  letter-spacing: 0.01em;
}
.auth-tab.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  width: 100%;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all var(--t) var(--ease);
  backdrop-filter: blur(10px);
}
.btn-oauth:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.oauth-svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.25rem 0;
  color: var(--text-dim);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border);
}
.auth-divider span { padding: 0 0.75rem; }

.auth-form { display: flex; flex-direction: column; gap: 0.25rem; }
.auth-submit-btn { width: 100%; margin-top: 1rem; }

.user-profile-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem 0.25rem 0.35rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--white);
  cursor: pointer;
  transition: background var(--t);
}
.user-profile-pill:hover { background: rgba(255,255,255,0.08); }
.user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

/* =============================================
   CART DRAWER & OVERLAY
   ============================================= */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 149;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-overlay:not(.hidden),
.cart-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(460px, 100vw);
  height: 100dvh;
  z-index: 150;
  background: var(--black-2);
  border-left: 1px solid var(--border-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: transform 0.3s var(--ease-out), opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer:not(.hidden),
.cart-drawer.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
@keyframes drawerIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.cart-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cart-count-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  min-width: 1.375rem;
  height: 1.375rem;
  padding: 0 0.375rem;
  color: var(--text-2);
}
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-md) transparent;
}
.cart-foot {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0 !important;
}
.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r);
  margin-bottom: 0.75rem;
}
.cart-total-label { font-size: 0.875rem; color: var(--text-muted); }
.cart-total-val { font-size: 1rem; font-weight: 700; }
.cart-checkout { display: flex; width: 100%; height: 2.75rem; font-size: 0.9375rem; border-radius: var(--r-md); }

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0.75rem;
  text-align: center;
  padding: 2rem;
}
.cart-empty-state .empty-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.cart-empty-state h5 { font-size: 1rem; font-weight: 600; }
.cart-empty-state p { font-size: 0.875rem; color: var(--text-muted); max-width: 220px; line-height: 1.5; }

/* =============================================
   PURINCASH CHECKOUT MODAL STYLES
   ============================================= */
.checkout-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(560px, 94vw);
  max-height: 90vh;
  background: var(--black-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  z-index: 160;
  overflow-y: auto;
  scrollbar-width: thin;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-slow) var(--spring), opacity var(--t-slow) var(--ease);
}
.checkout-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.checkout-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
}
.checkout-close:hover { background: rgba(255,255,255,0.15); }

.checkout-inner { padding: 2rem; }
.checkout-step { transition: opacity var(--t) var(--ease); }

.purin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.625rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 0.75rem;
}

.checkout-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.checkout-header p {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.checkout-summary-box {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1rem;
  margin: 1.25rem 0;
}
.chk-summary-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.chk-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.chk-item-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-2);
}
.chk-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
}
.chk-total { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.125rem; font-weight: 800; }

.chk-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.chk-methods-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
@media (max-width: 520px) { .chk-methods-grid { grid-template-columns: 1fr; } }
.chk-method-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.chk-method-card:hover {
  background: var(--black-4);
  border-color: var(--border-md);
}
.chk-method-card.active {
  border-color: var(--white);
  background: rgba(255,255,255,0.04);
}
.chk-method-radio {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 2px solid var(--text-dim);
  position: relative;
  transition: border-color var(--t);
}
.chk-method-card.active .chk-method-radio {
  border-color: var(--white);
}
.chk-method-card.active .chk-method-radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--white);
}
.chk-method-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  flex: 1;
}
.chk-method-name { font-size: 0.875rem; font-weight: 600; color: var(--white); }
.chk-method-sub { font-size: 0.75rem; color: var(--text-muted); }
.chk-method-icon { width: 1.25rem; height: 1.25rem; color: var(--text-dim); }

.chk-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 480px) { .chk-form-grid { grid-template-columns: 1fr; } }
.chk-field { display: flex; flex-direction: column; gap: 0.35rem; }
.chk-field label { font-size: 0.75rem; font-weight: 600; color: var(--text-muted); }
.chk-field input {
  height: 2.25rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 0.75rem;
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--t);
}
.chk-field input:focus { border-color: var(--border-hi); }
.chk-pay-btn { width: 100%; }

/* Step 2: Payment Box */
.payment-box {
  background: var(--black-3);
  border: 1px solid var(--border-md);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.qr-container {
  width: 180px;
  height: 180px;
  background: #fff;
  padding: 0.5rem;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qr-code-img { width: 100%; height: 100%; object-fit: contain; }
.pix-code-wrap { width: 100%; }
.pix-code-wrap label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.35rem; display: block; }
.copy-input-row { display: flex; gap: 0.5rem; }
.copy-input-row input {
  flex: 1;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0 0.75rem;
  font-size: 0.8125rem;
  font-family: monospace;
  color: var(--text-2);
  outline: none;
}
.status-pulse-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseGreen 1.5s infinite;
}
@keyframes pulseGreen {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.5; }
}

.ltc-info-card { width: 100%; text-align: left; }
.ltc-amount-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-top: 0.25rem;
}

.chk-timer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-muted);
}
.sim-pay-link {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-decoration: underline;
}
.sim-pay-link:hover { color: var(--white); }

/* Step 3: Success */
.success-icon-wrap {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem auto 1.25rem;
}
.success-icon { width: 2.25rem; height: 2.25rem; color: #22c55e; }
.license-key-box {
  background: var(--black-3);
  border: 1px dashed var(--border-hi);
  border-radius: var(--r-md);
  padding: 1.25rem;
  margin-top: 1.5rem;
}
.license-key-box label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.key-display {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-top: 0.5rem;
}

/* =============================================
   HERO
   ============================================= */
.hero-section {
  padding: 6rem 0 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.hero-inner { max-width: 720px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.875rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2rem;
}
.hero-pill-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gray-pale);
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gray-mid);
  font-weight: 300;
  font-size: 0.65em;
  display: block;
  letter-spacing: -0.02em;
  margin-top: 0.25rem;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  overflow: hidden;
  width: fit-content;
  margin: 0 auto;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.09);
}
.stat-item {
  padding: 1.25rem 2.5rem;
  text-align: center;
  position: relative;
  transition: background var(--t) var(--ease);
}
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}
.stat-num {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.stat-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.sec-eyebrow {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}
.sec-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.sec-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: -0.75rem auto 2rem;
  line-height: 1.6;
}
.sec-pad { padding: 3.5rem 0; }
.sec-pad-sm { padding: 1.5rem 0 2.5rem; }

/* =============================================
   COMPACT MINIMAL CATEGORIES
   ============================================= */
.cats-grid-compact {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-full);
  color: var(--text-2);
  transition: all var(--t) var(--ease);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.cat-pill:hover,
.cat-pill.active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}
.cat-pill-icon {
  width: 1rem;
  height: 1rem;
  color: var(--text-muted);
  transition: color var(--t);
}
.cat-pill:hover .cat-pill-icon { color: var(--white); }
.cat-pill-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}

/* =============================================
   PRODUCTS GRID (Clean, Minimal, Badge-free)
   ============================================= */
.prod-section { margin-top: 3rem; }
.prod-section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.875rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-md);
  border-radius: var(--r);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.prod-section-label svg { width: 0.875rem; height: 0.875rem; opacity: 0.7; }

.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}
@media (max-width: 1024px) { .prod-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .prod-grid { grid-template-columns: repeat(1, 1fr); } }

.prod-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  cursor: pointer;
  position: relative;
  transition:
    background var(--t) var(--ease),
    border-color var(--t) var(--ease),
    transform var(--t) var(--spring),
    box-shadow var(--t) var(--ease);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.prod-card:hover {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.065) 0%, rgba(255, 255, 255, 0.025) 100%);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.65), inset 0 1px 0 rgba(255,255,255,0.15);
}

/* Compact Image area */
.prod-img {
  height: 135px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-slow) var(--ease);
}
.prod-card:hover .prod-img { transform: scale(1.01); }

.prod-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform var(--t-slow) var(--ease), filter var(--t-slow) var(--ease);
}
.prod-card:hover .prod-thumb-img {
  transform: scale(1.06);
  filter: brightness(1.12);
}

.prod-img-gradient {
  position: absolute;
  inset: 0;
  transition: filter var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
}
.prod-card:hover .prod-img-gradient {
  filter: brightness(1.15);
  transform: scale(1.04);
}
.prod-img-icon {
  position: relative;
  z-index: 1;
  width: 1.75rem;
  height: 1.75rem;
  color: rgba(255,255,255,0.7);
  transition: transform var(--t-slow) var(--spring), color var(--t);
}
.prod-card:hover .prod-img-icon {
  transform: scale(1.15);
  color: #ffffff;
}
.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 5;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.prod-card:hover .prod-img-overlay {
  opacity: 1;
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.45);
}
.btn-showcase-hover {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 99px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.5);
  transform: translateY(6px) scale(0.95);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.prod-card:hover .btn-showcase-hover {
  transform: translateY(0) scale(1);
}
.btn-showcase-hover:hover {
  background: #ffffff;
  transform: scale(1.05) !important;
  box-shadow: 0 6px 20px rgba(255,255,255,0.3);
}

/* Compact Info */
.prod-info { padding: 0.875rem 1rem; }
.prod-name {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-2);
  margin-bottom: 0.25rem;
  letter-spacing: -0.01em;
  transition: color var(--t);
}
.prod-card:hover .prod-name { color: var(--white); }
.prod-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.prod-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.prod-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
}

/* =============================================
   SHOWCASE SECTION
   ============================================= */
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.sc-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dim);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  transition: all var(--t) var(--ease);
}
.sc-tab:hover {
  color: var(--text-2);
  border-color: var(--border-md);
}
.sc-tab.active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.showcase-display {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .showcase-display { grid-template-columns: 1fr; } }

.sc-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.008) 100%);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: border-color var(--t-slow) var(--ease), transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}
.sc-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.1);
}

.sc-media-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}
.sc-placeholder-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #141414 0%, #1f1f1f 50%, #111111 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-placeholder-bg.alt {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #262626 100%);
}
.sc-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}
.sc-overlay-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.sc-play-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform var(--t-slow) var(--spring), background var(--t), border-color var(--t);
}
.sc-card:hover .sc-play-btn {
  transform: scale(1.15);
  background: var(--white);
  border-color: var(--white);
}
.sc-play-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
  margin-left: 2px;
  transition: color var(--t);
}
.sc-card:hover .sc-play-icon { color: var(--black); }

.sc-badge-hd {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  color: var(--gray-pale);
}
.sc-watermark {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}

.sc-card-caption {
  padding: 1.25rem;
}
.sc-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.sc-title-row h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
}
.sc-tag {
  font-size: 0.6875rem;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}
.sc-card-caption p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Showcase Modal */
.sc-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(1080px, 94vw);
  background: #08080a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.8);
  z-index: 260;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-slow) var(--spring), opacity var(--t-slow) var(--ease);
}
.sc-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.sc-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 20;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.6);
  border: 1px solid var(--border-md);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t);
  cursor: pointer;
}
.sc-modal-close:hover { background: rgba(255,255,255,0.15); }

.sc-modal-body { padding: 0; }
.sc-modal-video-placeholder {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
}
.sc-modal-play-big { width: 3rem; height: 3rem; color: var(--white); opacity: 0.8; }
.sc-modal-h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 0.35rem; }
.sc-modal-p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   TRUST SECTION
   ============================================= */
.trust-section {
  padding: 4rem 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }

.trust-card {
  background: var(--black-2);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: background var(--t) var(--ease);
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity var(--t-slow);
}
.trust-card:hover { background: var(--black-3); }
.trust-card:hover::before { opacity: 1; }

.trust-icon-box {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t-slow) var(--spring);
}
.trust-card:hover .trust-icon-box {
  background: rgba(255,255,255,0.08);
  border-color: var(--border-hi);
  transform: rotate(-6deg) scale(1.1);
}
.trust-icon-box svg { width: 1.25rem; height: 1.25rem; color: var(--text-2); }
.trust-title { font-size: 0.9375rem; font-weight: 700; letter-spacing: -0.01em; }
.trust-desc { font-size: 0.8125rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================
   FOOTER
   ============================================= */
.footer-wrap {
  margin-top: auto;
  position: relative;
}
.footer-glow-top {
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 250px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.02), transparent 70%);
  pointer-events: none;
}

footer {
  background: rgba(8,8,8,0.95);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.footer-top {
  padding: 3rem 0 2.5rem;
}
.footer-layout {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  max-width: 260px;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
}
.footer-powered {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.footer-cols { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col-title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 0.25rem;
}
.footer-col a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--t) var(--ease);
  width: fit-content;
  position: relative;
}
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 0; height: 1px;
  background: var(--gray-pale);
  transition: width var(--t-slow) var(--ease-out);
}
.footer-col a:hover { color: var(--text-2); }
.footer-col a:hover::after { width: 100%; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
}
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* =============================================
   ICONS & SCROLLBAR
   ============================================= */
.icon-xs { width: 0.75rem; height: 0.75rem; flex-shrink: 0; }
.icon-sm { width: 0.9375rem; height: 0.9375rem; flex-shrink: 0; }
.icon-md { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: #080808; }
::-webkit-scrollbar-thumb { background: #222222; border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: #383838; }

::selection { background: rgba(255,255,255,0.15); color: var(--white); }

/* =============================================
   PRODUCT DETAILS & PLANS MODAL STYLES (Clean & Full Left Showcase)
   ============================================= */
.prod-details-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(880px, 94vw);
  max-height: 90vh;
  background: var(--black-2);
  border: 1px solid var(--border-hi);
  border-radius: 20px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.9), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  z-index: 160;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-slow) var(--spring), opacity var(--t-slow) var(--ease);
}
.prod-details-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.prod-details-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border-md);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.prod-details-close:hover { background: rgba(255,255,255,0.25); }

/* ── 2 COLUMNS LAYOUT (Funções + Planos) ── */
.prod-details-layout-3col {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 480px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .prod-details-layout-3col {
    grid-template-columns: 1fr;
    max-height: 88vh;
    overflow-y: auto;
  }
}

/* Col 1: Showcase Video / Demo */
.p-col-showcase {
  background: #000;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--border-md);
  display: flex;
  flex-direction: column;
}

/* Col 2: Funções & Informações */
.p-col-features {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border-right: 1px solid var(--border-md);
  overflow-y: auto;
  scrollbar-width: thin;
  background: rgba(255, 255, 255, 0.015);
}

/* Col 3: Planos & Compra */
.p-col-plans {
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.1) transparent;
  background: rgba(0, 0, 0, 0.2);
}

.p-col-header {
  margin-bottom: 0.35rem;
}
.p-col-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: var(--r-sm);
}

.p-features-list-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.p-list-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.p-showcase-container {
  width: 100%;
  height: 100%;
  position: relative;
  background: #060608;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.p-showcase-container .sw-menu-window {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

.p-showcase-container .sw-grid-layout {
  flex: 1 !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.p-showcase-container .sw-sidebar {
  width: 190px !important;
  padding: 0.85rem 0.6rem !important;
}

.p-showcase-container .sw-dash-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 0.85rem !important;
}

.p-showcase-container .sw-main-panel {
  padding: 1rem !important;
  overflow-y: auto !important;
}
.p-showcase-iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border: none;
  display: block;
  pointer-events: none;
}
.p-showcase-container video {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  background: #000;
  display: block;
  transform: scale(1.05);
  transform-origin: center center;
}
.p-showcase-video-mask {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: transparent;
  pointer-events: auto;
}

/* ── FLOATING VIDEO SHOWCASE MODAL ── */
.video-showcase-card-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(920px, 94vw);
  max-height: 92vh;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.95);
  z-index: 180;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
}
.video-showcase-card-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.video-showcase-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 30;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.video-showcase-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.08);
}
.video-showcase-header-bar {
  padding: 0.75rem 1.25rem;
  background: rgba(15, 15, 20, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.v-showcase-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.video-showcase-body-frame {
  flex: 1;
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-showcase-body-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  display: block;
}

/* Right Side: Details & Feature List & Stacked Plans */
.prod-details-right {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-height: 85vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-hi) transparent;
}

.p-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin: 0.75rem 0 1.25rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.875rem;
}
.p-feature-chip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-2);
  font-weight: 500;
}
.p-feature-chip svg { width: 0.875rem; height: 0.875rem; color: #22c55e; flex-shrink: 0; }
.p-tags-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.5rem;
}
.p-game-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-sm);
}
.p-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  padding: 0.15rem 0.5rem;
  border-radius: var(--r-full);
  letter-spacing: 0.05em;
}
.p-modal-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.4rem;
}
.p-modal-p {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* ── Premium Plan Card Selector ───────────────── */
.plans-list-stacked {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.875rem 1.125rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border-md);
  background: var(--black-3);
  cursor: pointer;
  transition: all 0.2s var(--ease);
  position: relative;
  overflow: hidden;
}

.plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.03), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.plan-card:hover {
  border-color: var(--border-hi);
  background: var(--black-4);
  transform: translateX(2px);
}

.plan-card:hover::before { opacity: 1; }

.plan-card.active {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1), inset 0 1px 0 rgba(255,255,255,0.06);
}

.plan-card.active::before { opacity: 1; }

.plan-card.plan-card-lifetime.active {
  border-color: rgba(34,197,94,0.5);
  background: rgba(34,197,94,0.05);
  box-shadow: 0 0 0 1px rgba(34,197,94,0.2), 0 0 20px rgba(34,197,94,0.06);
}

/* Radio dot */
.plan-card-radio {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  border: 2px solid var(--border-hi);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}

.plan-card.active .plan-card-radio {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.plan-card.plan-card-lifetime.active .plan-card-radio {
  border-color: #22c55e;
}

.plan-card-radio-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: transparent;
  transition: all 0.2s var(--ease);
}

.plan-card.active .plan-card-radio-dot {
  background: var(--white);
  box-shadow: 0 0 6px rgba(255,255,255,0.5);
}

.plan-card.plan-card-lifetime.active .plan-card-radio-dot {
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,0.6);
}

/* Card body */
.plan-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.plan-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.plan-card-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.plan-card-dur {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Badges */
.plan-badge {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.125rem 0.45rem;
  border-radius: var(--r-full);
}

.plan-badge-best {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.3);
}

.plan-badge-popular {
  background: rgba(255,255,255,0.08);
  color: var(--gray-pale);
  border: 1px solid var(--border-hi);
}

/* Price column */
.plan-card-price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
}

.plan-card-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}

.plan-card.plan-card-lifetime.active .plan-card-price {
  color: #22c55e;
}

.plan-card-per {
  font-size: 0.6875rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* Preço por dia nos cards de plano */
.plan-per-day {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #22c55e;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 999px;
  padding: 0.1rem 0.4rem;
  white-space: nowrap;
}

/* =============================================
   ADMIN PANEL & DASHBOARD STYLES
   ============================================= */
.admin-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: min(450px, 92vw);
  background: var(--black-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  z-index: 200;
  padding: 2.25rem 2rem 2rem;
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-slow) var(--spring);
}
.admin-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: var(--r-full);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}
.admin-login-header h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.35rem;
}
.admin-login-header p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}
.admin-login-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.admin-err-msg {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.625rem 0.875rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--r-md);
  color: #ef4444;
  font-size: 0.78125rem;
  font-weight: 600;
}

/* Full Admin Dashboard */
#admin-dash-modal-overlay {
  z-index: 210;
}
.admin-dash-modal {
  position: fixed;
  inset: 1.5rem;
  background: var(--black-1);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  z-index: 220;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.98);
  transition: all var(--t-slow) var(--spring);
}
.admin-dash-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.admin-nav {
  height: 4.25rem;
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.admin-nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.admin-logo-img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-hi);
}
.admin-brand-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
}
.admin-brand-title small {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-weight: 600;
  margin-left: 0.25rem;
}
.admin-user-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-dash-body {
  flex: 1;
  display: grid;
  grid-template-columns: 240px 1fr;
  overflow: hidden;
}
@media (max-width: 840px) {
  .admin-dash-body { grid-template-columns: 1fr; }
}

.admin-sidebar {
  background: var(--black-2);
  border-right: 1px solid var(--border);
  padding: 1.25rem 0.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.admin-tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: var(--r-md);
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: 0.84375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.admin-tab-btn svg { width: 1.125rem; height: 1.125rem; }
.admin-tab-btn:hover {
  color: var(--white);
  background: var(--black-3);
}
.admin-tab-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-color: var(--border-md);
}

.admin-content {
  padding: 2rem;
  overflow-y: auto;
  scrollbar-width: thin;
}
.admin-pane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.admin-pane-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
}
.admin-pane-head p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  margin-top: 0.15rem;
}

/* Tables */
.admin-table-wrapper {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
.admin-table th {
  background: var(--black-3);
  padding: 0.875rem 1.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.admin-table td {
  padding: 1rem 1.25rem;
  font-size: 0.84375rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: rgba(255,255,255,0.02); }

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.admin-stat-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.stat-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.stat-card-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--white);
}

/* Clean Admin Form Textbox & Grid Styles (Layered above Dashboard) */
#admin-prod-form-overlay,
#admin-coupon-form-overlay,
#admin-changelog-form-overlay {
  z-index: 300 !important;
}
#admin-prod-form-modal,
#admin-coupon-form-modal,
#admin-changelog-form-modal {
  z-index: 310 !important;
}
/* Force hidden admin modals to be completely invisible */
#admin-changelog-form-modal.hidden,
#admin-coupon-form-modal.hidden,
#admin-prod-form-modal.hidden {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}
.admin-form-modal {
  width: min(580px, 94vw);
}
.input-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .input-grid-2 { grid-template-columns: 1fr; }
}

.input-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 0.4rem;
}

.input-group input[type="text"],
.input-group input[type="password"],
.input-group input[type="number"],
.input-group textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  outline: none;
  transition: all var(--t) var(--ease);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.2);
}
.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.15), 0 0 0 3px rgba(255,255,255,0.04);
}
.input-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Animations & Fade Effects */
@keyframes shake {
  0%, 100% { transform: translate(-50%, -50%) translateX(0); }
  20%, 60% { transform: translate(-50%, -50%) translateX(-8px); }
  40%, 80% { transform: translate(-50%, -50%) translateX(8px); }
}

.live-update-pulse {
  animation: liveFlash 1.5s ease-out;
}
@keyframes liveFlash {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 30px 10px rgba(34, 197, 94, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* ══════════════════════════════════════════════
   CENTRAL DO CLIENTE — New Full Redesign
   ══════════════════════════════════════════════ */
.user-dl-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: min(880px, 94vw);
  max-height: 90vh;
  background: var(--black-2);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  z-index: 310;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-slow) var(--spring), opacity var(--t-slow) var(--ease);
}
.user-dl-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

/* Close button */
.user-dl-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-md);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--t);
}
.user-dl-close:hover { background: rgba(255,255,255,0.14); }

/* ── Header Strip ── */
.user-dl-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.375rem 1.75rem 1.125rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.user-dl-header-left { flex: 1; min-width: 0; }
.user-dl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gray-pale);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.user-dl-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}
.user-dl-sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0.2rem 0 0;
}

/* Search bar in header */
.user-dl-search-wrap {
  position: relative;
  flex-shrink: 0;
}
.user-dl-search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  color: var(--text-dim);
  pointer-events: none;
}
.user-dl-search-input {
  width: 220px;
  height: 2.125rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-md);
  border-radius: var(--r-full);
  padding: 0 0.875rem 0 2.25rem;
  color: var(--white);
  font-size: 0.8125rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--t), background var(--t), width 0.3s var(--ease);
}
.user-dl-search-input:focus {
  border-color: var(--border-hi);
  background: rgba(255,255,255,0.07);
  width: 280px;
}
.user-dl-search-input::placeholder { color: var(--text-dim); }

/* ── Welcome Screen (Unauthenticated) ── */
.central-welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem 2.5rem;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.central-welcome-glow {
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.central-welcome-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 40px rgba(255,255,255,0.04);
  animation: iconPulse 3s ease-in-out infinite;
}
@keyframes iconPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255,255,255,0.04); }
  50% { box-shadow: 0 0 40px rgba(255,255,255,0.1); }
}
.central-welcome-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.central-welcome-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.central-welcome-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.central-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 2.625rem;
  background: var(--white);
  color: var(--black);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  border: none;
  transition: all var(--t) var(--ease);
  box-shadow: 0 2px 16px rgba(255,255,255,0.1);
}
.central-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(255,255,255,0.15);
}
.central-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  height: 2.625rem;
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.central-btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
}
.central-guest-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 320px;
  margin: 1.5rem 0 1.25rem;
  color: var(--text-dim);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.central-guest-divider::before,
.central-guest-divider::after {
  content: '';
  flex: 1;
  border-top: 1px solid var(--border);
}
.central-btn-guest {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px dashed var(--border-md);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.central-btn-guest:hover {
  color: var(--white);
  border-color: var(--border-hi);
  background: rgba(255,255,255,0.04);
}
.central-guest-hint {
  font-size: 0.71875rem;
  color: var(--text-dim);
  margin-top: 0.625rem;
}

/* ── Authenticated Content ── */
#central-auth-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  padding: 0 1.75rem 1.75rem;
}

/* User Banner */
.central-user-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.875rem 1.125rem;
  background: var(--black-3);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-lg);
  margin: 1rem 0 0;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.central-user-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.central-user-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border-hi);
  object-fit: cover;
}
.central-user-name-text {
  font-size: 0.9375rem;
  color: var(--white);
  font-weight: 700;
}
.central-user-email-text {
  font-size: 0.75rem;
  color: var(--text-dim);
  display: block;
}
.central-wallet-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.central-wallet-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  display: block;
}
.central-wallet-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1875rem;
  color: #22c55e;
  font-weight: 800;
}

/* Guest Banner */
.central-guest-banner-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Tabs */
.user-portal-tabs {
  display: flex;
  gap: 0.375rem;
  margin: 1rem 0 0.875rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}


.user-purchases-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  max-height: 58vh;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 0.25rem;
}

/* Base Card (Details Collapsible) */
details.user-p-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
details.user-p-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
}
details.user-p-card[open] {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

/* Card Summary Header (Clickable) */
.user-p-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.125rem 1.25rem;
  cursor: pointer;
  user-select: none;
  list-style: none;
}
.user-p-summary::-webkit-details-marker { display: none; }
.user-p-summary-left { flex: 1; min-width: 0; }
.user-p-summary-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.user-p-expand-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
  transition: color var(--t);
}
.user-p-summary:hover .user-p-expand-label {
  color: var(--white);
}
.user-p-chevron {
  width: 0.9375rem;
  height: 0.9375rem;
  color: var(--text-dim);
  transition: transform var(--t) var(--ease), color var(--t);
}
details[open] .user-p-chevron {
  transform: rotate(180deg);
  color: var(--white);
}

/* Card Body (Expanded Content) */
.user-p-card-body {
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  margin-top: 0;
  padding-top: 1rem;
  animation: fadeIn 0.2s var(--ease);
}
.user-p-action-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
}
.tutorial-box-clean {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
}

.card-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.status-badge-active {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--r-full);
  padding: 0.1rem 0.5rem;
}
.status-dot-active {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}
.status-badge-locked {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.1rem 0.5rem;
}

.user-p-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

/* License Key Box */
.license-section {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.license-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.user-license-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-md);
  padding: 0.5rem 0.75rem;
}
.license-key-text {
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.84rem;
  font-weight: 600;
  color: #22c55e;
  letter-spacing: 0.05em;
}
.btn-copy-key {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.55rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-md);
  border-radius: var(--r-sm);
  color: var(--gray-pale);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.btn-copy-key:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

/* Tutorial Details Accordion */
.tutorial-details {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.625rem;
}
.tutorial-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78125rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: color var(--t);
}
.tutorial-summary::-webkit-details-marker { display: none; }
.tutorial-summary:hover { color: var(--white); }
.summary-arrow {
  margin-left: auto;
  width: 0.85rem;
  height: 0.85rem;
  transition: transform var(--t) var(--ease);
}
.tutorial-details[open] .summary-arrow {
  transform: rotate(180deg);
}
.tutorial-content {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 0.625rem;
  padding-left: 0.25rem;
}
.tutorial-step-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.45;
}
.step-num {
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* Minimal Clean Locked Card */
.locked-clean {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  opacity: 0.75;
}
.locked-clean:hover {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.1);
}
.locked-clean-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.locked-clean-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.locked-clean-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.locked-clean-desc {
  font-size: 0.78125rem;
  color: var(--text-dim);
}

/* Changelog Clean Styling */
.cl-ver-badge {
  font-family: 'SF Mono', monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--r-full);
  padding: 0.1rem 0.45rem;
}
.cl-changes-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.cl-change-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-2);
  line-height: 1.45;
}
.cl-check-icon {
  width: 0.8rem;
  height: 0.8rem;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

/* ══════════════════════════════════════════════
   SILENT PORTAL DASHBOARD STYLES (MONOCHROME)
   ══════════════════════════════════════════════ */
#user-downloads-modal:not(.hidden) {
  display: flex !important;
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: min(1160px, 95vw) !important;
  height: min(750px, 90vh) !important;
  background: #08080a !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 20px !important;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.98) !important;
  z-index: 99999 !important;
  overflow: hidden !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

#user-downloads-modal-overlay:not(.hidden) {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  z-index: 99998 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}

.portal-dashboard-layout {
  display: flex !important;
  flex-direction: row !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  background: #08080a !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── Sidebar Column ── */
.portal-sidebar {
  width: 240px;
  background: rgba(255, 255, 255, 0.018);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
  height: 100%;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.portal-user-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.25rem 0.25rem;
}
.portal-avatar-circle {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.portal-user-details {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  overflow: hidden;
}
.portal-username {
  font-size: 0.9375rem;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.portal-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 99px;
  padding: 0.08rem 0.45rem;
}

/* XP Bar */
.portal-xp-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.625rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.portal-xp-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.6875rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.05em;
}
.portal-xp-track {
  height: 5px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 99px;
  overflow: hidden;
}
.portal-xp-fill {
  height: 100%;
  background: #ffffff;
  border-radius: 99px;
}
.portal-xp-sub {
  font-size: 0.65rem;
  color: var(--text-dim);
  text-align: right;
}

/* Side Nav List */
.portal-side-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.portal-nav-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.8125rem;
  font-weight: 500;
  text-align: left;
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  letter-spacing: 0.005em;
}
.portal-nav-btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
}
.portal-nav-btn:hover {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
}
.portal-nav-btn:hover svg { opacity: 1; }
.portal-nav-btn.active {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-weight: 600;
  border-left: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.portal-nav-btn.active svg { opacity: 1; }
.portal-nav-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
  margin: 0.4rem 0;
}
.nav-ext-icon {
  width: 0.75rem !important;
  height: 0.75rem !important;
  margin-left: auto;
  opacity: 0.5;
}
.portal-nav-logout:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

/* ── Main Panel & Panes ── */
.portal-main-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: rgba(8, 8, 12, 0.98);
  padding: 1.5rem 1.75rem;
  gap: 1.25rem;
  overflow-y: auto;
  height: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}

.user-portal-pane {
  flex: 1;
  display: block;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 0.35rem;
  height: 100%;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease-in-out, transform 0.35s ease-in-out;
  will-change: opacity, transform;
}

.user-portal-pane.active-pane {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.user-portal-pane.fade-leaving {
  opacity: 0 !important;
  transform: translateY(-6px) !important;
}
.portal-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  padding-bottom: 1rem;
  flex-shrink: 0;
}
.portal-top-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.portal-page-h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
}
.portal-top-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.portal-wallet-chip {
  text-align: right;
}
.wallet-chip-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  display: block;
}
.wallet-chip-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  color: #22c55e;
  font-weight: 800;
}

/* Dashboard Grid */
.portal-dash-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1rem;
  overflow-y: auto;
  scrollbar-width: thin;
  padding-right: 0.25rem;
}
.portal-card {
  background: linear-gradient(145deg, rgba(22, 22, 30, 0.92) 0%, rgba(12, 12, 18, 0.96) 100%);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255, 255, 255, 0.15), 0 0 20px rgba(34, 197, 94, 0.03);
  border-radius: 18px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}
.portal-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.portal-card:hover {
  border-color: rgba(34, 197, 94, 0.35);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 0 30px rgba(34, 197, 94, 0.1);
  transform: translateY(-3px) scale(1.008);
}
.portal-card:hover::before {
  opacity: 1;
}
.portal-icon-square {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.portal-card-h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}
.portal-card-sub {
  font-size: 0.78125rem;
  color: var(--text-dim);
}

.portal-bonus-stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.portal-stat-box {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.stat-box-label {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-dim);
}
.stat-box-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

/* Milestones Row */
.portal-milestones-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.portal-milestone-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 0.85rem 0.4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  position: relative;
  transition: all 0.2s ease;
}
.portal-milestone-item:hover {
  background: rgba(34, 197, 94, 0.06);
  border-color: rgba(34, 197, 94, 0.35);
  transform: translateY(-2px);
}
.m-num {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.2rem;
}
.portal-milestone-item strong {
  font-size: 0.84rem;
  color: #fff;
}
.m-sub { font-size: 0.65rem; color: var(--text-dim); }
.m-bonus { font-size: 0.7rem; font-weight: 700; color: #22c55e; margin-top: 0.2rem; }

/* Bonus Circle Glow */
.portal-bonus-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 0;
}
.bonus-circle-glow {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.bonus-disp-label { font-size: 0.75rem; color: var(--text-dim); }
.bonus-disp-amount { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.625rem; color: #22c55e; font-weight: 800; }

/* Activity list */
.portal-activity-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 0.75rem;
}
.portal-activity-title { font-size: 0.75rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 0.05em; }
.portal-act-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78125rem;
  padding: 0.35rem 0;
}
.portal-act-item strong { color: var(--gray-pale); display: block; }
.act-date { font-size: 0.6875rem; color: var(--text-dim); }
.act-val { color: #22c55e; font-weight: 700; font-family: monospace; }

/* Month Pills Filter */
.portal-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.portal-filter-title { font-size: 0.78125rem; font-weight: 800; color: #fff; letter-spacing: 0.08em; display: block; }
.portal-search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-full);
  padding: 0.35rem 0.85rem;
  width: 220px;
}
.portal-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.78125rem;
  width: 100%;
}
.month-pills-row {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
  margin: 0.75rem 0 0.25rem;
}
.month-pill {
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-sm);
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.month-pill.active, .month-pill:hover {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
}

/* Payment Methods Grid */
.pay-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.pay-method-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-lg);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.pay-method-card.active, .pay-method-card:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}
.pay-method-card strong { font-size: 0.875rem; color: #fff; }
.pay-method-card span { font-size: 0.72rem; color: var(--text-dim); }

.quick-val-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.quick-val-btn {
  padding: 0.4rem 0.75rem;
  font-size: 0.78125rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-hi);
  border-radius: var(--r-md);
  color: var(--white);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.quick-val-btn.active, .quick-val-btn:hover {
  background: #ffffff;
  color: #000;
  border-color: #ffffff;
}

/* ══════════════════════════════════════════════
   INTERACTIVE SOFTWARE MENU REPLICA (SILENT CS2)
   ══════════════════════════════════════════════ */
.sw-menu-window {
  width: 100%;
  max-width: 1060px;
  margin: 1.5rem auto 0;
  background: #09090b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 1px rgba(255, 255, 255, 0.2);
}

.sw-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}

.sw-title-bar {
  padding: 0.75rem 1rem 0;
  position: relative;
  z-index: 2;
}

.sw-title-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.4rem 0.85rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
}

.sw-grid-layout {
  display: flex;
  min-height: 520px;
  position: relative;
  z-index: 2;
}

/* Sidebar */
.sw-sidebar {
  width: 230px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(10, 10, 12, 0.5);
}

.sw-user-badge {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.35rem 0.25rem;
}
.sw-avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 800;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sw-user-meta {
  display: flex;
  flex-direction: column;
}
.sw-username {
  font-size: 0.875rem;
  color: #fff;
  font-weight: 700;
}
.sw-user-role {
  font-size: 0.6875rem;
  color: var(--text-dim);
}

.sw-search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.4rem 0.65rem;
}
.sw-search-box input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.78125rem;
  width: 100%;
}

.sw-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  overflow-y: auto;
}
.sw-nav-label {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin: 0.65rem 0.5rem 0.2rem;
  display: block;
}
.sw-nav-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.sw-nav-item svg {
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
}
.sw-nav-item:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}
.sw-nav-item.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 700;
  border-left: 3px solid #ffffff;
}

/* Main Content Panel */
.sw-main-panel {
  flex: 1;
  padding: 1.25rem;
  background: rgba(6, 6, 8, 0.4);
  overflow-y: auto;
}

.sw-dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.sw-card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.sw-card-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 0.65rem;
}
.sw-card-header h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
}

.sw-info-table {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.sw-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78125rem;
}
.sw-info-lbl {
  color: var(--text-dim);
}
.sw-info-val {
  color: #fff;
  font-weight: 600;
}
.sw-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  padding: 0.1rem 0.55rem;
  color: #fff;
}
.sw-pill-badge.green {
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.25);
  background: rgba(34, 197, 94, 0.08);
}
.sw-auth-success-msg {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-dim);
  margin-top: 0.35rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Checkboxes & Controls */
.sw-controls-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sw-checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.sw-checkbox-row:hover {
  color: #fff;
}
.sw-checkbox-row input {
  display: none;
}
.sw-checkbox-box {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.sw-checkbox-row input:checked + .sw-checkbox-box {
  background: #ffffff;
  border-color: #ffffff;
}
.sw-checkbox-row input:checked + .sw-checkbox-box::after {
  content: '✓';
  font-size: 0.75rem;
  font-weight: 900;
  color: #000;
}
.sw-checkbox-row input:checked ~ .sw-toggle-label {
  color: #ffffff;
  font-weight: 600;
}

/* Sub Group Indentation */
.sw-sub-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-left: 0.5rem;
  padding-left: 0.85rem;
  border-left: 1px dashed rgba(255, 255, 255, 0.12);
}

/* Sliders */
.sw-slider-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sw-slider-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.78125rem;
  color: var(--text-muted);
}
.sw-slider-header strong {
  color: #fff;
  font-family: monospace;
}
.sw-slider-group input[type="range"] {
  accent-color: #ffffff;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 99px;
  cursor: pointer;
}

/* Select Inputs */
.sw-select-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sw-select-group label {
  font-size: 0.78125rem;
  color: var(--text-muted);
}
.sw-select-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 0.4rem 0.65rem;
  color: #fff;
  font-size: 0.78125rem;
  outline: none;
}
.sw-select-input option {
  background: #09090b;
  color: #fff;
}

/* Color Pickers */
.sw-color-picker-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78125rem;
  color: var(--text-muted);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.sw-color-dot {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

/* CS2 External Live ESP Preview Panel */
.sw-esp-preview-panel {
  width: 220px;
  background: rgba(8, 8, 11, 0.7);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
}

.sw-esp-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #ffffff;
}

.sw-esp-mode-toggle {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 2px;
}

.sw-mode-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sw-mode-btn.active {
  background: #ffffff;
  color: #000000;
}

.sw-esp-viewport {
  flex: 1;
  min-height: 380px;
  background: rgba(4, 4, 6, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0.75rem;
  overflow: hidden;
}

.esp-live-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.esp-name-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  letter-spacing: 0.02em;
}

.esp-hat-icon {
  margin-bottom: -6px;
  z-index: 3;
  width: 38px;
  height: 18px;
}

.china-hat-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 6px #ff007f);
}

.esp-box-outline {
  position: relative;
  border: 1.5px solid #ffffff;
  width: 105px;
  height: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.12);
  transition: transform 0.3s var(--ease), border-color 0.2s ease;
}

.esp-bar-health {
  position: absolute;
  left: -7px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #22c55e;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
}

.esp-bar-armor {
  position: absolute;
  right: -7px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #3b82f6;
  border-radius: 1px;
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.7);
}

.esp-skeleton-svg {
  width: 75px;
  height: 170px;
  transition: opacity 0.2s ease;
}

.esp-bottom-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.9);
  margin-top: 0.15rem;
  line-height: 1.15;
}

/* Redeem Key Animation & Result Card */
.redeem-anim-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto;
}

.redeem-checkmark-svg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: block;
  stroke-width: 2.5;
  stroke: #22c55e;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #22c55e;
  animation: fillCircle .4s ease-in-out .4s forwards, scaleCheck .3s ease-in-out .9s bounce;
}

.redeem-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2.5;
  stroke-miterlimit: 10;
  stroke: #22c55e;
  fill: none;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.redeem-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes strokeCircle {
  100% { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  100% { stroke-dashoffset: 0; }
}

.redeem-result-card {
  margin-top: 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  text-align: left;
}

.redeem-res-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

/* Card Sub-Tabs in Central Cliente */
.user-card-tabs {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.5rem;
  margin-bottom: 0.85rem;
}

.user-card-tab {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-dim);
  font-size: 0.78125rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.user-card-tab:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}

.user-card-tab.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

/* Game Category Filter Bar in Downloads Hub */
.user-game-filter-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}

.game-filter-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-dim);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.game-filter-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.game-filter-btn.active {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.35);
  color: #22c55e;
  font-weight: 700;
}

/* Balance Breakdown Box in Checkout */
.balance-breakdown-box {
  margin-top: 0.85rem;
  padding: 0.85rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.balance-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--text-dim);
}

.balance-row.remaining {
  font-size: 0.875rem;
  font-weight: 700;
}

.balance-divider {
  border-top: 1px dashed rgba(255, 255, 255, 0.1);
  margin: 0.25rem 0;
}

/* =============================================
   MOBILE & TOUCH DEVICE RESPONSIVENESS
   ============================================= */

/* Touch screens & Mobile Cursor handling */
@media (hover: none) and (pointer: coarse) {
  #cursor-trail-canvas,
  .custom-cursor-dot,
  .custom-cursor-ring {
    display: none !important;
  }
}

/* Mobile Screen Adjustments (< 768px) */
@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .sticky-header {
    padding: 0.5rem 0 !important;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  /* Hide center pill nav on mobile to prevent header overflow */
  .pill-nav {
    display: none !important;
  }

  /* Hide verified badge text on mobile header to save space */
  .verified-badge {
    display: none !important;
  }

  .logo-link {
    gap: 0.35rem !important;
  }

  .logo-img {
    width: 28px !important;
    height: 28px !important;
  }

  .logo-text {
    font-size: 1.15rem !important;
  }

  .nav-right {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
  }

  .lang-selector-btn {
    padding: 0.25rem 0.4rem !important;
    font-size: 0.72rem !important;
  }

  .open-cart {
    padding: 0.4rem 0.75rem !important;
    font-size: 0.75rem !important;
  }

  /* Modals full height & scrollable on mobile */
  .auth-modal,
  .admin-dash-modal,
  .user-downloads-modal,
  .checkout-modal,
  .prod-details-modal,
  .admin-modal {
    width: 92vw !important;
    max-width: 92vw !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    padding: 1.5rem 1.15rem !important;
  }

  .admin-dash-body {
    flex-direction: column !important;
  }

  .admin-sidebar {
    width: 100% !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    padding-bottom: 0.5rem !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  }

  .admin-tab-btn {
    white-space: nowrap !important;
    font-size: 0.78125rem !important;
    padding: 0.5rem 0.75rem !important;
  }

  .portal-dashboard-modal {
    width: 96vw !important;
    height: 92vh !important;
    max-height: 92vh !important;
  }
  .portal-dashboard-layout {
    flex-direction: column !important;
    overflow-y: auto !important;
    position: relative !important;
  }

  .portal-sidebar {
    width: 100% !important;
    height: auto !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1rem !important;
  }

  .portal-side-nav {
    flex-direction: row !important;
    overflow-x: auto !important;
    padding-bottom: 0.5rem !important;
  }

  .portal-nav-btn {
    white-space: nowrap !important;
    padding: 0.5rem 0.85rem !important;
  }

  .portal-main-panel {
    height: auto !important;
    min-height: 480px !important;
    padding: 1rem !important;
    overflow: visible !important;
  }

  .admin-table-wrapper,
  .portal-table-wrap {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .admin-table,
  .portal-table {
    min-width: 580px !important;
  }

  .hero-h1 {
    font-size: 2.25rem !important;
  }

  .hero-ctas {
    flex-direction: column !important;
    width: 100% !important;
  }

  .btn-xl {
    width: 100% !important;
  }
}

/* =============================================
   DISCORD OAUTH AUTHORIZATION MODAL STYLES
   ============================================= */
.discord-oauth-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90vw;
  max-width: 480px;
  background: #313338; /* Authentic Discord Dark Theme */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.75rem 1.5rem;
  z-index: 10005;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  color: #dbdee1;
  font-family: 'Inter', sans-serif;
}

.discord-oauth-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.discord-auth-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.discord-avatars-connect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.app-avatar-circle,
.user-avatar-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #2b2d31;
  border: 2px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.app-avatar-circle img,
.user-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.connect-dots {
  display: flex;
  gap: 0.3rem;
}

.connect-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  animation: pulseConnect 1.5s infinite ease-in-out;
}

.connect-dots span:nth-child(2) { animation-delay: 0.2s; }
.connect-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes pulseConnect {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

.discord-app-title {
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0;
}

.discord-app-subtitle {
  color: #949ba4;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.discord-permissions-box {
  background: #2b2d31;
  border-radius: 12px;
  padding: 1.15rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.discord-perm-intro {
  font-size: 0.8125rem;
  color: #dbdee1;
  margin-bottom: 0.85rem;
}

.discord-perm-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.discord-perm-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.84rem;
  color: #f2f3f5;
}

.perm-icon.check {
  color: #23a55a;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.perm-icon.cancel {
  color: #f23f43;
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.discord-redirect-notice {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #949ba4;
}

.discord-actions-row {
  display: flex;
  gap: 0.75rem;
}

.btn-discord-cancel {
  flex: 1;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-discord-cancel:hover {
  text-decoration: underline;
  background: rgba(255, 255, 255, 0.04);
}

.btn-discord-authorize {
  flex: 1.5;
  background: #5865F2; /* Official Discord Blurple */
  border: none;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.4);
}

.btn-discord-authorize:hover {
  background: #4752C4;
  box-shadow: 0 6px 20px rgba(88, 101, 242, 0.6);
  transform: translateY(-1px);
}

/* =============================================
   MOBILE BOTTOM NAVIGATION BAR STYLES
   ============================================= */
.mobile-bottom-navbar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-bottom-navbar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 9990;
    justify-content: space-around;
    align-items: center;
    padding: 0 0.5rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.8);
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.6875rem;
    font-weight: 600;
    transition: all 0.2s ease;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    flex: 1;
  }

  .mobile-nav-item svg {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.2s ease;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: #22c55e;
  }

  .mobile-nav-item.active svg {
    transform: translateY(-2px);
    filter: drop-shadow(0 0 6px rgba(34, 197, 94, 0.6));
  }

  body {
    padding-bottom: 70px !important;
  }
}

/* Ensure Redeem License Key Modal & Overlay always open on top of Central Cliente */
#redeem-modal-overlay {
  z-index: 999980 !important;
}

#redeem-modal {
  z-index: 999990 !important;
}

/* Custom Flag Language Dropdown */
.custom-lang-dropdown {
  position: relative;
  display: inline-block;
}

.custom-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-main);
  font-size: 0.75rem;
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.custom-lang-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.lang-flag-img {
  width: 18px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.5);
  flex-shrink: 0;
}

.custom-lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  width: 195px;
  max-height: 280px;
  overflow-y: auto;
  background: #111215;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0.5rem;
  z-index: 999999;
  box-shadow: 0 16px 40px rgba(0,0,0,0.85);
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.2) transparent;
}

.lang-group-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding: 0.4rem 0.5rem 0.2rem;
  font-weight: 700;
}

.custom-lang-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.42rem 0.6rem;
  font-size: 0.78125rem;
  color: #ccc;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.custom-lang-item:hover,
.custom-lang-item.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

/* ── Payment Methods Section ── */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (max-width: 900px) { .payment-methods-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .payment-methods-grid { grid-template-columns: 1fr; } }

.payment-method-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: border-color var(--t) var(--ease), background var(--t) var(--ease);
}
.payment-method-card:hover {
  border-color: var(--border-md);
  background: var(--black-3);
}

.pm-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pm-icon-wrap i, .pm-icon-wrap svg {
  width: 1.25rem;
  height: 1.25rem;
}

.pm-info { flex: 1; }
.pm-info h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.pm-info p {
  font-size: 0.8125rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.pm-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pm-badge.green  { background: rgba(34,197,94,0.12); color: #4ade80; border: 1px solid rgba(34,197,94,0.2); }
.pm-badge.blue   { background: rgba(59,130,246,0.12); color: #60a5fa; border: 1px solid rgba(59,130,246,0.2); }
.pm-badge.purple { background: rgba(168,85,247,0.12); color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }
.pm-badge.yellow { background: rgba(240,185,11,0.12); color: #fbbf24; border: 1px solid rgba(240,185,11,0.2); }

.pm-footer-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-dim);
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--black-2);
}
.pm-footer-note strong { color: var(--text-muted); }

/* checkout modal wider for 6 methods */
.checkout-modal {
  max-width: 600px !important;
}

/* ── Ultra Sleek Mobile Layout Polish ── */
@media (max-width: 640px) {
  .hero-section {
    padding: 3rem 1rem 2rem !important;
  }
  .hero-h1 {
    font-size: 2.1rem !important;
    line-height: 1.15 !important;
    letter-spacing: -0.03em !important;
    margin-bottom: 1rem !important;
  }
  .hero-h1 em {
    font-size: 0.7em !important;
  }
  .hero-desc {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1.75rem !important;
  }
  .hero-ctas {
    gap: 0.5rem !important;
    margin-bottom: 2rem !important;
  }
  .hero-ctas .btn {
    width: 100% !important;
    justify-content: center !important;
  }
  .hero-stats {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    border-radius: 14px !important;
  }
  .stat-item {
    padding: 0.85rem 0.5rem !important;
  }
  .stat-num {
    font-size: 1.25rem !important;
  }
  .stat-lbl {
    font-size: 0.65rem !important;
  }
  .stat-item + .stat-item::before {
    display: none !important;
  }

  /* Checkout Modal mobile polish */
  .checkout-modal {
    width: 95vw !important;
    max-height: 92vh !important;
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
    overflow-y: auto !important;
  }
  .chk-methods-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
  .chk-method-card {
    padding: 0.75rem 0.85rem !important;
  }
  .chk-form-grid {
    grid-template-columns: 1fr !important;
    gap: 0.5rem !important;
  }
}

/* Ensure solid modal backgrounds to prevent background bleed-through */
.portal-dashboard-modal,
.auth-modal,
.checkout-modal,
.prod-details-modal,
.video-showcase-card-modal {
  background: #08080a !important;
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.98) !important;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  width: 92%;
  max-width: 720px;
  background: rgba(14, 14, 20, 0.96);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  padding: 1rem 1.35rem;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
}

/* ─── HIDE GOOGLE TRANSLATE UGLY BANNER FRAME & TOOLTIPS ─── */
.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
.goog-te-gadget,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
.VIpgJd-Z44fyf-aFiBfd-Hn32e,
.VIpgJd-Z44fyf-ibnAvb,
.goog-te-spinner-pos,
div.skiptranslate {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}

body {
  top: 0 !important;
  position: static !important;
}

#google_translate_element {
  display: none !important;
}

/* ─── ADMIN PANEL ANIMATIONS & STYLED BADGES ─── */
.admin-tab-pane {
  animation: adminFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.admin-table tbody tr {
  transition: background 0.15s ease, transform 0.15s ease;
}
.admin-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.035) !important;
}

.chg-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.chg-badge-important {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.35);
}

.chg-badge-warning {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.chg-badge-reminder {
  background: rgba(107, 114, 128, 0.18);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.35);
}

.price-original-strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
  margin-right: 0.4rem;
  font-size: 0.85em;
}

.price-discounted-highlight {
  color: #22c55e !important;
  font-weight: 800;
}

/* ─── Portal Avatar Wrap ─── */
.portal-avatar-wrap {
  position: relative;
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
}
.portal-avatar-wrap svg,
.portal-avatar-wrap img {
  border-radius: 50%;
}

/* ─── User Transaction Cards ─── */
.tx-card-list { display: flex; flex-direction: column; gap: 0.55rem; }
.tx-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.028);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: background 0.18s;
}
.tx-card:hover { background: rgba(255,255,255,0.05); }
.tx-card-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.tx-card-icon.deposit  { background: rgba(34,197,94,0.12); color: #22c55e; }
.tx-card-icon.purchase { background: rgba(99,102,241,0.13); color: #818cf8; }
.tx-card-icon.bonus    { background: rgba(251,191,36,0.13); color: #fbbf24; }
.tx-card-body { flex: 1; min-width: 0; }
.tx-card-title { font-size: 0.83rem; font-weight: 600; color: #e5e7eb; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tx-card-meta  { font-size: 0.71rem; color: var(--text-dim); margin-top: 0.08rem; }
.tx-card-right { text-align: right; flex-shrink: 0; }
.tx-card-amount { font-size: 0.88rem; font-weight: 700; }
.tx-card-amount.green { color: #22c55e; }
.tx-card-amount.red   { color: #f87171; }
.tx-card-status { font-size: 0.67rem; font-weight: 700; color: #22c55e; text-transform: uppercase; letter-spacing: 0.04em; }

/* ─── Admin All Transactions Table ─── */
.admin-tx-table { width: 100%; border-collapse: collapse; font-size: 0.8rem; }
.admin-tx-table th { padding: 0.55rem 0.7rem; text-align: left; font-size: 0.68rem; font-weight: 700; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid rgba(255,255,255,0.08); white-space: nowrap; }
.admin-tx-table td { padding: 0.65rem 0.7rem; color: #e5e7eb; border-bottom: 1px solid rgba(255,255,255,0.04); vertical-align: middle; }
.admin-tx-table tr:last-child td { border-bottom: none; }
.admin-tx-table tr:hover td { background: rgba(255,255,255,0.025); }
.tx-status-badge { display: inline-flex; align-items: center; padding: 0.18rem 0.5rem; border-radius: 999px; font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.tx-status-badge.done    { background: rgba(34,197,94,0.12); color: #22c55e; }
.tx-status-badge.pending { background: rgba(251,191,36,0.12); color: #fbbf24; }
.tx-status-badge.failed  { background: rgba(239,68,68,0.12);  color: #f87171; }
.tx-method-pill { display: inline-flex; align-items: center; gap: 0.2rem; padding: 0.13rem 0.4rem; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.09); border-radius: 6px; font-size: 0.69rem; color: #a1a1aa; font-weight: 600; }

/* ─── Header Auth Container Responsive Visibility ─── */
#header-auth-container {
  display: inline-flex;
  align-items: center;
}
@media (min-width: 901px) {
  #header-auth-container {
    display: none !important;
  }
}

/* ─── Coin 3D Spin Animation ─── */
@keyframes spinCoin3D {
  0% { transform: rotateY(0deg); }
  100% { transform: rotateY(360deg); }
}
.deposit-btn-coin {
  display: inline-block;
  vertical-align: middle;
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#deposit-submit-btn:hover .deposit-btn-coin,
.quick-val-btn:hover .deposit-btn-coin,
.portal-milestone-item:hover .deposit-btn-coin {
  animation: spinCoin3D 3.2s infinite linear;
}

/* ─── Glow & Glassmorphism Updates for Professional 3D Portal ─── */
.portal-dashboard-modal {
  background: radial-gradient(circle at top right, rgba(16, 24, 16, 0.85), rgba(8, 8, 10, 0.99)) !important;
  backdrop-filter: blur(35px) saturate(210%) !important;
  -webkit-backdrop-filter: blur(35px) saturate(210%) !important;
  border: 1px solid rgba(34, 197, 94, 0.22) !important;
  box-shadow: 0 45px 120px rgba(0,0,0,0.95), 0 0 40px rgba(34, 197, 94, 0.05), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.35s ease !important;
}

.portal-sidebar {
  background: rgba(255, 255, 255, 0.012) !important;
  backdrop-filter: blur(15px) !important;
  -webkit-backdrop-filter: blur(15px) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: inset -5px 0 30px rgba(0,0,0,0.3) !important;
}

.portal-card {
  background: rgba(255, 255, 255, 0.018) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  border: 1px solid rgba(255, 255, 255, 0.05) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05) !important;
  border-radius: 14px !important;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  transform-style: preserve-3d !important;
  perspective: 1000px !important;
}

.portal-card:hover {
  transform: translateY(-4px) translateZ(10px) !important;
  border-color: rgba(34, 197, 94, 0.35) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.55), 0 0 25px rgba(34, 197, 94, 0.08) !important;
}

.portal-nav-btn {
  border-radius: 10px !important;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.portal-nav-btn.active {
  background: rgba(34, 197, 94, 0.12) !important;
  border: 1px solid rgba(34, 197, 94, 0.35) !important;
  color: #22c55e !important;
  box-shadow: 0 0 15px rgba(34, 197, 94, 0.1) !important;
}

.portal-nav-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
}

.quick-val-btn {
  background: rgba(255, 255, 255, 0.015) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
  color: var(--text-muted) !important;
}

.quick-val-btn:hover {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.quick-val-btn.active {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #000000 !important;
  font-weight: 800 !important;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2) !important;
}

.portal-milestone-item {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.portal-milestone-item:hover {
  transform: scale(1.04) translateZ(8px) !important;
  border-color: rgba(34, 197, 94, 0.4) !important;
  background: rgba(34, 197, 94, 0.04) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(34, 197, 94, 0.1) !important;
}

/* ─── Uiverse Download Button (Btn) ─── */
.Btn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: #111115;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition-duration: .3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.svgIcon {
  fill: #22c55e;
  transition-duration: .3s;
  width: 16px;
  height: 16px;
}

.icon2 {
  width: 16px;
  height: 5px;
  border-bottom: 2px solid #22c55e;
  border-left: 2px solid #22c55e;
  border-right: 2px solid #22c55e;
  transition-duration: .3s;
  margin-top: -1px;
}

.tooltip {
  position: absolute;
  left: -90px;
  opacity: 0;
  background-color: #0c0c0c;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: .2s;
  pointer-events: none;
  letter-spacing: 0.5px;
  font-size: 0.72rem;
  font-weight: 700;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0,0,0,0.6);
}

.tooltip::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #0c0c0c;
  border-right: 1px solid rgba(255,255,255,0.12);
  border-top: 1px solid rgba(255,255,255,0.12);
  transform: rotate(45deg);
  right: -5px;
  transition-duration: .3s;
}

.Btn:hover .tooltip {
  opacity: 1;
  transition-duration: .3s;
}

.Btn:hover {
  background-color: #22c55e;
  border-color: #22c55e;
  transition-duration: .3s;
}

.Btn:hover .icon2 {
  border-bottom: 2px solid #000;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
}

.Btn:hover .svgIcon {
  fill: #000;
  animation: slide-in-top 0.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-top {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

/* ─── Uiverse Skew Hover Button (for deposit) ─── */
.btn-skew-hover {
  outline: none;
  cursor: pointer;
  border: none;
  padding: 0.9rem 2.2rem;
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.05rem;
  font-weight: 800;
  border-radius: 500px;
  overflow: hidden;
  background: #22c55e;
  color: #fff;
  position: relative;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(34,197,94,0.3);
  z-index: 1;
}

.btn-skew-hover span {
  position: relative;
  z-index: 10;
  transition: color 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}

.btn-skew-hover:hover span {
  color: #000000;
}

.btn-skew-hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  z-index: 2;
  background: #111115;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 500px;
  transform: skew(30deg);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.btn-skew-hover:hover::before {
  transform: translate3d(115%, 0, 0) skew(30deg);
}

/* ─── Premium Purchased & Locked spec card ─── */
.purchased-spec-card {
  width: 200px;
  height: 290px;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.purchased-spec-card.active-card {
  border-color: rgba(34, 197, 94, 0.15);
}

.purchased-spec-card.locked-card {
  border-color: rgba(239, 68, 68, 0.1);
  background: rgba(255, 255, 255, 0.008);
}

.purchased-spec-img {
  height: 40%;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 1;
}

.purchased-spec-textbox {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 2;
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 12, 0.9);
  padding: 1.25rem 1rem;
}

.purchased-spec-text {
  font-weight: bold;
  margin: 0;
  text-align: center;
}

.purchased-spec-head {
  font-size: 1rem;
  color: #fff;
}

.purchased-spec-price {
  font-size: 0.9rem;
  color: #22c55e;
  font-weight: 800;
}

.purchased-spec-card:hover .purchased-spec-textbox {
  opacity: 1;
}

.purchased-spec-card:hover .purchased-spec-img {
  height: 65%;
  filter: blur(6px) brightness(0.6);
  animation: floatAnim 3s infinite ease-in-out;
}

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

.purchased-spec-card:hover {
  transform: scale(1.05) rotate(-1deg) translateY(-4px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
}

.purchased-spec-card.active-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 20px 45px rgba(0,0,0,0.65), 0 0 20px rgba(34, 197, 94, 0.08);
}

.purchased-spec-card.locked-card:hover {
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 20px 45px rgba(0,0,0,0.65), 0 0 20px rgba(239, 68, 68, 0.08);
}

/* ─── Uiverse Scrolling Space Stars Background ─── */
#stars {
  width: 1px;
  height: 1px;
  background: transparent;
  box-shadow:
    501px 811px #fff,
    1450px 1324px #fff,
    1093px 1780px #fff,
    1469px 678px #fff,
    904px 741px #fff,
    1160px 781px #fff,
    1841px 1962px #fff,
    1630px 1667px #fff,
    1788px 676px #fff,
    367px 1734px #fff,
    1343px 156px #fff,
    1283px 1142px #fff,
    1062px 378px #fff,
    1395px 467px #fff,
    1017px 1891px #fff,
    137px 1114px #fff,
    1767px 1403px #fff,
    1543px 11px #fff,
    1078px 181px #fff,
    1189px 1574px #fff,
    1697px 1551px #fff,
    439px 472px #fff,
    1491px 677px #fff,
    1364px 599px #fff,
    34px 382px #fff,
    1221px 1584px #fff,
    1266px 1499px #fff,
    169px 1907px #fff,
    1219px 1125px #fff,
    659px 18px #fff,
    1731px 1959px #fff,
    332px 1216px #fff,
    1913px 788px #fff,
    80px 712px #fff,
    326px 1605px #fff,
    574px 1502px #fff,
    473px 1653px #fff,
    404px 975px #fff,
    322px 1797px #fff,
    425px 1321px #fff,
    1121px 1797px #fff,
    731px 647px #fff,
    891px 1584px #fff,
    1523px 109px #fff,
    1379px 244px #fff,
    865px 1064px #fff,
    493px 956px #fff,
    624px 1380px #fff,
    440px 619px #fff,
    1630px 767px #fff,
    955px 1196px #fff,
    62px 729px #fff,
    126px 946px #fff,
    1256px 896px #fff,
    1444px 256px #fff,
    661px 1628px #fff,
    1078px 1716px #fff,
    300px 737px #fff,
    1734px 413px #fff,
    1296px 129px #fff,
    1771px 1678px #fff,
    977px 1764px #fff,
    1879px 549px #fff,
    665px 1531px #fff,
    89px 701px #fff,
    1084px 1183px #fff,
    1597px 1576px #fff,
    1354px 1774px #fff,
    554px 1471px #fff,
    1469px 287px #fff,
    887px 106px #fff,
    1962px 766px #fff,
    638px 805px #fff,
    1651px 741px #fff,
    1517px 1826px #fff,
    24px 1152px #fff,
    507px 558px #fff,
    1262px 652px #fff,
    246px 1048px #fff,
    1077px 421px #fff,
    1866px 1847px #fff,
    1986px 1561px #fff,
    704px 632px #fff,
    1991px 1875px #fff,
    1227px 395px #fff,
    45px 1116px #fff,
    247px 786px #fff,
    890px 607px #fff,
    787px 1235px #fff,
    557px 524px #fff,
    1582px 1285px #fff,
    1725px 1366px #fff,
    952px 747px #fff,
    251px 458px #fff,
    1500px 1250px #fff,
    1999px 1734px #fff,
    1336px 1955px #fff,
    1705px 1464px #fff,
    728px 697px #fff,
    594px 510px #fff,
    1345px 1990px #fff,
    1919px 1803px #fff,
    1117px 966px #fff,
    1629px 97px #fff,
    1046px 1196px #fff,
    810px 1092px #fff,
    722px 976px #fff,
    406px 18px #fff,
    1665px 1860px #fff,
    1758px 1628px #fff,
    1183px 463px #fff,
    564px 239px #fff,
    13px 1767px #fff,
    1482px 1472px #fff,
    1700px 347px #fff,
    1362px 244px #fff,
    1141px 1708px #fff,
    22px 885px #fff,
    374px 1309px #fff,
    1034px 1037px #fff,
    1725px 1086px #fff,
    1343px 1921px #fff,
    596px 903px #fff,
    1061px 478px #fff,
    18px 1409px #fff,
    729px 1364px #fff,
    264px 911px #fff,
    677px 1442px #fff,
    123px 33px #fff,
    1303px 646px #fff,
    1945px 792px #fff,
    1305px 938px #fff,
    918px 1536px #fff,
    620px 948px #fff,
    183px 646px #fff,
    695px 687px #fff,
    881px 272px #fff,
    1521px 1212px #fff,
    1423px 1022px #fff,
    1545px 1271px #fff,
    1393px 348px #fff,
    685px 1910px #fff,
    1446px 856px #fff,
    73px 1201px #fff,
    736px 999px #fff,
    673px 796px #fff,
    469px 850px #fff,
    1912px 142px #fff,
    1278px 664px #fff,
    184px 1990px #fff,
    1173px 1312px #fff,
    782px 1879px #fff,
    323px 1035px #fff,
    611px 908px #fff,
    565px 1449px #fff,
    748px 1713px #fff,
    1047px 490px #fff,
    1040px 1872px #fff,
    1818px 1659px #fff,
    1806px 1327px #fff,
    386px 575px #fff,
    1550px 463px #fff,
    148px 687px #fff,
    651px 1683px #fff,
    1588px 1194px #fff,
    1831px 2px #fff,
    581px 876px #fff,
    1396px 1743px #fff,
    1212px 1810px #fff,
    421px 1920px #fff,
    658px 1461px #fff,
    1859px 1809px #fff,
    1456px 388px #fff,
    186px 1627px #fff,
    1528px 1145px #fff,
    171px 97px #fff,
    674px 1072px #fff,
    676px 1052px #fff,
    1165px 1131px #fff,
    1088px 781px #fff,
    1231px 948px #fff,
    330px 257px #fff,
    426px 1046px #fff,
    549px 652px #fff,
    1338px 74px #fff,
    1749px 364px #fff,
    931px 369px #fff,
    383px 1428px #fff,
    1558px 389px #fff,
    927px 133px #fff,
    234px 1888px #fff,
    1785px 1617px #fff,
    556px 643px #fff,
    401px 275px #fff,
    406px 1644px #fff,
    1253px 1852px #fff,
    1599px 883px #fff,
    744px 1721px #fff,
    524px 1297px #fff,
    1226px 1177px #fff,
    1679px 55px #fff,
    874px 1811px #fff,
    838px 790px #fff,
    1241px 430px #fff,
    1676px 652px #fff,
    1191px 568px #fff,
    53px 1990px #fff,
    1163px 237px #fff,
    61px 223px #fff,
    592px 456px #fff,
    1844px 271px #fff,
    1324px 1488px #fff,
    1373px 717px #fff,
    1822px 709px #fff,
    1464px 941px #fff,
    1445px 1118px #fff,
    991px 1414px #fff,
    1964px 1076px #fff,
    108px 172px #fff,
    641px 1722px #fff,
    1539px 427px #fff,
    1697px 45px #fff,
    1301px 1353px #fff,
    1060px 329px #fff,
    967px 1396px #fff,
    493px 301px #fff,
    1228px 1406px #fff,
    1211px 1653px #fff,
    444px 1822px #fff,
    1746px 353px #fff,
    1449px 381px #fff,
    671px 887px #fff,
    650px 138px #fff,
    30px 1839px #fff,
    1094px 1405px #fff,
    273px 796px #fff,
    1618px 1964px #fff,
    1045px 1849px #fff,
    1472px 1155px #fff,
    1529px 1312px #fff,
    728px 448px #fff,
    44px 1908px #fff,
    691px 818px #fff,
    254px 293px #fff,
    1981px 1133px #fff,
    1307px 375px #fff,
    196px 316px #fff,
    1241px 1975px #fff,
    1138px 1706px #fff,
    1769px 463px #fff,
    1768px 1428px #fff,
    1730px 590px #fff,
    1780px 523px #fff,
    1862px 1526px #fff,
    1613px 909px #fff,
    1266px 1781px #fff,
    470px 352px #fff,
    699px 1682px #fff,
    1002px 614px #fff,
    1209px 133px #fff,
    1842px 518px #fff,
    1422px 1836px #fff,
    1720px 1901px #fff,
    470px 1788px #fff,
    1355px 1387px #fff,
    146px 1162px #fff,
    933px 80px #fff,
    681px 1063px #fff,
    313px 1341px #fff,
    740px 1498px #fff,
    168px 1014px #fff,
    345px 1355px #fff,
    1498px 1562px #fff,
    1626px 1358px #fff,
    890px 403px #fff,
    663px 562px #fff,
    1481px 168px #fff,
    22px 719px #fff,
    774px 1041px #fff,
    1899px 829px #fff,
    430px 158px #fff,
    430px 361px #fff,
    1592px 1334px #fff,
    224px 323px #fff,
    1639px 1131px #fff,
    7px 271px #fff,
    1646px 1514px #fff,
    1605px 1444px #fff,
    1820px 1665px #fff,
    1549px 1641px #fff,
    1609px 1377px #fff,
    486px 1098px #fff,
    229px 613px #fff,
    542px 1694px #fff,
    318px 256px #fff,
    1861px 918px #fff,
    889px 892px #fff,
    442px 1524px #fff,
    19px 422px #fff,
    1935px 1908px #fff,
    828px 109px #fff,
    862px 1248px #fff,
    1275px 560px #fff,
    906px 63px #fff,
    337px 1605px #fff,
    1691px 918px #fff,
    1414px 679px #fff,
    1726px 749px #fff,
    1540px 1149px #fff,
    1337px 1466px #fff,
    446px 430px #fff,
    676px 1616px #fff,
    840px 326px #fff,
    976px 977px #fff,
    1840px 642px #fff,
    1273px 804px #fff,
    1071px 928px #fff,
    1292px 1675px #fff,
    29px 1148px #fff,
    1585px 135px #fff,
    1007px 563px #fff,
    1035px 78px #fff,
    1174px 574px #fff,
    120px 1304px #fff,
    845px 1292px #fff,
    861px 540px #fff,
    234px 232px #fff,
    1940px 1367px #fff,
    759px 639px #fff,
    1775px 1381px #fff,
    906px 372px #fff,
    1104px 1165px #fff,
    1524px 911px #fff,
    1882px 330px #fff,
    1389px 700px #fff,
    300px 1629px #fff,
    220px 1614px #fff,
    563px 140px #fff,
    1611px 1586px #fff,
    793px 1316px #fff,
    325px 1070px #fff,
    1722px 1462px #fff,
    1406px 1120px #fff,
    1169px 1768px #fff,
    1956px 1053px #fff,
    959px 1587px #fff,
    585px 1566px #fff,
    370px 204px #fff,
    1606px 1416px #fff,
    443px 1606px #fff,
    1499px 1102px #fff,
    1943px 105px #fff,
    1121px 1594px #fff,
    1512px 32px #fff,
    871px 1425px #fff,
    433px 100px #fff,
    294px 1471px #fff,
    1688px 1755px #fff,
    1666px 591px #fff,
    1034px 300px #fff,
    734px 1178px #fff,
    1342px 313px #fff,
    1616px 1590px #fff,
    1763px 1472px #fff,
    632px 1935px #fff,
    1708px 872px #fff,
    1871px 915px #fff,
    1829px 1020px #fff,
    1599px 578px #fff,
    42px 585px #fff,
    1163px 1382px #fff,
    1744px 1272px #fff,
    984px 1426px #fff,
    1786px 1584px #fff,
    1813px 379px #fff,
    1867px 1127px #fff,
    97px 567px #fff,
    626px 988px #fff,
    1178px 79px #fff,
    1703px 211px #fff,
    961px 1785px #fff,
    110px 975px #fff,
    953px 1941px #fff,
    1027px 1790px #fff,
    1665px 107px #fff,
    11px 964px #fff,
    1718px 1147px #fff,
    21px 1728px #fff,
    1358px 1922px #fff,
    872px 65px #fff,
    1191px 1635px #fff,
    762px 681px #fff,
    1519px 1033px #fff,
    906px 566px #fff,
    1074px 657px #fff,
    1093px 415px #fff,
    51px 198px #fff,
    1075px 1418px #fff,
    1547px 1070px #fff,
    225px 920px #fff,
    850px 1974px #fff,
    981px 595px #fff,
    1425px 131px #fff,
    460px 917px #fff,
    56px 495px #fff,
    714px 428px #fff,
    920px 493px #fff,
    470px 1521px #fff,
    532px 821px #fff,
    1905px 71px #fff,
    883px 1501px #fff,
    294px 196px #fff,
    381px 1999px #fff,
    332px 793px #fff,
    1246px 408px #fff,
    233px 149px #fff,
    315px 231px #fff,
    1594px 1302px #fff,
    696px 1585px #fff,
    791px 136px #fff,
    479px 199px #fff,
    1627px 1413px #fff,
    1824px 924px #fff,
    1631px 342px #fff,
    1251px 1151px #fff,
    284px 1781px #fff,
    497px 1052px #fff,
    204px 1161px #fff,
    646px 1499px #fff,
    1762px 558px #fff,
    854px 1833px #fff,
    883px 945px #fff,
    44px 982px #fff,
    1101px 834px #fff,
    515px 1748px #fff,
    1578px 1435px #fff,
    819px 1258px #fff,
    776px 670px #fff,
    115px 385px #fff,
    1478px 434px #fff,
    885px 20px #fff,
    192px 1513px #fff,
    78px 1129px #fff,
    1774px 1105px #fff,
    955px 1149px #fff,
    1817px 1929px #fff,
    1106px 1832px #fff,
    1107px 1997px #fff,
    94px 23px #fff,
    243px 982px #fff,
    43px 1972px #fff,
    1798px 673px #fff,
    1131px 1589px #fff,
    841px 14px #fff,
    826px 345px #fff,
    687px 56px #fff,
    1084px 32px #fff,
    1887px 1878px #fff,
    153px 526px #fff,
    1828px 253px #fff,
    1947px 1105px #fff,
    886px 700px #fff,
    1307px 1723px #fff,
    1274px 651px #fff,
    1530px 837px #fff,
    1699px 1637px #fff,
    1703px 1331px #fff,
    1929px 1557px #fff,
    1763px 737px #fff,
    1118px 1680px #fff,
    1545px 692px #fff,
    1462px 1092px #fff,
    208px 1667px #fff,
    1393px 859px #fff,
    186px 1794px #fff,
    351px 1199px #fff,
    642px 1995px #fff,
    1061px 1726px #fff,
    1708px 115px #fff,
    1233px 1305px #fff,
    637px 1786px #fff,
    1730px 603px #fff,
    75px 1240px #fff,
    1704px 1326px #fff,
    584px 346px #fff,
    438px 1554px #fff,
    561px 513px #fff,
    1382px 225px #fff,
    467px 1674px #fff,
    1403px 815px #fff,
    1546px 1835px #fff,
    127px 1119px #fff,
    276px 591px #fff,
    688px 1458px #fff,
    765px 646px #fff,
    474px 984px #fff,
    171px 361px #fff,
    94px 1480px #fff,
    1962px 1666px #fff,
    909px 1037px #fff,
    1725px 222px #fff,
    253px 1355px #fff,
    1892px 1901px #fff,
    275px 1847px #fff,
    28px 1184px #fff,
    1725px 1382px #fff,
    882px 647px #fff,
    1935px 1046px #fff,
    10px 344px #fff,
    292px 1328px #fff,
    127px 1352px #fff,
    752px 929px #fff,
    1589px 384px #fff,
    284px 1829px #fff,
    381px 820px #fff,
    1229px 1125px #fff,
    777px 429px #fff,
    1811px 1499px #fff,
    1573px 287px #fff,
    295px 756px #fff,
    389px 616px #fff,
    781px 41px #fff,
    1092px 333px #fff,
    794px 1588px #fff,
    386px 1847px #fff,
    1802px 710px #fff,
    662px 60px #fff,
    640px 264px #fff,
    463px 746px #fff,
    1859px 799px #fff,
    763px 37px #fff,
    639px 396px #fff,
    357px 1071px #fff,
    1190px 1430px #fff,
    1814px 257px #fff,
    1382px 235px #fff,
    606px 1304px #fff,
    1939px 1470px #fff,
    1124px 349px #fff,
    307px 1567px #fff,
    310px 1323px #fff,
    1145px 922px #fff,
    1196px 1922px #fff,
    1647px 544px #fff,
    788px 1337px #fff,
    257px 632px #fff,
    1413px 414px #fff,
    590px 620px #fff,
    582px 794px #fff,
    1702px 1481px #fff,
    1055px 53px #fff,
    157px 346px #fff,
    50px 1901px #fff,
    1038px 1369px #fff,
    796px 1941px #fff,
    215px 194px #fff,
    1567px 1538px #fff,
    367px 800px #fff,
    1044px 489px #fff,
    1109px 1712px #fff,
    524px 327px #fff,
    525px 1252px #fff,
    1475px 1240px #fff,
    529px 436px #fff,
    795px 834px #fff,
    122px 1371px #fff,
    79px 482px #fff,
    520px 1249px #fff,
    336px 1878px #fff,
    188px 944px #fff,
    325px 1259px #fff,
    1491px 1942px #fff,
    620px 1054px #fff,
    1606px 1153px #fff,
    1448px 502px #fff,
    53px 1381px #fff,
    107px 1670px #fff,
    1380px 618px #fff,
    967px 1557px #fff,
    1116px 1722px #fff,
    1174px 1044px #fff,
    1805px 717px #fff,
    663px 394px #fff,
    1848px 1007px #fff,
    389px 802px #fff,
    49px 392px #fff,
    1650px 852px #fff,
    1678px 1012px #fff,
    335px 1009px #fff,
    1818px 1631px #fff,
    1568px 742px #fff,
    1162px 1991px #fff,
    52px 1190px #fff,
    1401px 928px #fff,
    119px 1549px #fff,
    537px 1529px #fff,
    2px 1709px #fff,
    122px 387px #fff,
    543px 2px #fff,
    27px 1971px #fff,
    507px 1377px #fff,
    1362px 1080px #fff,
    1031px 1544px #fff,
    1631px 1174px #fff,
    1603px 312px #fff,
    1626px 1422px #fff,
    1430px 615px #fff,
    1958px 1431px #fff,
    1946px 1412px #fff,
    1848px 247px #fff,
    984px 1808px #fff,
    1396px 225px #fff,
    319px 717px #fff,
    1252px 875px #fff,
    1619px 156px #fff,
    951px 1971px #fff,
    386px 355px #fff,
    1406px 1151px #fff,
    273px 1538px #fff,
    844px 1570px #fff,
    947px 151px #fff,
    1363px 525px #fff,
    209px 307px #fff,
    1923px 1718px #fff,
    993px 1741px #fff,
    1513px 353px #fff,
    1353px 61px #fff,
    664px 352px #fff,
    1382px 359px #fff,
    1487px 1707px #fff,
    657px 1045px #fff,
    1107px 490px #fff,
    1834px 1176px #fff,
    837px 1438px #fff,
    1947px 448px #fff,
    1196px 333px #fff,
    151px 555px #fff,
    18px 992px #fff,
    458px 748px #fff,
    1801px 890px #fff,
    1093px 1012px #fff,
    315px 1101px #fff,
    194px 323px #fff,
    754px 292px #fff,
    1737px 7px #fff,
    40px 840px #fff,
    1170px 805px #fff,
    176px 1753px #fff,
    805px 1148px #fff,
    1578px 1271px #fff,
    367px 1494px #fff,
    363px 1111px #fff,
    1955px 243px #fff,
    1451px 1093px #fff,
    375px 617px #fff,
    1223px 720px #fff,
    1178px 13px #fff,
    1456px 865px #fff,
    1440px 49px #fff,
    186px 1569px #fff,
    320px 1853px #fff,
    300px 539px #fff,
    1559px 509px #fff,
    1985px 1108px #fff,
    1588px 828px #fff,
    525px 1432px #fff,
    831px 363px #fff,
    141px 281px #fff,
    1319px 402px #fff,
    40px 456px #fff,
    1955px 478px #fff,
    1758px 818px #fff,
    1924px 688px #fff,
    1030px 953px #fff,
    1982px 210px #fff,
    917px 1401px #fff,
    1051px 1837px #fff,
    1045px 463px #fff,
    1744px 573px #fff,
    529px 1530px #fff,
    542px 469px #fff,
    1982px 324px #fff,
    1902px 1422px #fff,
    1968px 782px #fff,
    1666px 1561px #fff,
    955px 304px #fff,
    323px 778px #fff,
    272px 443px #fff,
    485px 581px #fff,
    1353px 1058px #fff,
    1257px 131px #fff,
    434px 98px #fff,
    1587px 1953px #fff,
    1749px 68px #fff,
    1984px 839px #fff,
    1518px 183px #fff,
    1071px 855px #fff,
    1662px 1994px #fff,
    1111px 106px #fff,
    1954px 838px #fff;
  animation: animStar 50s linear infinite;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}

#stars2 {
  width: 2px;
  height: 2px;
  background: transparent;
  box-shadow:
    1925px 1320px #fff,
    693px 1778px #fff,
    1016px 711px #fff,
    1171px 563px #fff,
    661px 1919px #fff,
    1610px 44px #fff,
    1275px 140px #fff,
    1208px 1802px #fff,
    1473px 1587px #fff,
    11px 1117px #fff,
    853px 1757px #fff,
    1149px 937px #fff,
    1353px 428px #fff,
    270px 279px #fff,
    258px 1404px #fff,
    417px 1188px #fff,
    286px 561px #fff,
    393px 1765px #fff,
    147px 881px #fff,
    666px 1097px #fff,
    1425px 1278px #fff,
    806px 156px #fff,
    1252px 561px #fff,
    218px 52px #fff,
    1371px 1980px #fff,
    171px 745px #fff,
    1424px 89px #fff,
    137px 244px #fff,
    939px 1922px #fff,
    137px 1080px #fff,
    1757px 50px #fff,
    904px 536px #fff,
    1938px 1001px #fff,
    1172px 440px #fff,
    72px 1475px #fff,
    102px 121px #fff,
    804px 1671px #fff,
    1314px 270px #fff,
    440px 1341px #fff,
    1216px 511px #fff,
    1061px 1523px #fff,
    97px 274px #fff,
    704px 1318px #fff,
    52px 1872px #fff,
    1962px 296px #fff,
    111px 289px #fff,
    1157px 1236px #fff,
    1347px 1451px #fff,
    820px 286px #fff,
    1389px 1169px #fff,
    644px 841px #fff,
    1286px 522px #fff,
    955px 659px #fff,
    428px 1805px #fff,
    237px 557px #fff,
    1689px 1058px #fff,
    636px 1882px #fff,
    1349px 1664px #fff,
    1548px 432px #fff,
    1841px 504px #fff,
    302px 252px #fff,
    827px 1765px #fff,
    620px 123px #fff,
    207px 748px #fff,
    1454px 1234px #fff,
    1967px 1790px #fff,
    542px 33px #fff,
    742px 1214px #fff,
    255px 1402px #fff,
    74px 1772px #fff,
    699px 475px #fff,
    980px 1253px #fff,
    534px 1676px #fff,
    909px 202px #fff,
    1498px 1251px #fff,
    1796px 120px #fff,
    1409px 1263px #fff,
    1627px 995px #fff,
    969px 710px #fff,
    1674px 676px #fff,
    1832px 759px #fff,
    1623px 563px #fff,
    251px 1790px #fff,
    96px 1688px #fff,
    886px 239px #fff,
    778px 150px #fff,
    1767px 430px #fff,
    765px 1259px #fff,
    1189px 877px #fff,
    444px 1629px #fff,
    1560px 324px #fff,
    1952px 1097px #fff,
    712px 1173px #fff,
    541px 911px #fff,
    827px 1420px #fff,
    1233px 285px #fff,
    784px 546px #fff,
    645px 285px #fff,
    1273px 1255px #fff,
    1821px 174px #fff,
    221px 1795px #fff,
    1004px 456px #fff,
    1298px 941px #fff,
    274px 387px #fff,
    174px 376px #fff,
    1491px 258px #fff,
    1489px 1946px #fff,
    1134px 1382px #fff,
    1289px 1145px #fff,
    464px 358px #fff,
    1249px 1842px #fff,
    1665px 831px #fff,
    1982px 84px #fff,
    541px 774px #fff,
    1994px 523px #fff,
    762px 1644px #fff,
    1730px 867px #fff,
    1951px 1287px #fff,
    911px 1691px #fff,
    1454px 725px #fff,
    1287px 1940px #fff,
    70px 564px #fff,
    1980px 638px #fff,
    1674px 1774px #fff,
    1720px 116px #fff,
    1747px 182px #fff,
    1040px 450px #fff,
    1795px 375px #fff,
    857px 1471px #fff,
    1326px 1730px #fff,
    915px 274px #fff,
    1224px 358px #fff,
    1808px 60px #fff,
    43px 1870px #fff,
    1810px 1536px #fff,
    1564px 1719px #fff,
    731px 1388px #fff,
    1953px 1967px #fff,
    1744px 1119px #fff,
    794px 1384px #fff,
    959px 714px #fff,
    18px 1932px #fff,
    1358px 1437px #fff,
    355px 939px #fff,
    1355px 1648px #fff,
    608px 719px #fff,
    383px 758px #fff,
    1164px 1681px #fff,
    1045px 253px #fff,
    424px 1279px #fff,
    1899px 359px #fff,
    379px 488px #fff,
    214px 465px #fff,
    179px 905px #fff,
    830px 1993px #fff,
    448px 1077px #fff,
    1880px 1354px #fff,
    1973px 347px #fff,
    745px 1025px #fff,
    788px 1007px #fff,
    1377px 883px #fff,
    6px 290px #fff,
    1312px 407px #fff,
    1398px 622px #fff,
    1405px 339px #fff,
    1198px 1709px #fff,
    988px 1226px #fff,
    87px 1459px #fff,
    1113px 1698px #fff,
    997px 732px #fff,
    708px 331px #fff,
    1876px 1112px #fff,
    1729px 1797px #fff,
    719px 703px #fff,
    1295px 522px #fff,
    758px 1061px #fff,
    1309px 1014px #fff,
    1327px 1365px #fff,
    854px 1317px #fff,
    531px 1001px #fff,
    1751px 1040px #fff,
    1354px 190px #fff,
    800px 1538px #fff,
    88px 1455px #fff,
    668px 39px #fff,
    1379px 41px #fff,
    892px 524px #fff,
    54px 649px #fff,
    1289px 730px #fff,
    727px 488px #fff,
    181px 842px #fff,
    1230px 64px #fff,
    3px 857px #fff,
    292px 1201px #fff,
    1343px 673px #fff,
    1096px 1412px #fff,
    1520px 292px #fff,
    104px 1683px #fff,
    934px 1387px #fff,
    314px 739px #fff;
  animation: animStar 100s linear infinite;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}

#stars3 {
  width: 3px;
  height: 3px;
  background: transparent;
  box-shadow:
    200px 981px #fff,
    1731px 521px #fff,
    132px 1039px #fff,
    1888px 1547px #fff,
    899px 1226px #fff,
    1887px 580px #fff,
    1548px 1092px #fff,
    1626px 689px #fff,
    254px 1072px #fff,
    1684px 1211px #fff,
    672px 1267px #fff,
    939px 668px #fff,
    1969px 645px #fff,
    1126px 983px #fff,
    457px 568px #fff,
    476px 876px #fff,
    829px 1896px #fff,
    1364px 1846px #fff,
    1507px 1120px #fff,
    936px 1948px #fff,
    1833px 832px #fff,
    1424px 285px #fff,
    1377px 1596px #fff,
    432px 153px #fff,
    1348px 1410px #fff,
    1529px 954px #fff,
    1102px 387px #fff,
    264px 297px #fff,
    811px 977px #fff,
    1931px 673px #fff,
    1734px 978px #fff,
    1772px 1567px #fff,
    1197px 1400px #fff,
    764px 282px #fff,
    1103px 822px #fff,
    872px 1803px #fff,
    1057px 1763px #fff,
    52px 1299px #fff,
    1312px 1236px #fff,
    235px 1082px #fff,
    299px 1086px #fff,
    1017px 1602px #fff,
    1950px 626px #fff,
    1306px 132px #fff,
    1358px 1618px #fff,
    1873px 1718px #fff,
    1447px 940px #fff,
    1888px 1195px #fff,
    1704px 1765px #fff,
    872px 1357px #fff,
    1555px 1120px #fff,
    250px 1415px #fff,
    450px 415px #fff,
    492px 901px #fff,
    170px 1641px #fff,
    56px 1129px #fff,
    627px 1514px #fff,
    1221px 500px #fff,
    324px 1895px #fff,
    1397px 1775px #fff,
    1966px 598px #fff,
    1550px 763px #fff,
    326px 1605px #fff,
    261px 969px #fff,
    890px 281px #fff,
    736px 544px #fff,
    589px 1262px #fff,
    1581px 368px #fff,
    1900px 1132px #fff,
    1914px 585px #fff,
    186px 1569px #fff,
    241px 217px #fff,
    859px 787px #fff,
    996px 1729px #fff,
    741px 121px #fff,
    418px 414px #fff,
    142px 967px #fff,
    387px 896px #fff,
    703px 562px #fff,
    968px 1136px #fff,
    1682px 332px #fff,
    1287px 846px #fff,
    256px 1427px #fff,
    1885px 432px #fff,
    1739px 1458px #fff,
    345px 1769px #fff,
    1140px 1612px #fff,
    192px 1921px #fff,
    920px 471px #fff,
    834px 881px #fff,
    917px 1803px #fff,
    466px 1266px #fff,
    483px 1108px #fff,
    689px 986px #fff,
    1279px 786px #fff,
    458px 910px #fff,
    1250px 870px #fff,
    785px 1654px #fff,
    1543px 1757px #fff,
    287px 1272px #fff;
  animation: animStar 150s linear infinite;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}

@keyframes animStar {
  from { transform: translateY(0px); }
  to { transform: translateY(-2000px); }
}

/* ─── Uiverse Glowing Notification Changelogs Cards ─── */
.notification {
  display: flex;
  flex-direction: column;
  isolation: isolate;
  position: relative;
  background: #18181c !important;
  border-radius: 12px;
  overflow: hidden;
  --gradient: linear-gradient(to bottom, #2eadff, #3d83ff, #7e61ff);
  --color: #32a6ff;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.1rem 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}

.notification:before {
  position: absolute;
  content: "";
  inset: 1px;
  border-radius: 11px;
  background: #0d0d11 !important;
  z-index: 2;
  pointer-events: none;
}

.notification:after {
  position: absolute;
  content: "";
  width: 4px;
  inset: 0.65rem auto 0.65rem 0.5rem;
  border-radius: 4px;
  background: var(--gradient);
  transition: transform 300ms ease;
  z-index: 4;
}

.notification:hover:after {
  transform: translateX(0.15rem);
}

.notititle {
  color: var(--color);
  padding: 0 0 0.5rem 0.8rem;
  font-weight: 800;
  font-size: 1.05rem;
  transition: transform 300ms ease;
  z-index: 5;
  position: relative;
}

.notification:hover .notititle {
  transform: translateX(0.15rem);
}

.notibody {
  color: #99999d;
  padding: 0 0.8rem;
  transition: transform 300ms ease;
  z-index: 5;
  position: relative;
}

.notification:hover .notibody {
  transform: translateX(0.25rem);
}

.notiglow,
.notiborderglow {
  position: absolute;
  width: 15rem;
  height: 15rem;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle closest-side at center, rgba(255,255,255,0.25), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.notiglow {
  z-index: 3;
}

.notiborderglow {
  z-index: 1;
}

.notification:hover .notiglow {
  opacity: 0.15;
}

.notification:hover .notiborderglow {
  opacity: 0.15;
}

/* ─── Premium Member Sidebar (Uiverse Card Theme) ─── */
.portal-sidebar {
  width: 240px !important;
  background-color: rgba(36, 40, 50, 1) !important;
  background-image: linear-gradient(139deg, rgba(36, 40, 50, 1) 0%, rgba(36, 40, 50, 1) 0%, rgba(37, 28, 40, 1) 100%) !important;
  border-radius: 12px !important;
  padding: 15px 0px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;
  border-right: none !important;
  height: 100% !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.5) !important;
}

.portal-nav-separator {
  border-top: 1.5px solid #42434a;
  margin: 5px 0;
}

.portal-nav-list {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0px 10px;
  margin: 0;
}

.portal-nav-element {
  display: flex;
  align-items: center;
  color: #7e8590 !important;
  gap: 10px;
  transition: all 0.3s ease-out;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.82rem;
}

.portal-nav-element svg,
.portal-nav-element i {
  width: 18px !important;
  height: 18px !important;
  stroke: #7e8590;
  transition: all 0.3s ease-out;
  display: inline-block;
  flex-shrink: 0;
}

.portal-nav-element .label {
  font-weight: 600;
  margin: 0;
}

/* Hover effects */
.portal-nav-element:hover {
  background-color: #5353ff !important;
  color: #ffffff !important;
  transform: translate(1px, -1px);
}

.portal-nav-element:hover svg,
.portal-nav-element:hover i {
  stroke: #ffffff !important;
}

.portal-nav-element.active {
  background-color: #5353ff !important;
  color: #ffffff !important;
}

.portal-nav-element.active svg,
.portal-nav-element.active i {
  stroke: #ffffff !important;
}

/* Delete element (Sair) */
.portal-nav-element.portal-nav-delete:hover {
  background-color: #8e2a2a !important;
  color: #ffffff !important;
}

.portal-nav-element:active {
  transform: scale(0.99);
}

/* Special purple color highlight for the last list (Sair or other special actions) */
.portal-nav-list-purple .portal-nav-element {
  color: #bd89ff !important;
}
.portal-nav-list-purple .portal-nav-element svg,
.portal-nav-list-purple .portal-nav-element i {
  stroke: #bd89ff !important;
}
.portal-nav-list-purple .portal-nav-element:hover {
  background-color: rgba(56, 45, 71, 0.836) !important;
}

/* ─── Uiverse Pricing/Project Cards (Dark Theme Adaptation) ─── */
.project-price-card {
  display: flex;
  flex-direction: column;
  background-color: #141414; /* chinese-black */
  border: 1px solid #2e2e2e; /* night rider */
  border-radius: 24px;
  padding: 2.25rem 2rem;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  position: relative;
  overflow: hidden;
}

.project-price-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.015), transparent);
  pointer-events: none;
}

.project-price-card:hover {
  transform: translateY(-5px);
  border-color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65);
}

.project-card-header {
  display: flex;
  flex-direction: column;
  width: 100%;
  text-align: left;
}

.project-tier-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0;
}

.project-tier-desc {
  margin-top: 0.6rem;
  font-size: 0.84rem;
  color: #99999d;
  line-height: 1.45;
  min-height: 2.8rem;
}

.project-card-price-wrap {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.project-price-amount {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.project-price-unit {
  font-size: 0.88rem;
  font-weight: 700;
  color: #99999d;
}

.project-card-btn-wrap {
  margin-top: 2rem;
  display: flex;
  width: 100%;
}

.project-card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.75rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.88rem;
  border-radius: 9999px;
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.project-price-card:hover .project-card-btn {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* ─── Uiverse Live Warnings / Announcements Animations ─── */
.live-alert-toast {
  animation: alertSlideIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.live-alert-toast.alert-leaving {
  animation: alertSlideOut 0.3s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes alertSlideIn {
  0% { transform: translateY(-120px) scale(0.9); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes alertSlideOut {
  0% { transform: translateY(0) scale(1); opacity: 1; }
  100% { transform: translateY(-120px) scale(0.9); opacity: 0; }
}

/* ─── Cart Drawer Stars Parallax & Dark Styling ─── */
.cart-drawer {
  background: #000000 !important; /* solid black drawer */
  border-left: 1px solid #2e2e2e !important;
  position: fixed !important;
  right: 0 !important;
  left: auto !important;
  top: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
  width: min(460px, 100vw) !important;
  display: flex !important;
  flex-direction: column !important;
  z-index: 999999 !important;
}



/* ─── Uiverse Stats Card styling ─── */
.stats {
  display: inline-grid;
  background-color: #141414 !important; /* chinese-black */
  color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #2e2e2e !important; /* night rider */
  padding: 0.5rem;
}

.shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.stat {
  display: inline-grid;
  width: 100%;
  grid-template-columns: repeat(1, 1fr);
  column-gap: 1rem;
  padding: 1rem 2.5rem;
}

.stat-title {
  grid-column-start: 1;
  white-space: nowrap;
  color: #99999d;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-value {
  grid-column-start: 1;
  white-space: nowrap;
  font-size: 2.5rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.stat-desc {
  grid-column-start: 1;
  white-space: nowrap;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #99999d;
}

/* ─── INFINITE MARQUEE ─── */
.marquee {
  overflow: hidden;
  width: 100%;
  background: #0d0d0d;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.55rem 0;
  position: relative;
  z-index: 100;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee-scroll 24s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
}

.marquee__group span {
  margin: 0 2rem;
  white-space: nowrap;
  color: #c5c2c2;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── GROUP HOVER BLUR EFFECTS & 3D TILT ─── */
.custom-project-cards-group {
  perspective: 1200px;
}
.prod-grid {
  perspective: 1200px;
}

/* Card clarity forced */

/* ─── GLASSMORPHIC CUSTOM PROJECT CARDS (Yaya12085) ─── */
.pack-container.custom-project-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  background: rgba(15, 15, 15, 0.35) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2.2rem 1.6rem 1.6rem 1.6rem;
  color: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  transform-style: preserve-3d;
  overflow: hidden;
}

.pack-container.custom-project-card::before {
  content: "";
  width: 10rem;
  height: 10rem;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  filter: blur(60px);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pack-container.custom-project-card.blur-card-red::before {
  background-color: rgba(239, 68, 68, 0.35);
}
.pack-container.custom-project-card.blur-card-blue::before {
  background-color: rgba(59, 130, 246, 0.35);
}
.pack-container.custom-project-card.blur-card-green::before {
  background-color: rgba(34, 197, 94, 0.35);
}

.pack-container.custom-project-card:hover::before {
  opacity: 1;
}

.pack-container.custom-project-card:hover {
  transform: translateY(-10px) scale(1.04) rotateX(6deg) rotateY(-2deg) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85) !important;
  z-index: 10;
}

/* ─── STORE PRODUCT CARD 3D TILT OVERRIDES ─── */
.prod-card {
  transform-style: preserve-3d;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}
.prod-card:hover {
  transform: translateY(-10px) scale(1.04) rotateX(6deg) rotateY(-2deg) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.85) !important;
  z-index: 10;
}

.pack-container .header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.pack-container .title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #99999d;
  letter-spacing: 0.12em;
  font-weight: 800;
  margin: 0;
}

.price-container {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #ffffff;
}

.price-container span {
  font-size: 1.2rem;
}

.lists {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

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

.list span {
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background-color: rgba(255, 255, 255, 0.04);
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.list span svg {
  height: 10px;
  width: 10px;
  stroke: #ffffff;
}

.list p {
  display: block;
  font-family: inherit;
  font-size: 0.85rem;
  color: #d1d1d6;
  margin: 0;
}

.button-container {
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.button-container button {
  display: block;
  width: 100%;
  background-color: #ffffff;
  color: #000000;
  padding: 0.75rem 1.25rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.button-container button:hover {
  background-color: transparent;
  color: #ffffff;
  box-shadow: inset 0 0 0 1.5px #ffffff;
}

/* ─── Uiverse Credit Card Terminal Pay Button ─── */
.uiverse-cc-submit-container {
  background-color: #141414;
  border: 1px solid #2e2e2e;
  display: flex;
  width: 100%;
  max-width: 440px;
  height: 90px;
  position: relative;
  border-radius: 12px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.uiverse-cc-submit-container:hover {
  transform: scale(1.02);
  border-color: #3b82f6;
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.25);
}

.uiverse-cc-submit-container .left-side {
  background-color: #3b82f6;
  width: 110px;
  height: 90px;
  border-radius: 10px 0 0 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  overflow: hidden;
}

.uiverse-cc-submit-container:hover .left-side {
  width: 100%;
  border-radius: 10px;
}

.uiverse-cc-submit-container .right-side {
  width: calc(100% - 110px);
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  justify-content: space-between;
  white-space: nowrap;
  transition: 0.3s;
}

.uiverse-cc-submit-container .right-side:hover {
  background-color: #1b1b1b;
}

.uiverse-cc-submit-container .arrow {
  width: 18px;
  height: 18px;
  margin-right: 18px;
}

.uiverse-cc-submit-container .new {
  font-size: 1.05rem;
  font-weight: 800;
  margin-left: 20px;
  color: #ffffff;
}

.uiverse-cc-submit-container .card {
  width: 60px;
  height: 38px;
  background-color: #93c5fd;
  border-radius: 6px;
  position: absolute;
  display: flex;
  z-index: 10;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
}

.uiverse-cc-submit-container .card-line {
  width: 52px;
  height: 10px;
  background-color: #60a5fa;
  border-radius: 2px;
  margin-top: 6px;
}

.uiverse-cc-submit-container .buttons {
  width: 6px;
  height: 6px;
  background-color: #1e40af;
  box-shadow: 0 -8px 0 0 #1e3a8a, 0 8px 0 0 #3b82f6;
  border-radius: 50%;
  margin-top: 4px;
  transform: rotate(90deg);
  margin: 8px 0 0 -22px;
}

.uiverse-cc-submit-container:hover .card {
  animation: slide-top 1.2s cubic-bezier(0.645, 0.045, 0.355, 1) both;
}

.uiverse-cc-submit-container:hover .post {
  animation: slide-post 1s cubic-bezier(0.165, 0.84, 0.44, 1) both;
}

@keyframes slide-top {
  0% { transform: translateY(0); }
  50% { transform: translateY(-55px) rotate(90deg); }
  60% { transform: translateY(-55px) rotate(90deg); }
  100% { transform: translateY(-6px) rotate(90deg); }
}

.uiverse-cc-submit-container .post {
  width: 54px;
  height: 64px;
  background-color: #2e2e2e;
  position: absolute;
  z-index: 11;
  bottom: 8px;
  top: 90px;
  border-radius: 6px;
  overflow: hidden;
}

.uiverse-cc-submit-container .post-line {
  width: 40px;
  height: 7px;
  background-color: #141414;
  position: absolute;
  border-radius: 0px 0px 3px 3px;
  right: 7px;
  top: 7px;
}

.uiverse-cc-submit-container .post-line:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 7px;
  background-color: #1b1b1b;
  top: -7px;
}

.uiverse-cc-submit-container .screen {
  width: 40px;
  height: 20px;
  background-color: #e5e7eb;
  position: absolute;
  top: 18px;
  right: 7px;
  border-radius: 3px;
}

.uiverse-cc-submit-container .numbers {
  width: 10px;
  height: 10px;
  background-color: #6b7280;
  box-shadow: 0 -14px 0 0 #6b7280, 0 14px 0 0 #6b7280;
  border-radius: 2px;
  position: absolute;
  transform: rotate(90deg);
  left: 22px;
  top: 42px;
}

.uiverse-cc-submit-container .numbers-line2 {
  width: 10px;
  height: 10px;
  background-color: #9ca3af;
  box-shadow: 0 -14px 0 0 #9ca3af, 0 14px 0 0 #9ca3af;
  border-radius: 2px;
  position: absolute;
  transform: rotate(90deg);
  left: 22px;
  top: 54px;
}

@keyframes slide-post {
  50% { transform: translateY(0); }
  100% { transform: translateY(-55px); }
}

.uiverse-cc-submit-container .dollar {
  position: absolute;
  font-size: 13px;
  font-family: inherit;
  width: 100%;
  left: 0;
  top: 1px;
  color: #1e3a8a;
  text-align: center;
  font-weight: 800;
}

.uiverse-cc-submit-container:hover .dollar {
  animation: fade-in-fwd 0.3s 1s backwards;
}

@keyframes fade-in-fwd {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}







/* Admin dash modal overlay uses cart-overlay z-index */


/* =============================================
   ANIMAÇÕES 3D & EFEITOS VISUAIS
   ============================================= */

/* ── Tilt 3D nos cards de produto ── */
.product-card-tilt {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  will-change: transform;
}
.product-card-tilt:hover {
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 40px rgba(255,255,255,0.04);
}
.product-card-tilt .card-shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.product-card-tilt:hover .card-shine { opacity: 1; }

/* ── Floating glow orbs (hero background) ── */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
  opacity: 0.18;
}
.glow-orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(120,80,255,0.6), transparent 70%);
  top: -100px; left: -80px;
  animation-delay: 0s;
}
.glow-orb-2 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,120,40,0.5), transparent 70%);
  top: 60px; right: -60px;
  animation-delay: -3s;
}
.glow-orb-3 {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(40,180,255,0.4), transparent 70%);
  bottom: -40px; left: 30%;
  animation-delay: -5.5s;
}
@keyframes orbFloat {
  0%,100% { transform: translateY(0) scale(1); }
  33%      { transform: translateY(-28px) scale(1.04); }
  66%      { transform: translateY(14px) scale(0.97); }
}

/* ── Scroll reveal (fade + slide) ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Badge pulse (UNDETECTED / LIVE) ── */
@keyframes badgePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}
.badge-pulse {
  animation: badgePulse 2.2s ease infinite;
}

/* ── Shimmer loading skeleton ── */
@keyframes shimmer {
  from { background-position: -400px 0; }
  to   { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.09) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 800px 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 8px;
}

/* ── Cursor glow trail (desktop only) ── */
@media (hover: hover) and (pointer: fine) {
  #cursor-glow {
    position: fixed;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(160,120,255,0.12) 0%, transparent 65%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: left 0.08s linear, top 0.08s linear;
    mix-blend-mode: screen;
  }
}

