/* ============================================
   VOID3 CLOUD - CSS Design System
   ============================================ */

/* ============================================
   CSS Custom Properties (Design Tokens)
   ============================================ */
:root {
  /* Colors - Dark Theme */
  --color-bg-primary: #0a0a0a;
  --color-bg-secondary: #121212;
  --color-bg-tertiary: #1a1a1a;
  --color-bg-card: rgba(20, 20, 20, 0.8);
  --color-bg-card-hover: rgba(30, 30, 30, 0.9);

  /* Accent Colors */
  --color-accent-primary: #D03CC7;
  --color-accent-secondary: #e91e63;
  --color-accent-purple: #9c27b0;
  --color-accent-blue: #3d5afe;

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #b0b0b0;
  --color-text-tertiary: #707070;
  --color-text-accent: #ff3366;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #D03CC7 0%, #9c27b0 100%);
  --gradient-card: linear-gradient(135deg, rgba(255, 51, 102, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
  --gradient-bg: radial-gradient(ellipse at top, rgba(156, 39, 176, 0.15) 0%, transparent 60%);

  /* Shadows & Glows */
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.5);
  --shadow-card-hover: 0 8px 30px rgba(208, 60, 199, 0.3);
  --glow-accent: 0 0 20px rgba(208, 60, 199, 0.5);
  --glow-purple: 0 0 30px rgba(156, 39, 176, 0.6);

  /* Typography */
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Outfit', 'Inter', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ============================================
   Global Resets & Base Styles
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-bg);
  pointer-events: none;
  z-index: 0;
}

/* ============================================
   Typography
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

/* ============================================
   Container & Layout
   ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

/* ============================================
   Header / Navigation
   ============================================ */
.header {
  padding: 0.75rem 0;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 51, 102, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-lg);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs);
  text-decoration: none;
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 1px;
  transition: var(--transition-normal);
}

.logo-icon {
  font-size: 1.5rem;
}

/* ============================================
   Logo Animation
   ============================================ */
@keyframes pulseGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(255, 51, 102, 0.5));
    transform: scale(1);
  }

  50% {
    filter: drop-shadow(0 0 15px rgba(255, 51, 102, 0.8));
    transform: scale(1.05);
  }

  100% {
    filter: drop-shadow(0 0 5px rgba(255, 51, 102, 0.5));
    transform: scale(1);
  }
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.logo:hover {
  transform: translateY(-2px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  list-style: none;
}

.nav-links a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-text-primary);
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition-normal);
  text-decoration: none;
}

.user-profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-role-badge {
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.user-role-badge.admin {
  background: rgba(208, 60, 199, 0.2);
  color: #D03CC7;
  border: 1px solid rgba(208, 60, 199, 0.3);
  box-shadow: 0 0 10px rgba(208, 60, 199, 0.2);
}

.user-role-badge.staff {
  background: rgba(0, 188, 212, 0.2);
  color: #00bcd4;
  border: 1px solid rgba(0, 188, 212, 0.3);
  box-shadow: 0 0 10px rgba(0, 188, 212, 0.2);
}

.nav-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.login-btn:hover i {
  color: #ffffff !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
}

.nav-links a:hover {
  color: var(--color-text-accent);
}

.nav-links a:hover::after {
  width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  text-align: center;
  padding: var(--spacing-2xl) 0;
  background: radial-gradient(circle at center, rgba(208, 60, 199, 0.25) 0%, rgba(5, 5, 5, 1) 80%), url('hero_bg_subtle_v2.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid rgba(208, 60, 199, 0.05);
  margin-bottom: var(--spacing-xl);
  position: relative;
  overflow: hidden;
}

.hero-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.bubble {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  animation: floatBubble var(--duration) linear infinite;
  opacity: 0;
  z-index: 2;
}

@keyframes floatBubble {
  0% {
    transform: translateY(250px) scale(0.8);
    opacity: 0;
  }

  20% {
    opacity: 0.6;
  }

  80% {
    opacity: 0.6;
  }

  100% {
    transform: translateY(-400px) scale(1.1);
    opacity: 0;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 1) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(to top, var(--color-bg-primary), transparent);
  z-index: 2;
}

.hero .container {
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo-container {
  width: 380px;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  filter: drop-shadow(0 0 50px rgba(208, 60, 199, 0.5));
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-logo-badge {
  position: absolute;
  bottom: -5px;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  box-shadow: 0 4px 15px rgba(208, 60, 199, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  animation: heroLogoEntrance 1.8s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.hero-logo-container:hover {
  transform: scale(1.05);
}

.hero-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
  animation: heroLogoEntrance 1.5s cubic-bezier(0.16, 1, 0.3, 1), logoFloat 6s infinite ease-in-out;
}

/* Hero Status Bar */
.hero-status-bar {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  animation: fadeInUp 1s ease 0.5s backwards;
  transform: scale(0.9);
}

.status-indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-label {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--color-text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: relative;
}

.status-dot.green {
  background: #4caf50;
  box-shadow: 0 0 10px #4caf50, 0 0 20px rgba(76, 175, 80, 0.4);
}

.status-dot.green::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  animation: neonPulse 2s infinite;
}

.status-dot.red {
  background: #f44336;
  box-shadow: 0 0 10px #f44336, 0 0 20px rgba(244, 67, 54, 0.4);
}

@keyframes neonPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero-status-bar {
    gap: var(--spacing-md);
    padding: 10px 20px;
    flex-wrap: wrap;
  }
}

@keyframes heroLogoEntrance {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(30px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

@keyframes heroFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes logoSoftPulse {

  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
  }

  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
  }
}

@keyframes blobMorph {

  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }

  33% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }

  66% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
}

/* Subtitle styles removed */

/* ============================================
   Search & Filters Section
   ============================================ */
.search-section {
  margin-bottom: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.search-container {
  width: 100%;
  max-width: 350px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.7rem 1rem 0.7rem 2.8rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: var(--color-text-primary);
  font-size: 0.8rem;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.search-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--color-accent-primary);
  box-shadow: 0 0 20px rgba(255, 51, 102, 0.1);
  max-width: 400px;
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text-tertiary);
  font-size: 0.85rem;
  transition: var(--transition-normal);
}

.search-input:focus+.search-icon {
  color: var(--color-accent-primary);
}

.filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.02);
  padding: 4px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-btn {
  padding: 6px 16px;
  background: transparent;
  border: none;
  color: var(--color-text-tertiary);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover {
  color: var(--color-text-secondary);
  background: rgba(255, 255, 255, 0.03);
}

.filter-btn.active {
  background: var(--color-accent-primary);
  color: white;
  box-shadow: var(--glow-accent);
}

/* ============================================
   Login Modal (Minimalist Purple Edition)
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.login-modal {
  background: #080808;
  width: 100%;
  max-width: 320px;
  padding: 50px 30px;
  border-radius: 20px;
  border: 1px solid rgba(156, 39, 176, 0.15);
  text-align: center;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.modal-overlay.active .login-modal {
  transform: translateY(0);
}

.login-modal-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 25px;
  background: var(--gradient-primary);
  border-radius: 15px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(156, 39, 176, 0.3);
}

.login-modal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.login-modal h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}

.login-modal p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-bottom: 40px;
  line-height: 1.4;
}

.discord-login-btn {
  width: 100%;
  padding: 14px;
  background: #111;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.discord-login-btn i {
  font-size: 1.1rem;
  transition: 0.3s;
}

.discord-login-btn:hover {
  background: #000;
  color: #fff;
  border-color: #9c27b0;
  box-shadow: 0 0 30px rgba(156, 39, 176, 0.4);
  transform: translateY(-2px);
}

.discord-login-btn:hover i {
  color: #9c27b0;
  filter: drop-shadow(0 0 5px #9c27b0);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.1);
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s;
}

.close-modal:hover {
  color: var(--color-accent-secondary);
}

/* ============================================
   Products Grid
   ============================================ */
.products-section {
  padding: var(--spacing-md) 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

/* Product Card - Portrait Style with Badges */
.product-card {
  aspect-ratio: 1 / 1.4;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  position: relative;
  display: flex;
  background: var(--color-bg-secondary);
}

.product-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

/* Category Icon (Top Right) - Cleaned for already branded images */
.category-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: auto;
  height: auto;
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  z-index: 10;
}

.category-icon i {
  font-size: 1.25rem;
  color: var(--color-accent-primary);
  opacity: 0.8;
}

/* Price Badge (Top Right) */
.product-price {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--color-accent-primary);
  color: var(--color-text-primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 800;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 51, 102, 0.4);
}

/* Product Name Badge (Bottom Left) */
.product-name-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 40%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-accent-primary);
  box-shadow: 0 10px 40px rgba(255, 51, 102, 0.2);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card:hover .card-overlay {
  background: linear-gradient(to top, rgba(255, 51, 102, 0.3) 0%, transparent 60%);
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-secondary);
  border-top: 1px solid rgba(255, 51, 102, 0.1);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  margin-top: var(--spacing-2xl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-lg);
}

.footer-section h3 {
  color: var(--color-accent-primary);
  margin-bottom: var(--spacing-md);
  font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
  color: var(--color-text-secondary);
  text-decoration: none;
  line-height: 2;
  transition: var(--transition-fast);
}

.footer-section a:hover {
  color: var(--color-accent-primary);
  padding-left: var(--spacing-xs);
}

.footer-links {
  list-style: none;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 51, 102, 0.1);
  color: var(--color-text-tertiary);
  font-size: 0.9rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--spacing-md);
  }

  .product-card {
    height: 380px;
  }

  .product-image {
    height: 200px;
  }

  .hero-stats {
    gap: var(--spacing-md);
  }

  .filters {
    gap: var(--spacing-sm);
  }

  .filter-btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    height: 400px;
  }
}

/* ============================================
   Animations & Micro-interactions
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease backwards;
}

.product-card:nth-child(1) {
  animation-delay: 0.1s;
}

.product-card:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card:nth-child(3) {
  animation-delay: 0.3s;
}

.product-card:nth-child(4) {
  animation-delay: 0.4s;
}

.product-card:nth-child(5) {
  animation-delay: 0.5s;
}

.product-card:nth-child(6) {
  animation-delay: 0.6s;
}

.product-card:nth-child(7) {
  animation-delay: 0.7s;
}

.product-card:nth-child(8) {
  animation-delay: 0.8s;
}

/* Loading State */
.loading {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--color-text-secondary);
  font-size: 1.2rem;
}

.no-results {
  text-align: center;
  padding: var(--spacing-2xl);
  color: var(--color-text-secondary);
}

.no-results h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-sm);
}

/* Auth State Styles */
.user-profile-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--color-accent-primary);
  object-fit: cover;
}

.login-btn.logged-in {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  display: flex;
  align-items: center;
  height: auto;
}

.login-btn.logged-in:hover {
  background: rgba(255, 51, 102, 0.1);
  border-color: var(--color-accent-primary);
}

.dashboard-link-btn {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-link-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.dashboard-link-btn i {
  color: var(--color-accent-primary);
}

/* ============================================
   Showcase Section
   ============================================ */
.showcase-section {
  padding: 80px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.8) 50%, transparent 100%);
}

.showcase-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(208, 60, 199, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 25px;
  animation: fadeInUp 0.8s ease backwards;
}

.section-title {
  display: none;
  /* Replaced by badge */
}

.section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

.showcase-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}

.showcase-slider {
  flex: 1;
  overflow: hidden;
  border-radius: 24px;
}

.showcase-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .showcase-slide {
    grid-template-columns: 1fr;
  }

  .showcase-specs {
    display: none;
  }
}

.showcase-video {
  background: #000;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
}

.showcase-video video,
.showcase-video iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
}

.showcase-video-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 10;
}

.showcase-video-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ff0000;
  border-radius: 50%;
  animation: pulse-record 1.5s infinite;
}

@keyframes pulse-record {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.3);
  }
}

.showcase-specs {
  background: #0a0a0a;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.showcase-product-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-product-img {
  width: 50px;
  height: 65px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.showcase-product-info h4 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.showcase-product-info span {
  font-size: 0.7rem;
  color: var(--color-accent-primary);
  text-transform: uppercase;
}

.showcase-spec-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showcase-spec-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.showcase-spec-item label {
  font-size: 0.6rem;
  color: var(--color-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-spec-item span {
  font-size: 0.8rem;
  color: #fff;
  font-weight: 600;
}

.showcase-cta {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-btn {
  display: block;
  width: 100%;
  background: var(--color-accent-primary);
  color: white;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.3s;
}

.showcase-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.showcase-nav {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  flex-shrink: 0;
}

.showcase-nav:hover {
  background: var(--color-accent-primary);
  border-color: var(--color-accent-primary);
}

.showcase-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.showcase-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.showcase-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: 0.3s;
}

.showcase-dot.active {
  background: var(--color-accent-primary);
  box-shadow: 0 0 10px var(--color-accent-primary);
}

.status-indicator {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700 !important;
}

.status-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 5px currentColor;
}

.status-indicator.undetected {
  color: #4caf50 !important;
}

.status-indicator.updating {
  color: #ffeb3b !important;
}

.status-indicator.detected {
  color: #f44336 !important;
}

.status-indicator.testing {
  color: #ff9800 !important;
}

/* Product Specs List (Vertical Style - Like Reference Image) */
.product-specs-list {
  margin: 25px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background: rgba(255, 255, 255, 0.02);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.spec-label {
  font-size: 0.65rem;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  opacity: 0.7;
}

.spec-value {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}