/* ===========================
   Black Store - style.css
   Fully Optimized for Mobile & PC
   =========================== */

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

html {
  background-color: #000000;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: #000000;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  color: #f1f5f9;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}


::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 3px;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
  contain: strict;
}

@media (pointer: fine) {}

.blue {
  background: linear-gradient(135deg, #4da6ff 0%, #2563eb 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #4da6ff;
  filter: drop-shadow(0 0 15px rgba(77, 166, 255, 0.4));
  display: inline-block;
}

/* NAVBAR */
.header {
  position: fixed;
  top: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 0 1rem;
  pointer-events: none;
}

.navbar {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(12, 14, 20, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.5rem 0.5rem 0.5rem 1.4rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.navbar-logo {
  width: 30px;
  height: auto;
  margin-right: 0.5rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  align-items: center;
}

.nav-links a {
  display: inline-block;
  color: #a1a1aa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-discord {
  background: #ffffff;
  color: #000000 !important;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  margin-left: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.nav-discord:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
  transform: translateY(-1px) scale(1.02);
}

.nav-fullscreen-btn {
  background: rgba(255, 255, 255, 0.08);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-fullscreen-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-color: #4da6ff;
  box-shadow: 0 0 15px rgba(77, 166, 255, 0.3);
  transform: translateY(-1px);
}

/* CURRENCY (unused but kept) */
.currency-wrapper {
  position: relative;
  margin-left: 0.4rem;
}

.currency-btn {
  background: rgba(20, 20, 20, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #cbd5e1;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition: all 0.2s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.currency-btn:hover {
  background: rgba(30, 30, 30, 0.85);
}

.currency-btn .caret {
  font-size: 0.7rem;
  transition: transform 0.2s;
}

.currency-wrapper.open .caret {
  transform: rotate(180deg);
}

.currency-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 220px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  padding: 0.75rem;
  z-index: 200;
}

.currency-wrapper.open .currency-dropdown {
  display: block;
}

.currency-search {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  background: rgba(0, 0, 0, 0.2);
  color: #f1f5f9;
  outline: none;
  margin-bottom: 0.5rem;
}

.currency-search::placeholder {
  color: #cbd5e1;
}

.currency-list {
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
}

.currency-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: #cbd5e1;
  transition: background 0.15s;
}

.currency-list li:hover {
  background: rgba(255, 255, 255, 0.08);
}

.currency-list li.selected {
  color: #cbd5e1;
  font-weight: 600;
}

.currency-check {
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 2rem 80px;
  position: relative;
  z-index: 1;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 780px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.6);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.status-badge strong {
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8), 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero-logo {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0) 70%);
  background-size: 200% 100%;
  animation: shine 3s infinite linear;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.5), 0 0 50px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn-primary:hover::before {
  opacity: 0.2;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
  transform: translateY(-3px) scale(1.02);
}

.btn-card {
  background: #ffffff;
  color: #000000;
  width: 100%;
  display: block;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-card:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 40px rgba(255, 255, 255, 0.15);
  transform: translateY(-3px) scale(1.02);
}

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

  100% {
    background-position: -200% 0;
  }
}

/* SECTIONS */
section {
  position: relative;
  z-index: 1;
  padding: 100px 8%;
}

.section-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #e2e8f0;
  margin: 0 auto 1.5rem auto;
  display: table;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.sub-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.section-desc {
  text-align: center;
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* PRODUCTS */
.products-section {
  background: transparent;
}

.products-header {
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── Category Tabs ── */
.cat-tabs {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.cat-tab {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.cat-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #f1f5f9;
  border-color: rgba(255, 255, 255, 0.25);
}

.cat-tab.active {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.2), rgba(110, 90, 255, 0.2));
  border-color: rgba(77, 166, 255, 0.5);
  color: #e0f0ff;
  box-shadow: 0 0 20px rgba(77, 166, 255, 0.2);
}

/* ── Image-first product cards ── */
.product-card.img-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Override the base opacity:0 animation — img-cards are always visible */
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.product-card.img-card:hover .card-img {
  transform: scale(1.07);
}

.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(10,10,18,0.7) 100%);
  z-index: 2;
}

.card-body {
  padding: 1.4rem 1.6rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body .card-brand {
  display: block;
  margin-bottom: 0.4rem;
}

.card-body .card-desc {
  flex: 1;
}

.card-body .btn-card {
  align-self: flex-start;
  margin-top: auto;
}

.product-card {
  background: linear-gradient(180deg, rgba(25, 25, 30, 0.8) 0%, rgba(15, 15, 20, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: opacity 0.5s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.product-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 40px rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.product-card.featured {
  background: linear-gradient(180deg, rgba(30, 30, 35, 0.8) 0%, rgba(20, 20, 25, 0.9) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 0 30px rgba(255, 255, 255, 0.08);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.25rem 0;
}

.card-tag.monthly {
  color: #cbd5e1;
}

.card-tag.months {
  color: #e2e8f0;
}

.card-tag.best {
  color: #f1f5f9;
}

.card-brand {
  font-size: 0.7rem;
  font-weight: 600;
  color: #cbd5e1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4), 0 0 15px rgba(255, 255, 255, 0.2);
}

.card-desc {
  font-size: 0.88rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.price-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.price-label {
  font-size: 0.88rem;
  color: #cbd5e1;
  font-weight: 500;
}

.price-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.feature-list {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  list-style: none;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.feature-list li {
  font-size: 0.9rem;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.check-icon {
  color: #ffffff;
  font-size: 0.65rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

/* STATUS */
.status-section {
  background: transparent;
}

.status-main {
  max-width: 800px;
  margin: 2rem auto 1.5rem;
  background: rgba(18, 18, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.status-main-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.status-ok {
  font-size: 0.88rem;
  font-weight: 600;
  color: #4ade80;
}

.status-updated {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.status-card {
  background: rgba(18, 18, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.status-card-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-card-left strong {
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
}

.status-value {
  font-size: 0.85rem;
  font-weight: 600;
}

.status-value.green {
  color: #4ade80;
}

.status-value.orange {
  color: #f1f5f9;
}

.status-desc {
  font-size: 0.82rem;
  color: #cbd5e1;
  margin-top: 0.25rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot.green {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.5);
}

.dot.blue {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.dot.orange {
  background: #f59e0b;
}

/* FAQ */
.faq-section {
  background: transparent;
}

.faq-list {
  max-width: 740px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq-item {
  background: rgba(18, 18, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item:hover {
  background: rgba(25, 25, 30, 0.9);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  background: transparent;
  border: none;
  color: #f1f5f9;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-icon {
  color: #cbd5e1;
  font-size: 1.3rem;
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  color: #cbd5e1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  color: #cbd5e1;
  line-height: 1.7;
  font-size: 0.9rem;
  padding: 0 1.4rem 1.2rem;
}

.faq-item.open .faq-answer {
  max-height: 200px;
}

/* LEGAL */
.legal-section {
  background: transparent;
}

.legal-subtitle {
  text-align: center;
  font-size: 0.88rem;
  color: #cbd5e1;
  margin-bottom: 2.5rem;
}

.legal-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(18, 18, 22, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
}

.legal-card p {
  font-size: 0.92rem;
  color: #cbd5e1;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.legal-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}

.legal-card h3:first-child {
  margin-top: 0;
}

/* FOOTER */
.footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 6%;
  background: rgba(15, 15, 18, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-weight: 700;
  font-size: 0.9rem;
  color: #f1f5f9;
}

.footer-copy {
  font-size: 0.82rem;
  color: #cbd5e1;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-right a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-right a:hover {
  color: #f1f5f9;
}

.footer-discord {
  color: #cbd5e1 !important;
  font-weight: 600;
}

/* ANIMATIONS */
@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* SHOWCASE */
.showcase-container {
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(10, 10, 10, 0.8);
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.showcase-video {
  width: 100%;
  height: auto;
  display: block;
  outline: none;
}

/* MAIN HERO LOGO & CYBER BADGE */
.hero-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.hero-logo-halo {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 166, 255, 0.3) 0%, rgba(37, 99, 235, 0.12) 50%, transparent 75%);
  filter: blur(28px);
  animation: haloPulse 4s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}

.hero-logo-ring {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px dashed rgba(77, 166, 255, 0.35);
  animation: ringRotate 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

.main-logo {
  position: relative;
  z-index: 1;
  max-width: 170px;
  max-height: 170px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 25px rgba(77, 166, 255, 0.7)) drop-shadow(0 0 50px rgba(59, 130, 246, 0.35));
  animation: heroLogoFloat 5s ease-in-out infinite alternate;
  will-change: transform, filter;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.4s ease;
}

.main-logo:hover {
  transform: scale(1.08) translateY(-4px);
  filter: drop-shadow(0 0 35px rgba(77, 166, 255, 0.95)) drop-shadow(0 0 80px rgba(59, 130, 246, 0.6));
}

@keyframes heroLogoFloat {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes haloPulse {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.15); opacity: 1; }
}

@keyframes ringRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* CUSTOM CURSOR STYLES */
.custom-cursor-dot,
.custom-cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999999;
  will-change: transform;
}

.custom-cursor-dot {
  width: 8px;
  height: 8px;
  background: #4da6ff;
  border-radius: 50%;
  box-shadow: 0 0 12px #4da6ff, 0 0 24px rgba(77, 166, 255, 0.8);
  transform: translate(-50%, -50%);
}

.custom-cursor-outline {
  display: block;
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(77, 166, 255, 0.5);
  background: rgba(77, 166, 255, 0.05);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background-color 0.2s, border-color 0.2s;
}

/* HARDWARE ACCELERATION */
.product-card,
.status-card,
.faq-item,
.visible,
.legal-card,
.status-main,
.navbar {
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* PREVENT IMAGE DRAGGING & SAVING */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
}

/* GPU TOAST */
.gpu-toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  transform: translateY(100px);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 16px 10px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gpu-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.gpu-toast-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gpu-toast-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
}

.gpu-toast-content {
  font-size: 0.8rem;
  color: #f1f5f9;
  line-height: 1.4;
  max-width: 280px;
}

.gpu-toast-content strong {
  color: #ffffff;
  font-weight: 700;
}

.gpu-toast-close {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 1.05rem;
  cursor: pointer;
  padding: 3px;
  margin-left: 3px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.gpu-toast-close:hover {
  color: #ffffff;
}

/* PRELOADER */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #0a0f1c 0%, #000000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999999;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s ease, transform 0.8s ease;
  overflow: hidden;
}

.preloader::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
  animation: pulse-bg 4s infinite alternate;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.08);
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.preloader.hidden .preloader-content {
  transform: scale(1.1) translateY(-20px);
}

.preloader-logo {
  width: 140px;
  height: auto;
  animation: float-logo 4s ease-in-out infinite;
  filter: drop-shadow(0 0 35px rgba(255, 255, 255, 0.5));
  margin-bottom: 5px;
}

.preloader-brand {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 16px;
  color: #ffffff;
  margin-left: 16px;
  text-transform: uppercase;
  margin-bottom: 35px;
  animation: pulse-glow-text 3s ease-in-out infinite alternate;
}

.preloader-loader {
  width: 280px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.05);
}

.preloader-loader-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 0 15px #ffffff, 0 0 30px #ffffff, 0 0 45px rgba(255, 255, 255, 0.6);
  transform-origin: left;
  transform: scaleX(0);
  will-change: transform;
}

@keyframes float-logo {

  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.3));
  }

  50% {
    transform: translateY(-15px) scale(1.02);
    filter: drop-shadow(0 0 50px rgba(255, 255, 255, 0.6));
  }
}

@keyframes pulse-glow-text {
  0% {
    opacity: 0.8;
    letter-spacing: 16px;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
  }

  100% {
    opacity: 1;
    letter-spacing: 19px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 50px rgba(255, 255, 255, 0.4);
  }
}

@keyframes load-bar {
  0% {
    transform: translateX(-100%);
  }

  40% {
    transform: translateX(-30%);
  }

  80% {
    transform: translateX(-10%);
  }

  100% {
    transform: translateX(0%);
  }
}

@keyframes pulse-bg {
  0% {
    opacity: 0.3;
  }

  100% {
    opacity: 1;
  }
}

/* SNOWFLAKES */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

.snowflakes i {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 5px #fff;
  animation: snow-fall linear infinite;
  top: -20px;
}

.snowflakes i:nth-child(1) {
  left: 10%;
  width: 4px;
  height: 4px;
  animation-duration: 8s;
  animation-delay: -0s;
  opacity: 0.8;
}

.snowflakes i:nth-child(2) {
  left: 20%;
  width: 6px;
  height: 6px;
  animation-duration: 12s;
  animation-delay: -2s;
  opacity: 0.5;
}

.snowflakes i:nth-child(3) {
  left: 30%;
  width: 3px;
  height: 3px;
  animation-duration: 10s;
  animation-delay: -4s;
  opacity: 0.9;
}

.snowflakes i:nth-child(4) {
  left: 40%;
  width: 5px;
  height: 5px;
  animation-duration: 14s;
  animation-delay: -1s;
  opacity: 0.6;
}

.snowflakes i:nth-child(5) {
  left: 50%;
  width: 7px;
  height: 7px;
  animation-duration: 9s;
  animation-delay: -3s;
  opacity: 0.4;
}

.snowflakes i:nth-child(6) {
  left: 60%;
  width: 4px;
  height: 4px;
  animation-duration: 11s;
  animation-delay: -0.4s;
  opacity: 0.7;
}

.snowflakes i:nth-child(7) {
  left: 70%;
  width: 6px;
  height: 6px;
  animation-duration: 13s;
  animation-delay: -5s;
  opacity: 0.5;
}

.snowflakes i:nth-child(8) {
  left: 80%;
  width: 3px;
  height: 3px;
  animation-duration: 8.4s;
  animation-delay: -2.4s;
  opacity: 0.8;
}

.snowflakes i:nth-child(9) {
  left: 90%;
  width: 5px;
  height: 5px;
  animation-duration: 11.6s;
  animation-delay: -1.6s;
  opacity: 0.6;
}

.snowflakes i:nth-child(10) {
  left: 15%;
  width: 8px;
  height: 8px;
  animation-duration: 15s;
  animation-delay: -0.6s;
  opacity: 0.3;
}

.snowflakes i:nth-child(11) {
  left: 25%;
  width: 4px;
  height: 4px;
  animation-duration: 9.6s;
  animation-delay: -3.6s;
  opacity: 0.7;
}

.snowflakes i:nth-child(12) {
  left: 35%;
  width: 6px;
  height: 6px;
  animation-duration: 12.4s;
  animation-delay: -1.4s;
  opacity: 0.4;
}

.snowflakes i:nth-child(13) {
  left: 45%;
  width: 3px;
  height: 3px;
  animation-duration: 10.2s;
  animation-delay: -4.2s;
  opacity: 0.9;
}

.snowflakes i:nth-child(14) {
  left: 55%;
  width: 5px;
  height: 5px;
  animation-duration: 8.8s;
  animation-delay: -2.2s;
  opacity: 0.6;
}

.snowflakes i:nth-child(15) {
  left: 65%;
  width: 7px;
  height: 7px;
  animation-duration: 13.6s;
  animation-delay: -0.8s;
  opacity: 0.4;
}

.snowflakes i:nth-child(16) {
  left: 75%;
  width: 4px;
  height: 4px;
  animation-duration: 10.6s;
  animation-delay: -4.6s;
  opacity: 0.8;
}

.snowflakes i:nth-child(17) {
  left: 85%;
  width: 6px;
  height: 6px;
  animation-duration: 9.8s;
  animation-delay: -2.8s;
  opacity: 0.5;
}

.snowflakes i:nth-child(18) {
  left: 95%;
  width: 3px;
  height: 3px;
  animation-duration: 12.2s;
  animation-delay: -1.8s;
  opacity: 0.7;
}

.snowflakes i:nth-child(19) {
  left: 5%;
  width: 5px;
  height: 5px;
  animation-duration: 11.4s;
  animation-delay: -5.4s;
  opacity: 0.6;
}

.snowflakes i:nth-child(20) {
  left: 50%;
  width: 6px;
  height: 6px;
  animation-duration: 8.2s;
  animation-delay: -1.2s;
  opacity: 0.8;
}

@keyframes snow-fall {
  0% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(50vh) translateX(20px);
  }

  100% {
    transform: translateY(110vh) translateX(-20px);
  }
}

/* ========================
   RESPONSIVE - TABLET
   ======================== */
@media (max-width: 768px) {
  .hero {
    padding: 100px 1.5rem 60px;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .navbar {
    padding: 0.4rem 0.4rem 0.4rem 1rem;
    gap: 0;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    padding: 0.35rem 0.55rem;
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .status-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-right {
    flex-wrap: wrap;
    justify-content: center;
  }

  section {
    padding: 70px 5%;
  }

  .legal-card {
    padding: 1.5rem;
  }

  .main-logo {
    max-width: 220px;
  }

  .status-main {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  /* Kill backdrop-filter on mobile — biggest performance win */
  .product-card,
  .faq-item,
  .status-card,
  .status-main,
  .legal-card,
  .navbar,
  .footer,
  .btn-secondary {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Optimize text shadows on mobile to prevent scroll lag */
  .hero-title {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }

  .section-title,
  .sub-title {
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
  }

  .card-title {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  }

  /* GPU toast adjustments for mobile */
  .gpu-toast {
    right: 12px;
    bottom: 12px;
    left: 12px;
    border-radius: 20px;
  }

  .gpu-toast-content {
    max-width: none;
  }

  /* Preloader mobile */
  .preloader-logo {
    width: 100px;
  }

  .preloader-brand {
    font-size: 1.1rem;
    letter-spacing: 8px;
    margin-left: 8px;
  }

  .preloader-loader {
    width: 150px;
  }

  /* Showcase responsive */
  .showcase-container {
    margin: 1.5rem 0 0;
    border-radius: 12px;
  }
}

/* ========================
   RESPONSIVE - SMALL PHONE
   ======================== */
@media (max-width: 520px) {
  .nav-links li:nth-child(n+5) {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .navbar-logo {
    display: none;
  }

  .hero {
    padding: 90px 1rem 50px;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .main-logo {
    max-width: 180px;
  }

  .price-value {
    font-size: 1.5rem;
  }

  .card-title {
    font-size: 1.15rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .preloader-logo {
    width: 80px;
  }

  .preloader-brand {
    font-size: 0.9rem;
    letter-spacing: 6px;
    margin-left: 6px;
  }

  .preloader-loader {
    width: 120px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* ========================
   TOUCH DEVICE OVERRIDES
   ======================== */
@media (pointer: coarse) {

  /* Disable hover effects — prevents double-tap glitch on iOS */
  .product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .faq-item:hover {
    background: rgba(10, 10, 10, 0.8);
  }

  .btn-primary:hover {
    transform: none;
  }

  .btn-secondary:hover {
    transform: none;
  }

  .btn-card:hover {
    transform: none;
  }

  .nav-links a:hover {
    background: transparent;
  }

  .nav-discord:hover {
    box-shadow: none;
  }

  /* Bigger tap targets */
  .faq-question {
    padding: 1.25rem 1.4rem;
    min-height: 48px;
  }

  .btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Hide custom cursor elements entirely */
  .custom-cursor-dot,
  .custom-cursor-outline {
    display: none !important;
  }
}

/* ========================
   REDUCED MOTION (accessibility)
   Excludes preloader so intro always plays
   ======================== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    background-color: #000000;
    scroll-behavior: auto;
  }

  /* Force preloader animations to always play */
  .preloader-logo {
    animation: float-logo 4s ease-in-out infinite !important;
  }

  .preloader-brand {
    animation: pulse-glow-text 3s ease-in-out infinite alternate !important;
  }

  .snowflakes i {
    animation: snow-fall linear infinite !important;
  }

  .main-logo {
    animation: float 6s ease-in-out infinite !important;
  }

  .snowflakes i:nth-child(1) {
    animation-duration: 8s !important;
    animation-delay: -0s !important;
  }

  .snowflakes i:nth-child(2) {
    animation-duration: 12s !important;
    animation-delay: -2s !important;
  }

  .snowflakes i:nth-child(3) {
    animation-duration: 10s !important;
    animation-delay: -4s !important;
  }

  .snowflakes i:nth-child(4) {
    animation-duration: 14s !important;
    animation-delay: -1s !important;
  }

  .snowflakes i:nth-child(5) {
    animation-duration: 9s !important;
    animation-delay: -3s !important;
  }

  .snowflakes i:nth-child(6) {
    animation-duration: 11s !important;
    animation-delay: -0.4s !important;
  }

  .snowflakes i:nth-child(7) {
    animation-duration: 13s !important;
    animation-delay: -5s !important;
  }

  .snowflakes i:nth-child(8) {
    animation-duration: 8.4s !important;
    animation-delay: -2.4s !important;
  }

  .snowflakes i:nth-child(9) {
    animation-duration: 11.6s !important;
    animation-delay: -1.6s !important;
  }

  .snowflakes i:nth-child(10) {
    animation-duration: 15s !important;
    animation-delay: -0.6s !important;
  }

  .snowflakes i:nth-child(11) {
    animation-duration: 9.6s !important;
    animation-delay: -3.6s !important;
  }

  .snowflakes i:nth-child(12) {
    animation-duration: 12.4s !important;
    animation-delay: -1.4s !important;
  }

  .snowflakes i:nth-child(13) {
    animation-duration: 10.2s !important;
    animation-delay: -4.2s !important;
  }

  .snowflakes i:nth-child(14) {
    animation-duration: 8.8s !important;
    animation-delay: -2.2s !important;
  }

  .snowflakes i:nth-child(15) {
    animation-duration: 13.6s !important;
    animation-delay: -0.8s !important;
  }

  .snowflakes i:nth-child(16) {
    animation-duration: 10.6s !important;
    animation-delay: -4.6s !important;
  }

  .snowflakes i:nth-child(17) {
    animation-duration: 9.8s !important;
    animation-delay: -2.8s !important;
  }

  .snowflakes i:nth-child(18) {
    animation-duration: 12.2s !important;
    animation-delay: -1.8s !important;
  }

  .snowflakes i:nth-child(19) {
    animation-duration: 11.4s !important;
    animation-delay: -5.4s !important;
  }

  .snowflakes i:nth-child(20) {
    animation-duration: 8.2s !important;
    animation-delay: -1.2s !important;
  }

  .preloader {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
}

/* RELAXING MUSIC PLAYER */
.music-controls-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  top: auto;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(12, 14, 22, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50px;
  padding: 6px 14px 6px 8px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(77, 166, 255, 0.15);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  max-width: 420px;
}

.music-controls-container:hover {
  background: rgba(15, 18, 28, 0.9);
  border-color: rgba(77, 166, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(77, 166, 255, 0.3);
  transform: translateY(-2px);
}

.music-btn {
  background: rgba(77, 166, 255, 0.12);
  border: 1px solid rgba(77, 166, 255, 0.3);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  min-width: 36px;
  color: #f1f5f9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.music-btn:hover {
  background: rgba(77, 166, 255, 0.3);
  color: #ffffff;
  border-color: #4da6ff;
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(77, 166, 255, 0.5);
}

.music-btn-next {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  width: 28px;
  height: 28px;
  min-width: 28px;
  color: #cbd5e1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.75rem;
}

.music-btn-next:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: scale(1.08);
}

/* LIVE EQUALIZER WAVE ANIMATION */
.music-equalizer {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 18px;
  padding: 0 2px;
}

.music-equalizer .eq-bar {
  width: 3px;
  height: 4px;
  background: #4da6ff;
  border-radius: 2px;
  transition: height 0.2s ease;
}

.music-controls-container.playing .music-equalizer .eq-bar:nth-child(1) {
  animation: eqBounce 1.1s ease-in-out infinite alternate;
}
.music-controls-container.playing .music-equalizer .eq-bar:nth-child(2) {
  animation: eqBounce 0.8s ease-in-out infinite alternate 0.2s;
}
.music-controls-container.playing .music-equalizer .eq-bar:nth-child(3) {
  animation: eqBounce 1.3s ease-in-out infinite alternate 0.1s;
}
.music-controls-container.playing .music-equalizer .eq-bar:nth-child(4) {
  animation: eqBounce 0.9s ease-in-out infinite alternate 0.3s;
}

@keyframes eqBounce {
  0% { height: 4px; background: #2563eb; }
  50% { height: 16px; background: #4da6ff; }
  100% { height: 7px; background: #60a5fa; }
}

.music-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 140px;
  overflow: hidden;
  white-space: nowrap;
}

.music-track-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f1f5f9;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: 0.3px;
}

.music-track-status {
  font-size: 0.65rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.volume-slider-wrapper {
  display: flex;
  align-items: center;
  width: 65px;
}

.volume-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.volume-slider:hover {
  background: rgba(255, 255, 255, 0.3);
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(77, 166, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.volume-slider::-webkit-slider-thumb:hover,
.volume-slider::-webkit-slider-thumb:active {
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 25px rgba(77, 166, 255, 0.8);
}

.volume-slider::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(77, 166, 255, 0.4);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}

.volume-slider::-moz-range-thumb:hover,
.volume-slider::-moz-range-thumb:active {
  transform: scale(1.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 1), 0 0 25px rgba(77, 166, 255, 0.8);
}

@media (max-width: 768px) {
  .music-controls-container {
    bottom: 20px;
    top: auto;
    left: 15px;
    padding: 5px 12px 5px 5px;
    gap: 8px;
    max-width: calc(100vw - 30px);
  }

  .music-btn {
    width: 34px;
    height: 34px;
  }

  .music-btn svg {
    width: 16px;
    height: 16px;
  }

  .volume-slider-wrapper {
    width: 60px;
  }
}

/* --- MAGNETIC BUTTON FIX --- */
.btn {
  will-change: transform;
  transition: transform 0.1s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s, color 0.3s, box-shadow 0.3s !important;
}

.product-card {
  will-change: transform;
}

/* --- MODERN OVERRIDES --- */
::selection {
  background: rgba(255, 255, 255, 0.99);
  color: #000000;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0a0f1c;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* MASSIVE UPDATE STYLES */
#cursor-dot {
  will-change: transform;
  width: 4px;
  height: 4px;
  background: #ffffff;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999999;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s;
  box-shadow: 0 0 10px #fff;
}

#cursor-outline {
  will-change: transform;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s, border-color 0.2s;
}

#cursor-outline.hover {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.05);
  border-color: #fff;
}

@media (pointer: coarse) {

  #cursor-dot,
  #cursor-outline {
    display: none !important;
  }
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 0 15px #fff, 0 0 30px rgba(77, 166, 255, 0.8);
  z-index: 999999;
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
  will-change: transform;
}




.footer {
  background: rgba(12, 14, 20, 0.65) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.3);
}

.product-card {
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.4s;
}

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

/* Scrollbar visible */

/* ============================================
   PAYMENT SECTION
   ============================================ */
.payment-section {
  padding: 8rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

/* Step flow */
.payment-steps {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  margin: 3.5rem auto 4rem;
  max-width: 900px;
  flex-wrap: wrap;
}

.pay-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 180px;
  position: relative;
}

.pay-step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.2), rgba(110, 90, 255, 0.2));
  border: 1.5px solid rgba(77, 166, 255, 0.5);
  color: #4da6ff;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(77, 166, 255, 0.2);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pay-step:hover .pay-step-icon {
  transform: scale(1.1);
  box-shadow: 0 0 35px rgba(77, 166, 255, 0.4);
}

.pay-step-line {
  position: absolute;
  top: 28px;
  left: calc(50% + 28px);
  width: calc(100% - 56px);
  height: 1.5px;
  background: linear-gradient(to right, rgba(77, 166, 255, 0.4), rgba(110, 90, 255, 0.2));
  z-index: 1;
}

.pay-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  margin: 1rem 0 0.4rem;
  letter-spacing: 0.01em;
}

.pay-step-desc {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}

/* Payment method cards */
.pay-methods-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 1.25rem;
}

.pay-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.pay-method-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, rgba(20, 20, 28, 0.9), rgba(12, 12, 18, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  min-width: 240px;
  flex: 1;
  max-width: 260px;
  cursor: default;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.pay-method-card:hover {
  border-color: rgba(77, 166, 255, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4), 0 0 20px rgba(77,166,255,0.08);
}

.pay-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  color: #f7931a;
  flex-shrink: 0;
}

.pay-method-info {
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}

.pay-method-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
}

.pay-method-sub {
  font-size: 0.72rem;
  color: #475569;
  margin-top: 2px;
}

.pay-method-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255,255,255,0.06);
  color: #64748b;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;
}

.pay-method-badge.recommended {
  background: linear-gradient(135deg, rgba(77, 166, 255, 0.15), rgba(110, 90, 255, 0.15));
  border-color: rgba(77, 166, 255, 0.3);
  color: #4da6ff;
}

/* CTA */
.pay-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.pay-cta-note {
  font-size: 0.82rem;
  color: #475569;
  max-width: 500px;
}

@media (max-width: 768px) {
  .payment-steps {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  .pay-step-line {
    display: none;
  }
  .pay-method-card {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
}

/* ============================================
   CHECKOUT MODAL
   ============================================ */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.checkout-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.checkout-modal {
  background: linear-gradient(160deg, rgba(14,16,26,0.98) 0%, rgba(8,10,18,0.99) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  width: 100%;
  max-width: 580px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0,0,0,0.8), 0 0 60px rgba(77,166,255,0.06);
  transform: scale(0.92) translateY(30px);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1);
  scrollbar-width: thin;
  scrollbar-color: rgba(77,166,255,0.2) transparent;
}

.checkout-overlay.open .checkout-modal {
  transform: scale(1) translateY(0);
}

/* Header */
.checkout-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.8rem 1.8rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.checkout-step-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #4da6ff;
  margin-bottom: 0.4rem;
}

.checkout-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.02em;
  margin: 0;
}

.checkout-close {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-top: 4px;
}

.checkout-close:hover {
  background: rgba(255,80,80,0.15);
  border-color: rgba(255,80,80,0.3);
  color: #ff6060;
}

/* Product summary strip */
.checkout-summary {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1rem 1.8rem;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.checkout-summary-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.checkout-summary-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  margin: 0 1.2rem;
  flex-shrink: 0;
}

.checkout-summary-label {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #475569;
  margin-bottom: 3px;
}

.checkout-summary-value {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e2e8f0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 160px;
}

.checkout-price {
  color: #4da6ff !important;
  font-size: 1.05rem !important;
}

/* Mini steps */
.checkout-steps-mini {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 1.2rem 1.8rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.csm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.62rem;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.csm-step.active {
  color: #4da6ff;
}

.csm-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.csm-step.active .csm-num {
  background: rgba(77,166,255,0.15);
  border-color: rgba(77,166,255,0.4);
  color: #4da6ff;
}

.csm-line {
  height: 1px;
  width: 40px;
  background: rgba(255,255,255,0.07);
  margin: 0 6px;
  margin-bottom: 14px;
  flex-shrink: 0;
}

/* Form */
.checkout-form {
  padding: 1.6rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.checkout-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkout-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

.checkout-required { color: #4da6ff; }
.checkout-optional { color: #475569; font-weight: 400; }

.checkout-input {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #f1f5f9;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  width: 100%;
  box-sizing: border-box;
}

.checkout-input:focus {
  border-color: rgba(77,166,255,0.4);
  box-shadow: 0 0 0 3px rgba(77,166,255,0.08);
}

.checkout-input::placeholder { color: #334155; }

.checkout-textarea {
  resize: vertical;
  min-height: 80px;
}

/* Payment selector */
.pay-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pay-sel-btn {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: #64748b;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.pay-sel-btn:hover {
  background: rgba(255,255,255,0.08);
  color: #e2e8f0;
}

.pay-sel-btn.active {
  background: rgba(77,166,255,0.12);
  border-color: rgba(77,166,255,0.4);
  color: #4da6ff;
}

/* Upload zone */
.upload-zone {
  border: 2px dashed rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 1.5rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-zone:hover,
.upload-zone.drag-over {
  border-color: rgba(77,166,255,0.4);
  background: rgba(77,166,255,0.04);
}

.upload-zone.drag-over {
  box-shadow: 0 0 20px rgba(77,166,255,0.1);
}

.upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }

.upload-text {
  font-size: 0.88rem;
  color: #94a3b8;
  margin: 0 0 4px;
  font-weight: 500;
}

.upload-sub {
  font-size: 0.72rem;
  color: #475569;
  margin: 0;
}

.proof-preview-img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 10px;
}

.preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}

.upload-zone:hover .preview-overlay { opacity: 1; }

.preview-change {
  background: rgba(77,166,255,0.2);
  border: 1px solid rgba(77,166,255,0.4);
  color: #4da6ff;
  padding: 0.4rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}

/* Status messages */
.checkout-status {
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.checkout-status.success {
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  color: #22c55e;
}

.checkout-status.error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  color: #ef4444;
}

/* Submit button */
.checkout-submit {
  background: linear-gradient(135deg, #4da6ff, #6e5aff);
  border: none;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  font-family: inherit;
  box-shadow: 0 6px 30px rgba(77,166,255,0.25);
}

.checkout-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(77,166,255,0.4);
}

.checkout-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.submit-spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

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

.checkout-disclaimer {
  font-size: 0.72rem;
  color: #334155;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

/* Nav & Hero Loader Buttons */
.nav-loader-btn {
  background: linear-gradient(135deg, rgba(138, 75, 255, 0.2), rgba(77, 166, 255, 0.2));
  border: 1px solid rgba(138, 75, 255, 0.4);
  color: #c084fc;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
}

.nav-loader-btn:hover {
  background: linear-gradient(135deg, rgba(138, 75, 255, 0.35), rgba(77, 166, 255, 0.35));
  border-color: rgba(138, 75, 255, 0.7);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(138, 75, 255, 0.4);
}

.btn-loader-hero {
  background: linear-gradient(135deg, #8a4bff, #4da6ff);
  color: #fff !important;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(138, 75, 255, 0.3);
}

.btn-loader-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(138, 75, 255, 0.5);
}

/* License & Delivery Strip in Checkout Modal */
.checkout-license-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(138, 75, 255, 0.08);
  border: 1px solid rgba(138, 75, 255, 0.25);
  border-radius: 12px;
  padding: 0.75rem 1.2rem;
  margin: 0.8rem 1.8rem 0;
}

.cls-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cls-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cls-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: #e9d5ff;
}

.cls-sub {
  font-size: 0.72rem;
  color: #94a3b8;
}

/* Receiver Details Box in Checkout Modal */
.rdb-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rdb-badge-active {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(77, 166, 255, 0.15);
  border: 1px solid rgba(77, 166, 255, 0.3);
  color: #4da6ff;
  padding: 2px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.receiver-details-box {
  background: linear-gradient(145deg, rgba(20, 24, 38, 0.95), rgba(12, 14, 24, 0.95));
  border: 1px solid rgba(77, 166, 255, 0.25);
  border-radius: 14px;
  padding: 1.1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.4);
}

.rdb-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.83rem;
  gap: 10px;
}

.rdb-row.highlight {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
}

.rdb-label {
  color: #64748b;
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
}

.rdb-value {
  color: #f1f5f9;
  font-weight: 700;
  font-size: 0.88rem;
  word-break: break-all;
}

.rdb-value.mono {
  font-family: monospace;
  color: #38bdf8;
  letter-spacing: 0.5px;
}

.rdb-copy-btn {
  background: rgba(77, 166, 255, 0.2);
  border: 1px solid rgba(77, 166, 255, 0.4);
  color: #4da6ff;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: inherit;
}

.rdb-copy-btn:hover {
  background: #4da6ff;
  color: #000;
}

.rdb-instructions {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 0.55rem 0.8rem;
  border-left: 3px solid #4da6ff;
}

/* ============================================
   LOADER & KEYAUTH DASHBOARD PORTAL
   ============================================ */
.loader-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(4, 5, 8, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.loader-window {
  background: #0d0e13;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  width: 100%;
  max-width: 1140px;
  height: 86vh;
  max-height: 850px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.9), 0 0 60px rgba(138, 75, 255, 0.08);
  transform: scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.loader-overlay.open .loader-window {
  transform: scale(1);
}

.loader-window.fullscreen {
  max-width: 100vw;
  height: 100vh;
  max-height: 100vh;
  border-radius: 0;
}

/* Titlebar */
.loader-titlebar {
  height: 44px;
  background: #090a0e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.2rem;
  user-select: none;
}

.loader-titlebar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loader-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.loader-titlebar-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #64748b;
  text-transform: uppercase;
}

.loader-titlebar-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.loader-btn-ctrl {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.loader-btn-ctrl:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.loader-btn-ctrl.close-ctrl:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.5);
  color: #ef4444;
}

/* Shell Layout (Sidebar + Main) */
.loader-shell {
  display: flex;
  flex: 1;
  overflow: hidden;
}

/* Sidebar Navigation */
.loader-sidebar {
  width: 230px;
  background: #090a0e;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.2rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow-y: auto;
  flex-shrink: 0;
}

.loader-nav-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.loader-nav-header {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #475569;
  padding: 0.4rem 0.8rem;
}

.loader-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.65rem 0.9rem;
  border-radius: 12px;
  background: transparent;
  border: 1px solid transparent;
  color: #83899f;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s;
  font-family: inherit;
  position: relative;
}

.loader-nav-item:hover {
  background: rgba(255, 255, 255, 0.03);
  color: #e2e8f0;
}

.loader-nav-item.active {
  background: rgba(138, 75, 255, 0.14);
  border-color: rgba(138, 75, 255, 0.4);
  color: #f1f5f9;
  box-shadow: 0 0 15px rgba(138, 75, 255, 0.15);
}

.loader-nav-icon {
  font-size: 1rem;
}

.loader-nav-label {
  flex: 1;
}

.loader-nav-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: #10b981;
  color: #000;
}

/* Main Content Area */
.loader-main {
  flex: 1;
  background: #0d0e13;
  overflow-y: auto;
  padding: 1.8rem 2.2rem;
}

.loader-view {
  display: none;
}

.loader-view.active {
  display: block;
  animation: fadeInView 0.25s ease;
}

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

/* Profile Card (Matching screenshot) */
.loader-profile-card {
  background: linear-gradient(135deg, rgba(22, 24, 34, 0.95), rgba(16, 17, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 2rem;
}

.lpc-avatar-wrap {
  position: relative;
}

.lpc-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #12141c;
  border: 2px solid rgba(138, 75, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(138, 75, 255, 0.35);
}

.lpc-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lpc-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lpc-username {
  font-size: 1.35rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0;
}

.lpc-rank-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 8px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(99, 102, 241, 0.25));
  border: 1px solid rgba(168, 85, 247, 0.4);
  color: #c084fc;
}

.lpc-role {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 500;
}

.lpc-level-wrap {
  margin-top: 8px;
  max-width: 320px;
}

.lpc-level-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  margin-bottom: 5px;
}

.lpc-level-label {
  color: #94a3b8;
  font-weight: 700;
}

.lpc-level-label strong {
  color: #fff;
}

.lpc-xp-count {
  color: #64748b;
  font-weight: 600;
}

.lpc-progress-track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.lpc-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8a4bff, #4da6ff);
  border-radius: 99px;
  transition: width 0.4s ease;
}

/* Section Titles & Headers */
.loader-section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.loader-section-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cbd5e1;
  margin-bottom: 1rem;
}

.loader-mini-redeem-btn {
  background: rgba(138, 75, 255, 0.15);
  border: 1px solid rgba(138, 75, 255, 0.35);
  color: #c084fc;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.loader-mini-redeem-btn:hover {
  background: rgba(138, 75, 255, 0.3);
  color: #fff;
}

/* MY LICENSES Grid (Matching screenshot) */
.loader-licenses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.2rem;
}

.loader-license-card {
  background: linear-gradient(135deg, rgba(20, 22, 32, 0.95), rgba(14, 15, 22, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: all 0.25s ease;
}

.loader-license-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(16, 185, 129, 0.06);
}

.llc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.llc-logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: #fff;
}

.llc-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f1f5f9;
}

.llc-status-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
}

.llc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px #10b981;
}

.llc-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.78rem;
}

.llc-meta-row {
  display: flex;
  justify-content: space-between;
}

.llc-meta-label {
  color: #64748b;
  font-weight: 500;
}

.llc-meta-val {
  color: #cbd5e1;
  font-weight: 700;
}

.llc-action-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
  font-family: inherit;
}

.llc-action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.llc-share-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: color 0.2s;
  font-family: inherit;
}

.llc-share-btn:hover {
  color: #94a3b8;
}

/* SETTINGS Grid (Matching screenshot) */
.loader-settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.loader-setting-card {
  background: linear-gradient(135deg, rgba(20, 22, 32, 0.95), rgba(14, 15, 22, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.loader-setting-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(25, 28, 40, 0.95);
}

.lsc-icon-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lsc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.lsc-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #f1f5f9;
}

.lsc-val {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 2px;
}

.lsc-toggle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #334155;
  transition: all 0.2s;
}

.lsc-toggle.active {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

/* TAB: REDEEM CODE */
.loader-redeem-container {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lrc-header {
  text-align: center;
}

.lrc-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #8a4bff;
  margin-bottom: 0.4rem;
}

.lrc-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.5rem;
}

.lrc-desc {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.lrc-input-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lrc-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
}

.lrc-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0 0.8rem;
  transition: border-color 0.2s;
}

.lrc-input-wrap:focus-within {
  border-color: #8a4bff;
  box-shadow: 0 0 0 3px rgba(138, 75, 255, 0.15);
}

.lrc-key-icon {
  font-size: 1.2rem;
  margin-right: 8px;
}

.lrc-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.85rem 0.4rem;
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
}

.lrc-paste-btn {
  background: rgba(138, 75, 255, 0.2);
  border: 1px solid rgba(138, 75, 255, 0.4);
  color: #c084fc;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* Key Detection Live Card */
.key-detect-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s ease;
}

.key-detect-card.detected {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.08);
}

.kdc-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.kdc-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64748b;
}

.key-detect-card.detected .kdc-status-dot {
  background: #10b981;
  box-shadow: 0 0 10px #10b981;
}

.kdc-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kdc-icon {
  font-size: 1.8rem;
}

.kdc-info {
  flex: 1;
}

.kdc-product-name {
  font-size: 1rem;
  font-weight: 800;
  color: #f1f5f9;
}

.kdc-product-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 2px;
}

.kdc-detected-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  background: #10b981;
  color: #000;
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
}

.lrc-submit-btn {
  background: linear-gradient(135deg, #8a4bff, #4da6ff);
  border: none;
  color: #fff;
  padding: 0.95rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 25px rgba(138, 75, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
}

.lrc-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(138, 75, 255, 0.5);
}

.loader-redeem-status {
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.loader-redeem-status.success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.loader-redeem-status.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.quick-keys-hint {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.qkh-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #cbd5e1;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  font-family: monospace;
  transition: all 0.2s;
}

.qkh-btn:hover {
  background: rgba(138, 75, 255, 0.2);
  border-color: rgba(138, 75, 255, 0.4);
  color: #c084fc;
}

/* KeyAuth Config Box */
.keyauth-config-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: hidden;
  margin-top: 1rem;
}

.kcb-toggle {
  padding: 0.8rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s;
}

.kcb-toggle:hover {
  color: #94a3b8;
}

.kcb-content {
  padding: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.kcb-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0 0 0.8rem;
}

.kcb-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.kcb-field label {
  font-size: 0.7rem;
  font-weight: 600;
  color: #94a3b8;
  display: block;
  margin-bottom: 3px;
}

.kcb-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.5rem 0.7rem;
  border-radius: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-family: inherit;
  box-sizing: border-box;
}

.kcb-save-btn {
  background: rgba(138, 75, 255, 0.2);
  border: 1px solid rgba(138, 75, 255, 0.4);
  color: #c084fc;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

/* TAB: DOWNLOAD SOFTWARE */
.loader-downloads-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ld-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
}

.ld-card {
  background: linear-gradient(135deg, rgba(20, 22, 32, 0.95), rgba(14, 15, 22, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.ld-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ld-card-icon {
  font-size: 1.8rem;
}

.ld-card-meta {
  display: flex;
  flex-direction: column;
}

.ld-card-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
}

.ld-card-version {
  font-size: 0.72rem;
  color: #64748b;
}

.ld-card-desc {
  font-size: 0.78rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.ld-dl-btn {
  background: rgba(77, 166, 255, 0.15);
  border: 1px solid rgba(77, 166, 255, 0.35);
  color: #4da6ff;
  padding: 0.65rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.ld-dl-btn:hover {
  background: #4da6ff;
  color: #000;
}

/* Generic View */
.loader-generic-view {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 2rem;
}

.lua-module-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.2rem;
}

.lua-module-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lua-launch-btn {
  background: rgba(16, 185, 129, 0.2);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  padding: 0.45rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.server-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  color: #e2e8f0;
  font-size: 0.85rem;
  margin-top: 1rem;
}

@media (max-width: 860px) {
  .loader-window {
    height: 94vh;
  }
  .loader-sidebar {
    width: 70px;
    padding: 1rem 0.4rem;
  }
  .loader-nav-header,
  .loader-nav-label,
  .loader-nav-badge {
    display: none;
  }
  .loader-nav-item {
    justify-content: center;
    padding: 0.8rem 0;
  }
  .loader-main {
    padding: 1.2rem;
  }
  .kcb-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   LOADER: ORDERS VIEW
   ========================================================= */
.orders-refresh-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.orders-refresh-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.orders-list-grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.order-card-item {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
  transition: all 0.2s ease;
}
.order-card-item:hover {
  border-color: rgba(77, 166, 255, 0.3);
  background: rgba(15, 23, 42, 0.6);
  transform: translateY(-2px);
}
.oci-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.oci-id-tag {
  font-family: monospace;
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.05em;
}
.oci-status-badge.verified {
  font-size: 0.75rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
}
.oci-body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.oci-prod-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
}
.oci-meta {
  font-size: 0.82rem;
  color: #94a3b8;
}
.oci-meta strong {
  color: #e2e8f0;
}
.oci-key-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.5rem 0.8rem;
  border-radius: 8px;
  flex-wrap: wrap;
}
.oci-key-label {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}
.oci-key-code {
  font-family: monospace;
  font-size: 0.85rem;
  color: #4da6ff;
  background: rgba(77, 166, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.03em;
  flex: 1;
}
.oci-copy-key-btn {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.oci-copy-key-btn:hover {
  background: #4da6ff;
  color: #000;
  border-color: #4da6ff;
}

/* =========================================================
   LOADER: PARTNERS VIEW
   ========================================================= */
.partner-tier-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
}
.partner-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .partner-stats-grid {
    grid-template-columns: 1fr;
  }
}
.partner-stat-box {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.psb-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.psb-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #f8fafc;
}
.psb-sub {
  font-size: 0.78rem;
  color: #94a3b8;
}
.psb-payout-btn {
  margin-top: 0.5rem;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.45rem 0.85rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.psb-payout-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
.partner-link-container {
  background: rgba(15, 23, 42, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 1.5rem;
}
.plc-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 0.5rem;
}
.plc-input-wrap {
  display: flex;
  gap: 0.5rem;
}
.plc-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #e2e8f0;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  font-family: monospace;
  font-size: 0.88rem;
}
.plc-copy-btn {
  background: #4da6ff;
  border: none;
  color: #000;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.plc-copy-btn:hover {
  filter: brightness(1.15);
}
.plc-note {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.5rem;
}
.partner-perks-box {
  background: rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.2rem;
}
.partner-perks-box h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 0.75rem;
}
.partner-perks-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.partner-perks-list li {
  font-size: 0.83rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* =========================================================
   LOADER: LUA MENUS VIEW
   ========================================================= */
.lua-ready-badge {
  font-size: 0.78rem;
  font-weight: 700;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
}
.lua-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .lua-grid {
    grid-template-columns: 1fr;
  }
}
.lua-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.7rem;
  transition: all 0.2s ease;
}
.lua-card:hover {
  border-color: rgba(77, 166, 255, 0.35);
  transform: translateY(-2px);
}
.lua-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lua-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
}
.lua-status-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.15rem 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.lua-card-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.45;
}
.lua-card-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.lua-hotkey {
  font-size: 0.75rem;
  color: #64748b;
}
.lua-hotkey strong {
  color: #cbd5e1;
}
.lua-action-btn {
  background: rgba(77, 166, 255, 0.12);
  border: 1px solid rgba(77, 166, 255, 0.3);
  color: #4da6ff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 0.8rem;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lua-action-btn:hover {
  background: #4da6ff;
  color: #000;
}
.lua-executor-box {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
}
.leb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}
.leb-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #e2e8f0;
}
.leb-clear-btn {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #64748b;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  cursor: pointer;
}
.leb-clear-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.leb-textarea {
  width: 100%;
  box-sizing: border-box;
  background: #090d16;
  border: 1px solid rgba(77, 166, 255, 0.2);
  border-radius: 8px;
  color: #38bdf8;
  font-family: monospace;
  font-size: 0.84rem;
  padding: 0.85rem;
  resize: vertical;
  line-height: 1.5;
}
.leb-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0.75rem;
}
.leb-hint {
  font-size: 0.75rem;
  color: #64748b;
}
.leb-run-btn {
  background: linear-gradient(135deg, #4da6ff, #0077ff);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.leb-run-btn:hover {
  filter: brightness(1.2);
  transform: translateY(-1px);
}
.lua-exec-status {
  margin-top: 0.75rem;
  padding: 0.6rem 0.9rem;
  border-radius: 8px;
  font-size: 0.82rem;
}
.lua-exec-status.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

/* =========================================================
   LOADER: ONLINE CONTROL VIEW
   ========================================================= */
.control-sync-badge {
  font-size: 0.78rem;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.8rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.server-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 768px) {
  .server-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ss-box {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.ss-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
}
.ss-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f8fafc;
}
.control-section-wrap {
  margin-bottom: 1.4rem;
}
.control-section-wrap h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: #cbd5e1;
  margin-bottom: 0.65rem;
}
.ctrl-button-group {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.ctrl-action-btn {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.ctrl-action-btn:hover {
  background: rgba(77, 166, 255, 0.15);
  color: #fff;
  border-color: rgba(77, 166, 255, 0.3);
}
.ctrl-action-btn.active {
  background: rgba(77, 166, 255, 0.25);
  color: #4da6ff;
  border-color: #4da6ff;
  font-weight: 700;
}
.control-players-table {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.cpt-row {
  display: grid;
  grid-template-columns: 50px 1.5fr 80px 80px 1.2fr;
  align-items: center;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.cpt-row.header {
  background: rgba(0, 0, 0, 0.3);
  font-weight: 700;
  font-size: 0.75rem;
  color: #64748b;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cpt-row.highlight {
  background: rgba(77, 166, 255, 0.08);
  border-left: 3px solid #4da6ff;
}
.cpt-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}
.cpt-badge.staff {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}
.cpt-badge.user {
  background: rgba(148, 163, 184, 0.15);
  color: #94a3b8;
}
.cpt-badge.vip {
  background: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}
.cpt-actions {
  display: flex;
  gap: 0.4rem;
}
.cpt-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  font-size: 0.72rem;
  padding: 0.25rem 0.55rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.cpt-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.cpt-btn.primary {
  background: rgba(77, 166, 255, 0.15);
  border-color: rgba(77, 166, 255, 0.35);
  color: #4da6ff;
}
.cpt-btn.primary:hover {
  background: #4da6ff;
  color: #000;
}
.control-console-box {
  background: #070a12;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
.ccb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.55rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94a3b8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.ccb-logs {
  padding: 0.75rem 0.9rem;
  font-family: monospace;
  font-size: 0.76rem;
  color: #38bdf8;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: 120px;
  overflow-y: auto;
}

/* =========================================================
   LOADER: WORKSHOP VIEW
   ========================================================= */
.workshop-create-btn {
  background: linear-gradient(135deg, #4da6ff, #0077ff);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.workshop-create-btn:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 768px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }
}
.workshop-item-card {
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.2s ease;
}
.workshop-item-card:hover {
  border-color: rgba(77, 166, 255, 0.3);
  transform: translateY(-2px);
}
.wic-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wic-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #f8fafc;
}
.wic-badge {
  font-size: 0.7rem;
  font-weight: 700;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
}
.wic-desc {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
}
.wic-meta {
  font-size: 0.74rem;
  color: #64748b;
}
.wic-actions {
  display: flex;
  gap: 0.45rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.wic-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.wic-btn:hover {
  background: rgba(77, 166, 255, 0.15);
  border-color: rgba(77, 166, 255, 0.3);
  color: #fff;
}

/* ========================================================
   FIVEM PRIVATE LICENSES & TIME REMAINING COUNTDOWN
   ======================================================== */
.fivem-priv-card {
  position: relative;
  background: linear-gradient(145deg, rgba(22, 25, 36, 0.95), rgba(12, 14, 22, 0.95)) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px !important;
  padding: 1.25rem !important;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.fivem-priv-card:hover {
  border-color: rgba(77, 166, 255, 0.35) !important;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(77, 166, 255, 0.12);
}

.llc-tier-pill {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 6px;
  border: 1px solid;
  margin-left: 6px;
  display: inline-block;
}

/* Time Left For Finish Box */
.license-time-box {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.ltb-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ltb-label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #94a3b8;
  text-transform: uppercase;
}

.ltb-val {
  font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.ltb-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.ltb-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.5s ease;
  box-shadow: 0 0 10px rgba(77, 166, 255, 0.5);
}

.ltb-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: #64748b;
}

.ltb-sub {
  color: #94a3b8;
  font-size: 0.72rem;
}

.ltb-percent {
  color: #38bdf8;
  font-weight: 700;
  font-size: 0.72rem;
}

.llc-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.llc-action-btn.primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.llc-action-btn.primary:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.4);
}

.llc-action-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.llc-action-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ========================================================
   MAIN LOADER DOWNLOAD & CUSTOM OWNER URL
   ======================================================== */
.main-loader-card {
  background: linear-gradient(145deg, rgba(24, 27, 40, 0.95), rgba(12, 14, 24, 0.98)) !important;
  border: 1px solid rgba(77, 166, 255, 0.2) !important;
  padding: 1.8rem !important;
  border-radius: 20px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(77, 166, 255, 0.08);
  margin-bottom: 1.8rem;
}

.loader-ready-tag {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  padding: 4px 10px;
  border-radius: 8px;
}

.ld-card-actions-row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
  flex-wrap: wrap;
}

.ld-dl-btn.primary-dl {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.85rem 1.6rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ld-dl-btn.primary-dl:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

.ld-dl-btn.secondary-dl {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ld-dl-btn.secondary-dl:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.custom-dl-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.2rem;
  margin-top: 1.2rem;
}

.cdb-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 0.6rem;
}

.cdb-input-row {
  display: flex;
  gap: 0.6rem;
}

.cdb-input {
  flex: 1;
  background: rgba(10, 12, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #f8fafc;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.cdb-input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.2);
}

.cdb-save-btn {
  background: linear-gradient(135deg, #059669, #10b981);
  border: none;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.75rem 1.4rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cdb-save-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.custom-url-status {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #10b981;
}

.loader-instructions-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.4rem;
}

.loader-instructions-box h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 0.8rem;
}

.lib-steps {
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #94a3b8;
  font-size: 0.84rem;
  line-height: 1.5;
}

.lib-steps strong {
  color: #f8fafc;
}

/* Empty License State */
.no-licenses-box {
  grid-column: 1 / -1;
  background: linear-gradient(145deg, rgba(20, 23, 34, 0.7), rgba(12, 14, 22, 0.7));
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 3rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 0.5rem 0;
}

.nlb-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.nlb-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #f8fafc;
  letter-spacing: -0.01em;
}

.nlb-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  max-width: 420px;
  line-height: 1.5;
  margin: 0;
}

.nlb-redeem-btn {
  margin-top: 0.6rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 0.75rem 1.6rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.nlb-redeem-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

/* ========================================================
   LOADER GOOGLE LOGIN & AUTH SCREEN
   ======================================================== */
.loader-auth-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  padding: 1.5rem 0.5rem;
}

.loader-auth-card {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(160deg, rgba(24, 27, 39, 0.95), rgba(12, 14, 22, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2.2rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(77, 166, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.loader-auth-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4285F4, #EA4335, #FBBC05, #34A853);
}

.lac-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}

.lac-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(77, 166, 255, 0.5));
  margin-bottom: 0.8rem;
}

.lac-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 0.4rem 0;
  letter-spacing: -0.02em;
}

.lac-desc {
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0 0 1.8rem 0;
}

/* Official Google Sign-In Button */
.google-login-btn {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dadce0;
  color: #3c4043;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Google Sans', 'Roboto', system-ui, sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(0,0,0,0.05);
}

.google-login-btn:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 15px rgba(66, 133, 244, 0.25);
  border-color: #4285F4;
}

.google-login-btn:active {
  transform: translateY(0);
}

.google-icon-svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Divider */
.lac-divider {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 1.6rem 0;
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.lac-divider::before,
.lac-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.lac-divider span {
  padding: 0 0.8rem;
}

/* Quick Username / KeyAuth Sign In Form */
.lac-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lac-input-wrap {
  position: relative;
  width: 100%;
}

.lac-input {
  width: 100%;
  background: rgba(10, 12, 18, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 0.75rem 1rem 0.75rem 2.4rem;
  color: #f8fafc;
  font-size: 0.85rem;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
  box-sizing: border-box;
}

.lac-input:focus {
  border-color: #38bdf8;
  background: rgba(14, 16, 26, 0.95);
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.25);
}

.lac-input-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9rem;
  opacity: 0.6;
}

.lac-submit-btn {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.lac-submit-btn:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

.lac-footer-security {
  margin-top: 1.4rem;
  font-size: 0.72rem;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Sidebar user indicator */
.sidebar-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  margin-bottom: 1.2rem;
  transition: all 0.2s;
}

.sidebar-user-pill:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2563eb;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  overflow: hidden;
}

.sup-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sup-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
}

.sup-name {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sup-status {
  font-size: 0.68rem;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sup-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.sup-dot.online {
  background: #10b981;
  box-shadow: 0 0 6px #10b981;
}

.sup-dot.offline {
  background: #f59e0b;
  box-shadow: 0 0 6px #f59e0b;
}

.sup-login-link {
  font-size: 0.72rem;
  color: #38bdf8;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  margin-left: auto;
}

.sup-login-link:hover {
  text-decoration: underline;
}

/* Google Account Chooser Modal Overlay */
.google-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.google-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.google-modal-dialog {
  background: #202124;
  color: #e8eaed;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
  font-family: 'Google Sans', Roboto, Arial, sans-serif;
  transform: scale(0.94);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.google-modal-overlay.open .google-modal-dialog {
  transform: scale(1);
}

.gmd-header {
  padding: 1.6rem 1.8rem 1rem;
  text-align: left;
}

.gmd-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.gmd-google-logo {
  height: 24px;
}

.gmd-close-btn {
  background: transparent;
  border: none;
  color: #9aa0a6;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gmd-close-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.gmd-title {
  font-size: 1.35rem;
  font-weight: 500;
  color: #e8eaed;
  margin: 0 0 0.3rem 0;
}

.gmd-subtitle {
  font-size: 0.88rem;
  color: #9aa0a6;
  margin: 0;
}

.gmd-subtitle strong {
  color: #e8eaed;
}

.gmd-accounts-list {
  padding: 0.8rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gmd-account-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}

.gmd-account-item:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(66, 133, 244, 0.5);
}

.gmd-account-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4285F4, #34A853);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.gmd-account-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  flex: 1;
}

.gmd-account-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: #e8eaed;
}

.gmd-account-email {
  font-size: 0.78rem;
  color: #9aa0a6;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gmd-custom-account {
  padding: 0.5rem 1.8rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.5rem;
}

.gmd-input-label {
  font-size: 0.78rem;
  color: #9aa0a6;
  display: block;
  margin: 0.8rem 0 0.4rem;
}

.gmd-input {
  width: 100%;
  background: #303134;
  border: 1px solid #5f6368;
  border-radius: 8px;
  padding: 0.65rem 0.9rem;
  color: #e8eaed;
  font-size: 0.88rem;
  box-sizing: border-box;
  outline: none;
}

.gmd-input:focus {
  border-color: #8ab4f8;
}

.gmd-confirm-btn {
  width: 100%;
  margin-top: 0.8rem;
  background: #8ab4f8;
  color: #202124;
  border: none;
  border-radius: 8px;
  padding: 0.75rem;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
}

.gmd-confirm-btn:hover {
  background: #a8c7fa;
}

.google-config-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.45rem 0.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #94a3b8;
  cursor: pointer;
  transition: all 0.2s;
  box-sizing: border-box;
}

.google-config-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #cbd5e1;
}

.google-config-content {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 0.8rem;
  box-sizing: border-box;
}

/* ========================================================
   AUTH TABS (SIGN IN vs ADD ACCOUNT)
   ======================================================== */
.auth-tabs-row {
  display: flex;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 0.9rem;
  box-sizing: border-box;
}

.auth-tab-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: inherit;
}

.auth-tab-btn.active {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.4), rgba(77, 166, 255, 0.25));
  border: 1px solid rgba(77, 166, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.auth-tab-btn:hover:not(.active) {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.04);
}

/* Saved Accounts Quick List */
.saved-accounts-box {
  width: 100%;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  text-align: left;
}

.sab-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sab-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sab-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
}

.sab-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(77, 166, 255, 0.3);
}

.sab-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f1f5f9;
}

.sab-right {
  font-size: 0.7rem;
  color: #38bdf8;
  font-weight: 600;
}





