@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --cl-accent: #00a2ff;
  --cl-accent-rgb: 0, 162, 255;
  --cl-background: #050505;
  --cl-card-bg: #0d0d0d;
  --cl-border: rgba(255, 255, 255, 0.05);
  --cl-border-accent: rgba(0, 162, 255, 0.2);
  --cl-text-muted: #888888;
  --cl-text-main: #ffffff;
  --bs-body-bg: var(--cl-background);
  --bs-body-color: var(--cl-text-main);
}

body {
  background-color: var(--cl-background);
  color: var(--cl-text-main);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background Gradients */
.bg-image {
  position: fixed;
  inset: 0;
  z-index: -2;
  background: 
    radial-gradient(circle at 50% -10%, rgba(0, 162, 255, 0.12), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(0, 162, 255, 0.05), transparent 40%),
    radial-gradient(circle at 0% 0%, rgba(0, 162, 255, 0.03), transparent 30%);
  pointer-events: none;
}

/* Navbar (1:1 Nebula) */
.navbar.component > .container {
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--cl-border);
  border-radius: 18px;
  padding: 0.6rem 1.2rem;
  margin-top: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.navbar .nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: #a0a0a0 !important;
  padding: 0.5rem 1rem !important;
  transition: color 0.2s ease;
}

.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #ffffff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 78vh;
  display: flex;
  align-items: center;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.btn-login {
  background: linear-gradient(135deg, #00a2ff, #0066ff);
  border: none;
  border-radius: 10px;
  padding: 0.5rem 1.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(0, 162, 255, 0.2);
}

.btn-login,
.btn-login span {
  color: #ffffff !important;
}

.btn-login:focus-visible,
.nebula-btn-secondary:focus-visible,
.btn-outline-light:focus-visible {
  outline: 2px solid rgba(0, 162, 255, 0.35);
  outline-offset: 3px;
}

.text-muted {
  color: #a6a6a6 !important;
}

.nebula-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.nebula-page-hero {
  background: radial-gradient(circle at 15% 15%, rgba(0, 162, 255, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  overflow: hidden;
  position: relative;
}

.nebula-page-hero::before,
.nebula-page-hero::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 999px;
  filter: blur(50px);
  opacity: 0.22;
  pointer-events: none;
  animation: nebulaFloat 9s ease-in-out infinite;
}

.nebula-page-hero::before {
  left: -130px;
  bottom: -140px;
  background: rgba(0, 162, 255, 0.55);
}

.nebula-page-hero::after {
  right: -140px;
  top: -160px;
  background: rgba(255, 255, 255, 0.22);
  animation-delay: -4.5s;
}

.nebula-page-hero-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.nebula-page-hero-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 162, 255, 0.14);
  border: 1px solid rgba(0, 162, 255, 0.22);
  color: #ffffff;
}

.nebula-cart-item {
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.02);
}

.nebula-cart-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

altcha-widget {
  display: block;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.nebula-customer-nav .nav-link {
  color: #d4d4d4;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  font-weight: 700;
}

.nebula-customer-nav .nav-link.active {
  background: rgba(0, 162, 255, 0.12);
  border-color: rgba(0, 162, 255, 0.22);
  color: #ffffff;
}

.nebula-customer-nav .nav-link:hover {
  border-color: rgba(255, 255, 255, 0.10);
  color: #ffffff;
}

.nebula-nav-logout {
  width: 100%;
  text-align: left;
}

.product-variant-item {
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.product-variant-item:hover {
  transform: translateY(-1px);
}

.feedback-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.feedback-card::before {
  content: '';
  position: absolute;
  inset: -80px;
  background: radial-gradient(circle at 20% 20%, rgba(0, 162, 255, 0.12), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.feedback-card > * {
  position: relative;
  z-index: 1;
}

.feedback-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 162, 255, 0.22);
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.65), 0 0 20px rgba(0, 162, 255, 0.10);
}

.nebula-table {
  --bs-table-bg: transparent;
  --bs-table-striped-bg: rgba(255, 255, 255, 0.02);
  --bs-table-striped-color: #ffffff;
  --bs-table-color: #dcdcdc;
  --bs-table-border-color: rgba(255, 255, 255, 0.06);
}

.nebula-table th {
  color: #ffffff;
  font-weight: 800;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

.nebula-table td {
  border-top-color: rgba(255, 255, 255, 0.05) !important;
}

.nebula-table a {
  color: #ffffff;
}

.nebula-table a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.btn-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.btn-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.nebula-toast-container {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.nebula-toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffffff;
  min-width: 240px;
  max-width: 360px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 18px rgba(0, 162, 255, 0.12);
  backdrop-filter: blur(10px);
  animation: nebulaToastIn 0.25s ease both;
}

.nebula-toast.success {
  border-color: rgba(0, 162, 255, 0.22);
}

.nebula-toast.error {
  border-color: rgba(255, 77, 77, 0.30);
}

.nebula-toast-body {
  font-weight: 800;
  font-size: 0.9rem;
}

.nebula-toast-close {
  margin-left: auto;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nebula-toast-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

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

.btn-login:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 30px rgba(0, 162, 255, 0.4);
}

/* Hero Title (1:1 Nebula) */
.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #ffffff;
}

.hero-title-gradient {
  background: linear-gradient(90deg, #00a2ff, #00d2ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero p {
  color: #808080;
  font-size: 1.15rem;
  font-weight: 400;
}

/* Search Bar (1:1 Nebula) */
.fake-searchbar input {
  background: #111111 !important;
  border: 1px solid var(--cl-border) !important;
  border-radius: 12px !important;
  padding: 0.8rem 1rem 0.8rem 3.5rem !important;
  color: #ffffff !important;
  font-size: 0.95rem;
}

.fake-searchbar input::placeholder {
  color: #555555;
}

/* Cards (1:1 Nebula) */
.card {
  background: var(--cl-card-bg);
  border: 1px solid var(--cl-border);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--cl-border-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 162, 255, 0.1);
}

.card-img-top {
  background: #080808;
  border-bottom: 1px solid var(--cl-border);
}

.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
}

.price {
  color: #00a2ff;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Modal Group (1:1 Replica Screenshot) */
.modal-content {
  background: #0d0d0d;
  border: 1px solid var(--cl-border);
  border-radius: 20px;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.8);
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.25rem 1.5rem;
}

.product-variant-item {
  background: #121212;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}

.product-variant-item:hover {
  background: #161616;
  border-color: var(--cl-border-accent);
}

.product-form-clean .product-variant-item.active {
  border: 1px solid var(--cl-border-accent) !important;
  background: rgba(0, 162, 255, 0.06) !important;
}

.product-variant-item .img-wrapper {
  width: 44px;
  height: 44px;
  background: #1a1a1a;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.badge-stock {
  background: rgba(0, 162, 255, 0.08);
  color: #00a2ff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid rgba(0, 162, 255, 0.15);
}

.badge-out {
  background: rgba(255, 60, 60, 0.08);
  color: #ff3c3c;
  border: 1px solid rgba(255, 60, 60, 0.15);
}

/* Status Cards */
.status-card {
  background: #0d0d0d;
  border: 1px solid var(--cl-border);
  border-radius: 14px;
  transition: all 0.2s ease;
}

.status-card:hover {
  border-color: var(--cl-border-accent);
  background: #111111;
}

.card-click-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nebula-score {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.nebula-score--muted {
  color: #cfcfcf;
}

.nebula-vs {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  opacity: 0.6;
}

.nebula-compare-wrap {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
}

.nebula-compare-side {
  padding: 2rem;
  min-height: 420px;
}

.nebula-compare-side--left {
  background: radial-gradient(circle at 20% 10%, rgba(0, 162, 255, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(0, 162, 255, 0.10), rgba(0, 0, 0, 0.35));
}

.nebula-compare-side--right {
  background: radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.06), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.35));
}

.nebula-vs-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(0, 162, 255, 0.25);
  box-shadow: 0 0 25px rgba(0, 162, 255, 0.18);
}

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

.nebula-bar-fill {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.1), rgba(0, 162, 255, 1));
}

.nebula-bar--muted {
  background: rgba(255, 255, 255, 0.06);
}

.nebula-bar-fill--muted {
  width: 60%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.55));
}

.nebula-pill-list {
  display: grid;
  gap: 0.75rem;
}

.nebula-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(0, 162, 255, 0.12);
  color: #ffffff;
  font-weight: 600;
}

.nebula-pill-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cl-accent);
  box-shadow: 0 0 10px rgba(0, 162, 255, 0.35);
  flex: 0 0 auto;
}

.nebula-plain-list {
  display: grid;
  gap: 0.85rem;
}

.nebula-plain {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #d0d0d0;
  font-weight: 600;
}

.nebula-plain i.fa-xmark {
  color: #ff4d4d;
}

.nebula-plain i.fa-triangle-exclamation {
  color: #ffb020;
}

.nebula-accordion .accordion-item {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.nebula-accordion .accordion-button {
  background: transparent;
  color: #ffffff;
  font-weight: 700;
  box-shadow: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nebula-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background: rgba(0, 162, 255, 0.06);
}

.nebula-accordion .accordion-body {
  padding: 1.25rem 1.25rem;
}

.nebula-faq-number {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #ffffff;
  background: rgba(0, 162, 255, 0.16);
  border: 1px solid rgba(0, 162, 255, 0.22);
  flex: 0 0 auto;
}

.nebula-discord-wrap {
  position: relative;
  background: radial-gradient(circle at 20% 20%, rgba(0, 162, 255, 0.18), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 2rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.nebula-discord-left {
  padding: 0.5rem;
}

.nebula-discord-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(0, 162, 255, 0.18);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.nebula-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d9d9d9;
  font-weight: 700;
  font-size: 0.75rem;
}

.nebula-discord-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.5rem;
}

.nebula-avatar {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(0, 162, 255, 0.45), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(0, 162, 255, 0.18);
  object-fit: cover;
  display: block;
}

.nebula-discord-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.nebula-stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1rem;
  text-align: center;
}

.nebula-stat-value {
  font-weight: 800;
  font-size: 1.4rem;
  color: #ffffff;
}

.nebula-stat-label {
  color: #9a9a9a;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.2rem;
}

.nebula-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-weight: 700;
  border-radius: 12px;
  padding: 0.65rem 1rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nebula-tab:hover {
  border-color: rgba(255, 255, 255, 0.08);
}

.nebula-tab.active {
  background: rgba(0, 162, 255, 0.08);
  border-color: var(--cl-border-accent);
}

.nebula-tutorial-card {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  animation: nebulaFadeUp 0.55s ease both;
}

.nebula-tutorial-card:hover {
  transform: translateY(-8px);
  border-color: var(--cl-border-accent);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 162, 255, 0.12);
}

.nebula-tutorial-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: #080808;
}

.nebula-tutorial-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.9;
  transform: scale(1.02);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nebula-tutorial-thumb-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 162, 255, 0.18), transparent 55%);
  pointer-events: none;
}

.nebula-tutorial-card:hover .nebula-tutorial-thumb-img {
  transform: scale(1.06);
  opacity: 1;
}

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

.card {
  animation: nebulaFadeUp 0.55s ease both;
}

.nebula-accordion-product {
  animation: nebulaFadeUp 0.55s ease both;
}

.nebula-product-buycard {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
}

.nebula-product-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.nebula-product-title {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.nebula-product-price {
  font-size: 2.1rem;
  font-weight: 900;
  color: #ffffff;
  margin-top: 0.35rem;
}

.nebula-featured-badge {
  background: rgba(0, 162, 255, 0.14);
  border: 1px solid rgba(0, 162, 255, 0.22);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.nebula-stock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.1rem;
}

.nebula-stock-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d9d9d9;
  font-weight: 800;
  font-size: 0.75rem;
}

.nebula-stock-bar {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  margin-top: 0.6rem;
}

.nebula-stock-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 162, 255, 0.25), rgba(0, 162, 255, 1));
}

.nebula-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.nebula-feature-pill {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d9d9d9;
  font-weight: 800;
  font-size: 0.75rem;
}

.nebula-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nebula-qty {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 0.4rem 0.6rem;
}

.nebula-qty-btn {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nebula-qty-btn:disabled {
  opacity: 0.4;
}

.nebula-qty-input {
  width: 46px;
  background: transparent;
  border: 0;
  outline: none;
  color: #ffffff;
  text-align: center;
  font-weight: 900;
}

.nebula-buy-row {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 0.75rem;
}

.nebula-btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-weight: 900;
  border-radius: 14px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.nebula-btn-secondary:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 162, 255, 0.22);
  background: rgba(0, 162, 255, 0.08);
}

.nebula-volume-note {
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  background: rgba(0, 162, 255, 0.08);
  border: 1px solid rgba(0, 162, 255, 0.16);
  color: #d7f0ff;
  font-weight: 800;
  font-size: 0.85rem;
}

.nebula-score {
  text-shadow: 0 0 18px rgba(0, 162, 255, 0.14);
}

.nebula-compare-wrap::before,
.nebula-compare-wrap::after {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
  animation: nebulaFloat 9s ease-in-out infinite;
}

.nebula-compare-wrap::before {
  left: -140px;
  top: -160px;
  background: rgba(0, 162, 255, 0.55);
}

.nebula-compare-wrap::after {
  right: -160px;
  bottom: -180px;
  background: rgba(255, 255, 255, 0.28);
  animation-delay: -4.5s;
}

.nebula-discord-wrap::before,
.nebula-discord-wrap::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.25;
  pointer-events: none;
  animation: nebulaFloat 10s ease-in-out infinite;
}

.nebula-discord-wrap::before {
  left: -120px;
  bottom: -140px;
  background: rgba(0, 162, 255, 0.55);
}

.nebula-discord-wrap::after {
  right: -140px;
  top: -160px;
  background: rgba(255, 255, 255, 0.22);
  animation-delay: -5s;
}

@keyframes nebulaFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -14px) scale(1.06); }
}
.nebula-mini-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: #8e8e8e;
}

.nebula-mini-note a {
  color: #ffffff;
  text-decoration: none;
}

.nebula-mini-note a:hover {
  text-decoration: underline;
}

.nebula-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #d9d9d9;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nebula-hero-title {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
}

.nebula-hero-subtitle {
  color: #b7b7b7;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
}

.nebula-hero-chips {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nebula-btn-ghost {
  background: rgba(255, 255, 255, 0.05);
}

.nebula-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.nebula-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.8;
}

.nebula-scroll-mouse {
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  position: relative;
}

.nebula-scroll-mouse::after {
  content: '';
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  animation: nebulaScrollDot 1.4s ease-in-out infinite;
}

.nebula-scroll-text {
  font-size: 0.75rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #cfcfcf;
}

@keyframes nebulaScrollDot {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.8; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.2; }
}

.nebula-motion-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 72%, rgba(0,0,0,0) 100%);
}

.nebula-orb {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.28;
  transform: translate3d(0, 0, 0);
}

.nebula-orb--a {
  left: -140px;
  top: -180px;
  background: rgba(0, 162, 255, 0.75);
  animation: nebulaDriftA 9s ease-in-out infinite;
}

.nebula-orb--b {
  right: -170px;
  top: -120px;
  background: rgba(255, 255, 255, 0.30);
  animation: nebulaDriftB 11s ease-in-out infinite;
}

.nebula-orb--c {
  left: 35%;
  bottom: -210px;
  width: 420px;
  height: 420px;
  background: rgba(0, 162, 255, 0.40);
  animation: nebulaDriftC 13s ease-in-out infinite;
}

.nebula-ring {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  opacity: 0.18;
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 0 0 1px rgba(0, 162, 255, 0.10) inset;
  transform-origin: center;
}

.nebula-ring--a {
  left: -220px;
  bottom: -260px;
  animation: nebulaSpin 18s linear infinite;
}

.nebula-ring--b {
  right: -240px;
  top: -240px;
  width: 420px;
  height: 420px;
  animation: nebulaSpinReverse 22s linear infinite;
}

.nebula-grid {
  position: absolute;
  inset: -200px;
  opacity: 0.10;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 90px 90px;
  transform: rotate(-12deg);
  animation: nebulaGridMove 14s linear infinite;
}

.nebula-motion-surface {
  position: relative;
  overflow: hidden;
}

.nebula-motion-surface > .nebula-orb,
.nebula-motion-surface > .nebula-ring {
  z-index: 0;
}

.nebula-motion-surface > *:not(.nebula-orb):not(.nebula-ring) {
  position: relative;
  z-index: 1;
}

.nebula-orb--vs-1 {
  left: -140px;
  top: -180px;
  background: rgba(0, 162, 255, 0.55);
  animation: nebulaDriftA 10s ease-in-out infinite;
}

.nebula-orb--vs-2 {
  right: -160px;
  bottom: -190px;
  background: rgba(255, 255, 255, 0.22);
  animation: nebulaDriftB 12s ease-in-out infinite;
}

.nebula-ring--vs {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  animation: nebulaSpin 26s linear infinite;
}

.nebula-orb--d-1 {
  left: -140px;
  bottom: -180px;
  background: rgba(0, 162, 255, 0.55);
  animation: nebulaDriftC 12s ease-in-out infinite;
}

.nebula-orb--d-2 {
  right: -160px;
  top: -170px;
  background: rgba(255, 255, 255, 0.20);
  animation: nebulaDriftB 14s ease-in-out infinite;
}

.nebula-ring--d {
  right: -220px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  animation: nebulaSpinReverse 24s linear infinite;
}

@keyframes nebulaDriftA {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(26px, 18px) scale(1.06); }
}

@keyframes nebulaDriftB {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-22px, 20px) scale(1.05); }
}

@keyframes nebulaDriftC {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(18px, -24px) scale(1.07); }
}

@keyframes nebulaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes nebulaSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes nebulaGridMove {
  from { transform: translate3d(0, 0, 0) rotate(-12deg); }
  to { transform: translate3d(90px, 90px, 0) rotate(-12deg); }
}

.nebula-reviews-hero {
  background: radial-gradient(circle at 15% 15%, rgba(0, 162, 255, 0.16), transparent 55%),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 22px;
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  overflow: hidden;
}

.nebula-reviews-hero-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nebula-reviews-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 162, 255, 0.14);
  border: 1px solid rgba(0, 162, 255, 0.22);
  color: #ffffff;
  font-size: 1.25rem;
}

.nebula-reviews-hero-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.85rem 1.25rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
}

.nebula-reviews-stat {
  text-align: center;
  min-width: 120px;
}

.nebula-reviews-stat-value {
  font-weight: 900;
  font-size: 1.5rem;
  color: #ffffff;
}

.nebula-reviews-stat-label {
  color: #9a9a9a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nebula-reviews-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
}

/* Footer Links */
.footer-link {
  color: #808080;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #00a2ff;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #050505;
}
::-webkit-scrollbar-thumb {
  background: #222;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #333;
}

/* Input Fields (Forms) */
.form-control {
  background: #111111 !important;
  border: 1px solid var(--cl-border) !important;
  color: #ffffff !important;
  border-radius: 10px !important;
  padding: 0.75rem 1rem !important;
}

.form-control:focus {
  border-color: var(--cl-accent) !important;
  box-shadow: 0 0 15px rgba(0, 162, 255, 0.1) !important;
}

/* Buttons Shimmer */
.btn-login {
  position: relative;
  overflow: hidden;
}

.btn-login::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
  transition: 0.5s;
  pointer-events: none;
}

.btn-login:hover::after {
  left: 100%;
}
