/* ============================================================
   HORSEPOWER NETWORKING — Design System & Styles
   Premium dark automotive theme with crimson & chrome accents
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
@import url('fix.css');

/* --- Design Tokens --- */
:root {
  /* Backgrounds — deeper dark */
  --bg-primary: #050507;
  --bg-secondary: #0a0a0c;
  --bg-tertiary: #101014;
  --bg-elevated: #16161a;

  /* Crimson accent palette - optimized */
  --accent-crimson: #9e1c31;
  --accent-crimson-light: #d62843;
  --accent-crimson-dark: #6e0f1f;
  --accent-crimson-glow: rgba(214, 40, 67, 0.12);
  --accent-crimson-subtle: rgba(214, 40, 67, 0.06);

  /* Chrome / Silver accent */
  --accent-chrome: #c4c4cc;
  --accent-chrome-light: #ebebf0;
  --accent-chrome-dark: #8f8f99;

  /* Text */
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.02);
  --glass-bg-hover: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);

  /* Spacing */
  --section-padding: 120px 0;
  --container-max: 1280px;
  --container-padding: 0 24px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }

p {
  color: var(--text-secondary);
  font-weight: 400;
}

.text-crimson {
  color: var(--accent-crimson-light);
}

.text-chrome {
  color: var(--accent-chrome);
}

.text-gradient-crimson {
  background: linear-gradient(135deg, var(--accent-crimson-light), var(--accent-crimson), var(--accent-crimson-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-chrome {
  background: linear-gradient(135deg, var(--accent-chrome-light), var(--accent-chrome), var(--accent-chrome-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Layout --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
  width: 100%;
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header .section-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-crimson-light);
  margin-bottom: 16px;
  position: relative;
  padding-left: 40px;
}

.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 28px;
  height: 2px;
  background: var(--accent-crimson-light);
  transform: translateY(-50%);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-crimson-light), var(--accent-crimson));
  color: #fff;
  font-weight: 600;
  border: 1px solid rgba(178, 42, 61, 0.5);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #c2304a, var(--accent-crimson-light));
}

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

.btn-secondary {
  background: transparent;
  color: var(--accent-chrome);
  border: 2px solid var(--accent-chrome-dark);
}

.btn-secondary:hover {
  background: rgba(192, 192, 200, 0.08);
  border-color: var(--accent-chrome);
  color: var(--accent-chrome-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192, 192, 200, 0.1);
}

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

/* --- Glassmorphism Cards --- */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: all var(--transition-smooth);
}

.glass-card:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 12, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1001;
}

.navbar-logo img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.navbar-logo span {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

.navbar-logo .logo-accent {
  color: var(--accent-crimson-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-crimson-light);
  transition: width var(--transition-smooth);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-crimson-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.navbar-cta {
  z-index: 1001;
}

.navbar-cta .btn {
  padding: 12px 28px;
  font-size: 0.85rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-smooth);
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 12, 0.98);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  transition: all var(--transition-smooth);
}

.mobile-nav a:hover {
  color: var(--accent-crimson-light);
  transform: translateX(10px);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 12, 0.4) 0%,
    rgba(10, 10, 12, 0.6) 40%,
    rgba(10, 10, 12, 0.85) 75%,
    rgba(10, 10, 12, 1) 100%
  );
  z-index: 1;
}

/* Crimson vignette for brand feel */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(139, 26, 43, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-logo {
  width: 220px;
  height: auto;
  margin: 0 auto 32px;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: fadeUpScale 1s ease-out 0.1s forwards;
  filter: none;
}

.hero-content h1 {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease-out 0.4s forwards;
}

.hero-content .hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--text-secondary);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out 0.6s forwards;
}

.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(0.85rem, 1.4vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-crimson-light);
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease-out 0.75s forwards;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out 0.9s forwards;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s ease-out 1.2s forwards;
}

.hero-scroll-indicator span {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent-crimson-light), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* Particle canvas */
#hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  background: var(--bg-secondary);
  position: relative;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line between steps */
.steps-container::before {
  content: '';
  position: absolute;
  top: 80px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-crimson), transparent);
  z-index: 0;
}

.step-card {
  text-align: center;
  padding: 48px 32px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-crimson-light), var(--accent-crimson));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: none;
}

.step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.step-card h3 {
  margin-bottom: 16px;
  font-size: 1.3rem;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================
   FOR SHOPS
   ============================================================ */
.for-shops {
  background: var(--bg-primary);
}

.shops-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.shops-content h2 {
  margin-bottom: 24px;
}

.shops-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.shops-benefits {
  margin: 32px 0 40px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-crimson-subtle);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.benefit-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
}

.benefit-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat-card {
  padding: 36px 28px;
  text-align: center;
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-chrome-light), var(--accent-chrome));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: 'Oswald', sans-serif;
}

/* ============================================================
   FOR MEMBERS — Benefits Carousel
   ============================================================ */
.for-members {
  background: var(--bg-secondary);
  overflow: hidden;
  position: relative;
}

.for-members::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.benefits-carousel-wrapper {
  position: relative;
  margin: 0 -24px;
  padding: 0 24px;
}

.benefits-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 20px 0 40px;
}

.benefits-carousel::-webkit-scrollbar {
  display: none;
}

.benefit-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  padding: 40px 32px;
  text-align: center;
}

.benefit-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-crimson-subtle), transparent);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  text-transform: none;
  letter-spacing: 0.01em;
}

.benefit-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Carousel navigation dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-crimson-light);
  box-shadow: 0 0 10px var(--accent-crimson-glow);
  transform: scale(1.2);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  background: var(--bg-primary);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.filter-btn:hover {
  border-color: var(--accent-crimson-light);
  color: var(--accent-crimson-light);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--accent-crimson-light), var(--accent-crimson));
  color: #fff;
  border-color: var(--accent-crimson-light);
  box-shadow: 0 0 20px var(--accent-crimson-glow);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
  transition: all var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8) 100%);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.gallery-item:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  transform: translateY(-4px);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 60px;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  z-index: 2;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item .gallery-zoom {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-crimson-light);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--transition-smooth);
  font-size: 1.1rem;
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

.lightbox.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--accent-crimson-light);
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.lightbox-nav:hover {
  background: var(--accent-crimson-light);
  color: #fff;
  border-color: var(--accent-crimson-light);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

/* ============================================================
   COMMUNITY / ABOUT
   ============================================================ */
.community {
  background: var(--bg-secondary);
  position: relative;
}

.community::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 26, 43, 0.4), transparent);
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.community-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--glass-border);
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.community-image:hover img {
  transform: scale(1.03);
}

.community-content h2 {
  margin-bottom: 24px;
}

.community-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.community-content .highlight-quote {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--accent-crimson-light);
  border-left: 3px solid var(--accent-crimson-light);
  padding-left: 24px;
  margin: 32px 0;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--bg-primary);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-crimson), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form {
  padding: 48px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-crimson-light);
  box-shadow: 0 0 0 3px var(--accent-crimson-subtle);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9a9a' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group select option {
  background: var(--bg-tertiary);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-info {
  padding-top: 20px;
}

.contact-info h3 {
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.contact-info p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-crimson-subtle);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-detail-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-detail-text strong {
  display: block;
  color: var(--text-primary);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-secondary);
  transition: all var(--transition-smooth);
}

.social-link:hover {
  background: var(--accent-crimson-light);
  color: #fff;
  border-color: var(--accent-crimson-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px var(--accent-crimson-glow);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-secondary);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(139, 26, 43, 0.15);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand img {
  width: 60px;
  height: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-column h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-crimson-light);
  margin-bottom: 20px;
}

.footer-column a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  transition: all var(--transition-fast);
}

.footer-column a:hover {
  color: var(--accent-crimson-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpScale {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.3); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px var(--accent-crimson-glow); }
  50% { box-shadow: 0 0 40px var(--accent-crimson-glow), 0 0 60px rgba(139, 26, 43, 0.15); }
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* ============================================================
   FORM SUCCESS TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 32px;
  right: 32px;
  padding: 20px 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--accent-crimson-light);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.05em;
  z-index: 3000;
  transform: translateY(120%);
  transition: transform var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.toast.show {
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* ============================================================
   SIDEBAR LAYOUT (For Dashboard/Shop)
   ============================================================ */
.app-wrapper {
  display: flex;
  min-height: 100vh;
  background-color: var(--bg-primary);
}

.app-sidebar {
  width: 280px;
  background-color: var(--bg-secondary);
  border-right: 1px solid rgba(214, 40, 67, 0.15);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 100;
  box-shadow: 4px 0 24px rgba(0,0,0,0.4);
}

.sidebar-header {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-logo {
  width: 80px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(214, 40, 67, 0.4));
}

.sidebar-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: center;
}

.sidebar-nav {
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.sidebar-nav-item:hover, .sidebar-nav-item.active {
  background: var(--accent-crimson-subtle);
  color: var(--accent-crimson-light);
  border: 1px solid rgba(214, 40, 67, 0.3);
}

.sidebar-nav-item.active {
  background: linear-gradient(135deg, rgba(214, 40, 67, 0.2), rgba(214, 40, 67, 0.05));
  box-shadow: inset 3px 0 0 var(--accent-crimson-light);
}

.sidebar-footer {
  padding: 24px 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0; /* fix overflow */
  background: radial-gradient(circle at top right, rgba(214, 40, 67, 0.05), transparent 40%);
}

.app-topbar {
  height: 80px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(5,5,7,0.8);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 90;
}

.app-content {
  padding: 40px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ============================================================
   MERCH STORE
   ============================================================ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.merch-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.merch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 20px var(--accent-crimson-glow);
  border-color: var(--accent-crimson-light);
}

.merch-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: #111;
  overflow: hidden;
}

.merch-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.merch-card:hover .merch-img-wrap img {
  transform: scale(1.08);
}

.merch-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent-crimson-light);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(214, 40, 67, 0.4);
}

.merch-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.merch-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.merch-price {
  font-size: 1.1rem;
  color: var(--accent-chrome);
  font-weight: 500;
  margin-bottom: 16px;
}

.merch-add-btn {
  margin-top: auto;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.merch-add-btn:hover {
  background: var(--accent-crimson-light);
  border-color: var(--accent-crimson-light);
  box-shadow: 0 0 20px var(--accent-crimson-glow);
}

/* Tablet & below */
@media (max-width: 1024px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .steps-container {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }

  .steps-container::before {
    display: none;
  }

  .shops-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .shops-content {
    order: 1;
  }

  .stats-grid {
    order: 2;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --section-padding: 64px 0;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .hero-logo {
    width: 100px;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .benefit-card {
    flex: 0 0 260px;
    padding: 32px 24px;
  }

  .community-content .highlight-quote {
    font-size: 1.3rem;
  }

  .lightbox-content img {
    max-width: 95vw;
    max-height: 70vh;
  }

  .lightbox-close {
    top: -44px;
    right: 4px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.8rem; }

  .btn {
    padding: 14px 28px;
    font-size: 0.9rem;
  }

  .step-card {
    padding: 32px 20px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-number {
    font-size: 1.8rem;
  }
}

/* ============================================================
   EMERGENCY FIXES: Bypassing JS Errors & Eliminating Lag
   ============================================================ */

/* 1. Fix blank screens caused by JS syntax error breaking IntersectionObserver */
.reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
    animation: none !important;
}

/* 2. Eliminate 'end lag' (hover/scroll lag) via GPU Acceleration (Graphify/Hardware Acceleration) */
.custom-cursor {
    will-change: left, top, width, height, background-color, box-shadow;
    transform: translate(-50%, -50%) translateZ(0) !important;
    backface-visibility: hidden;
    pointer-events: none !important;
}
.custom-cursor.hover {
    transform: translate(-50%, -50%) translateZ(0) !important;
}
.hub-card {
    will-change: transform, box-shadow;
    transform: translateZ(0) !important;
    backface-visibility: hidden;
}
canvas#hero-particles {
    pointer-events: none !important;
    will-change: transform;
    transform: translateZ(0) !important;
}

/* ============================================================
   CART DRAWER & CHECKOUT MODAL STYLES
   ============================================================ */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(10, 10, 12, 0.95);
  border-left: 1px solid rgba(214, 40, 67, 0.2);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cart-drawer.active {
  transform: translateX(0);
}

.cart-drawer-header {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cart-drawer-header h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  margin: 0;
}
.cart-drawer-close {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}
.cart-drawer-close:hover {
  color: var(--accent-crimson-light);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  margin-bottom: 16px;
  transition: border-color 0.2s ease;
}
.cart-item:hover {
  border-color: rgba(214, 40, 67, 0.3);
}
.cart-item-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  background: #111;
}
.cart-item-details {
  flex: 1;
}
.cart-item-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  margin: 0 0 4px 0;
  color: var(--text-primary);
}
.cart-item-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.cart-item-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty-btn {
  width: 24px;
  height: 24px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover {
  background: var(--accent-crimson-light);
}
.cart-qty-val {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 18px;
  text-align: center;
}
.cart-item-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.cart-item-total {
  font-weight: 600;
  color: var(--accent-chrome);
  font-size: 0.95rem;
}
.cart-item-remove {
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.cart-item-remove:hover {
  opacity: 1;
}

.cart-drawer-footer {
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.9);
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.cart-total-price {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent-crimson-light);
}
.cart-checkout-btn {
  width: 100%;
  padding: 14px;
  margin-top: 12px;
  font-size: 1rem;
}
.cart-clear-btn {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 10px;
  cursor: pointer;
  text-decoration: underline;
}
.cart-clear-btn:hover {
  color: #fff;
}

/* Checkout Modal */
.checkout-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.checkout-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.checkout-modal {
  width: 100%;
  max-width: 760px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}
.checkout-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 700px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

/* Toast Notifications */
.hpn-toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}
.hpn-toast {
  min-width: 280px;
  max-width: 380px;
  padding: 16px 20px;
  background: rgba(15, 15, 20, 0.95);
  border-left: 4px solid var(--accent-crimson-light);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  color: #fff;
  pointer-events: all;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hpn-toast.show {
  opacity: 1;
  transform: translateY(0);
}
.hpn-toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  font-size: 0.9rem;
}
.hpn-toast-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
}
.hpn-toast-body {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ============================================================
   ANIME.JS 3D & INTERACTIVITY STYLES
   ============================================================ */
.perspective-container {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.glass-card, .merch-card, .shop-card, .feature-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.sphere-viewport {
  user-select: none;
  touch-action: none;
}

.sphere-card {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sphere-card:hover {
  border-color: #fff !important;
  box-shadow: 0 0 35px var(--accent-crimson-light) !important;
  z-index: 100 !important;
}

.inspect-3d-btn {
  transition: all var(--transition-fast);
}

.inspect-3d-btn:hover {
  background: var(--accent-crimson-light) !important;
  color: #fff !important;
  box-shadow: 0 0 20px var(--accent-crimson-glow);
}


