/* ================================
   🎨 Design System
================================ */
:root {
  /* Colors */
  --neon-pink: #ff006e;
  --neon-cyan: #00d9ff;
  --neon-yellow: #ffbe0b;

  /* Gradients */
  --gradient-main: linear-gradient(135deg, #ff006e, #ff4d8f);
  --gradient-accent: linear-gradient(135deg, #00d9ff, #06ffa5);

  /* Typography */
  --font-serif: 'Noto Serif TC', 'Ma Shan Zheng', serif;
  --font-sans: 'Noto Sans HK', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Sizes */
  --container: 1280px;

  /* Easing */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* Theme Colors */
  --bg-dark: #0a0a0f;
  --bg-darker: #08080c;
  --bg-card: rgba(255, 255, 255, 0.05);
  --text-light: #f0f0f0;
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-dim: rgba(255, 255, 255, 0.35);
  --border-light: rgba(255, 255, 255, 0.1);
}

/* Light Mode */
.light-mode {
  --bg-dark: #f5f5f7;
  --bg-darker: #eeeef0;
  --bg-card: rgba(255, 255, 255, 0.8);
  --text-light: #1d1d1f;
  --text-muted: rgba(0, 0, 0, 0.55);
  --text-dim: rgba(0, 0, 0, 0.3);
  --border-light: rgba(0, 0, 0, 0.1);
}

.light-mode .story-card,
.light-mode .creator-card,
.light-mode .newsletter-box {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  border-color: rgba(0, 0, 0, 0.1);
}

.light-mode .creator-glow {
  background: linear-gradient(to top, rgba(245, 245, 247, 0.95) 0%, transparent 100%);
}

.light-mode .progress-bar {
  background: rgba(0, 0, 0, 0.08);
}

.light-mode .newsletter-form input {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text-light);
}

.light-mode .newsletter-form input:focus {
  border-color: var(--neon-cyan);
  background: rgba(0, 0, 0, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

input {
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ================================
   🎯 Particles & Cursor (V1)
================================ */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ================================
   📦 Layout Helpers
================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ================================
   📱 Navbar
================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  padding: 0.75rem 0;
}

.light-mode .navbar.scrolled {
  background: rgba(245, 245, 247, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.125rem;
  font-weight: 800;
  z-index: 1001;
}

.logo-icon {
  font-size: 1.5rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switcher {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 8px;
}

.lang-btn {
  padding: 0.375rem 0.625rem;
  border-radius: 5px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-dim);
  transition: all 0.3s;
}

.lang-btn.active {
  color: var(--neon-cyan);
  background: rgba(0, 217, 255, 0.1);
}

.theme-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s;
}

.theme-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* ================================
   🦁 Hero
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 8rem 0 6rem;
  z-index: 2;
  overflow: hidden;
}

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

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.6) 50%, rgba(10, 10, 15, 0.95) 100%);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 0, 110, 0.08) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255, 0, 110, 0.15);
  border: 1px solid rgba(255, 0, 110, 0.3);
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--neon-pink);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-pink);
  box-shadow: 0 0 10px var(--neon-pink);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 900;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.2;
}

.title-line .word {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.title-line .word:hover {
  transform: translateY(-4px);
}

.neon-comma {
  color: var(--neon-cyan);
  display: inline-block;
  animation: commaPulse 2s infinite;
}

@keyframes commaPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.neon-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  min-height: 1.75rem;
}

#typing-text::after {
  content: '|';
  animation: blink 1s step-end infinite;
  color: var(--neon-cyan);
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.3s var(--ease-out);
}

.btn-primary {
  background: var(--gradient-main);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(255, 0, 110, 0.5);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.btn-accent {
  background: var(--gradient-accent);
  color: #0a0a0f;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(0, 217, 255, 0.4);
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.125rem;
}

/* Stats Bar */
.stats-bar {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 1.5rem 3rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  z-index: 2;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* ================================
   🏮 Section Headers
================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 50px;
  color: var(--neon-cyan);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: pulse 2s infinite;
}

.tag-dot.fire {
  background: var(--neon-pink);
  box-shadow: 0 0 10px var(--neon-pink);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ================================
   🏮 Categories
================================ */
.categories {
  padding: 8rem 0;
  position: relative;
  z-index: 2;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  height: 400px;
  border-radius: 24px;
  cursor: pointer;
  perspective: 1000px;
  transition: transform 0.3s var(--ease);
}

.category-card:hover {
  transform: translateY(-8px);
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s var(--ease-out);
  transform-style: preserve-3d;
}

.category-card:hover .card-inner {
  transform: rotateY(5deg) rotateX(2deg);
}

.card-front {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
}

.card-image {
  position: absolute;
  inset: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.category-card:hover .card-image img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.3) 0%, rgba(10, 10, 15, 0.85) 100%);
  transition: opacity 0.3s;
}

.category-card:hover .card-overlay {
  opacity: 0.9;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  z-index: 2;
  transition: transform 0.3s var(--ease);
}

.category-card:hover .card-content {
  transform: translateY(-10px);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 20px currentColor);
  animation: float 3s ease-in-out infinite;
}

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

.card-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.card-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
}

.gradient-tag {
  background: var(--gradient-main);
  border: none;
  color: white;
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s;
  pointer-events: none;
}

.category-card:hover .card-glow {
  opacity: 1;
}

/* ================================
   🌟 Featured Product
================================ */
.featured {
  padding: 8rem 0;
  background: linear-gradient(to bottom, var(--bg-dark) 0%, var(--bg-darker) 100%);
  position: relative;
  overflow: hidden;
}

.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 0, 110, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 4rem;
}

.showcase-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform-style: preserve-3d;
  transition: transform 0.3s var(--ease);
}

.image-wrapper:hover {
  transform: rotateY(-5deg) rotateX(5deg) translateZ(20px);
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-frame {
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: -1;
  filter: blur(20px);
}

.image-wrapper:hover .image-frame {
  opacity: 0.5;
}

.float-element {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--neon-pink);
  animation: float-element 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.3);
  z-index: 10;
}

@keyframes float-element {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(10px, -10px) rotate(5deg); }
  50% { transform: translate(-5px, -20px) rotate(-5deg); }
  75% { transform: translate(-10px, -10px) rotate(3deg); }
}

.showcase-info {
  padding: 2rem 0;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-main);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
  animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(255, 0, 110, 0.7); }
}

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-story {
  margin-bottom: 2rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.product-story p {
  margin-bottom: 0.5rem;
}

.story-highlight {
  color: var(--neon-cyan);
  font-weight: 600;
  font-style: italic;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--neon-cyan);
  border-radius: 12px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.feature-item i {
  color: var(--neon-cyan);
  font-size: 1.125rem;
}

/* Funding */
.funding-progress {
  margin-bottom: 2rem;
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.progress-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.progress-percent {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-bar {
  position: relative;
  height: 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: visible;
  margin-bottom: 0.75rem;
}

.progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--progress);
  background: var(--gradient-accent);
  border-radius: 100px;
  transition: width 1s var(--ease-out);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

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

.progress-glow {
  position: absolute;
  top: 50%;
  left: var(--progress);
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, var(--neon-cyan) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0.6;
  filter: blur(10px);
  pointer-events: none;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.progress-stats strong {
  color: var(--text-light);
  font-weight: 700;
}

/* Purchase */
.product-purchase {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.price-box {
  flex: 1;
  min-width: 200px;
}

.price-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--neon-pink);
}

.amount {
  font-size: 3.5rem;
  font-weight: 900;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-original {
  font-size: 1.125rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

/* ================================
   💬 Stories
================================ */
.stories {
  padding: 8rem 0;
  background: var(--bg-dark);
}

.stories-carousel {
  position: relative;
  margin-bottom: 3rem;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  transition: transform 0.5s var(--ease-out);
}

.story-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.story-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.story-card:hover::before {
  transform: scaleX(1);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.story-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.story-meta {
  flex: 1;
}

.story-author {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.story-location {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.story-category {
  padding: 0.375rem 0.875rem;
  background: rgba(255, 190, 11, 0.2);
  color: var(--neon-yellow);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.story-content {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.story-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.story-time {
  font-size: 0.875rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.story-like {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all 0.3s var(--ease);
}

.story-like:hover {
  background: rgba(255, 0, 110, 0.2);
  color: var(--neon-pink);
  transform: scale(1.05);
}

.story-like.active {
  background: rgba(255, 0, 110, 0.2);
  color: var(--neon-pink);
}

.story-like.active i {
  animation: heart-beat 0.5s;
}

@keyframes heart-beat {
  0%, 100% { transform: scale(1); }
  25% { transform: scale(1.3); }
  50% { transform: scale(0.9); }
  75% { transform: scale(1.2); }
}

/* Carousel Controls */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s var(--ease);
}

.carousel-btn:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -28px; }
.carousel-btn.next { right: -28px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s var(--ease);
}

.dot.active {
  background: var(--gradient-main);
  width: 32px;
  border-radius: 6px;
}

.dot:hover:not(.active) {
  background: rgba(255, 255, 255, 0.4);
}

/* ================================
   🎨 Creators
================================ */
.creators {
  padding: 8rem 0;
  background: linear-gradient(135deg, rgba(255, 0, 110, 0.03) 0%, rgba(0, 217, 255, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.creators::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
}

.creators-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.creators-text {
  padding-right: 2rem;
}

.creators-desc {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.creators-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.creator-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.3);
}

.feature-text h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.creators-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.featured-creator {
  position: relative;
  perspective: 1200px;
}

.creator-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
  position: relative;
  transform-style: preserve-3d;
}

.creator-card:hover {
  transform: translateY(-12px) rotateY(5deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.creator-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--gradient-main);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  color: white;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(255, 0, 110, 0.4);
}

.creator-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.creator-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.creator-card:hover .creator-image img {
  transform: scale(1.1);
}

.creator-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.95) 0%, transparent 100%);
}

.creator-info {
  padding: 2rem;
}

.creator-info h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.creator-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.creator-title i {
  color: var(--neon-pink);
}

.creator-bio {
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--neon-cyan);
}

.creator-stats {
  display: flex;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.stat {
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.25rem;
}

.stat span {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ================================
   📮 Newsletter
================================ */
.newsletter {
  padding: 4rem 0;
}

.newsletter-box {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border: 1px solid var(--border-light);
  border-radius: 32px;
  padding: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(0, 217, 255, 0.08), transparent 30%);
  animation: rotate 8s linear infinite;
}

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

.newsletter-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  z-index: 1;
}

.newsletter-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(255, 0, 110, 0.4);
}

.newsletter-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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

.newsletter-form {
  display: flex;
  gap: 1rem;
  min-width: 400px;
  z-index: 1;
}

.newsletter-form input {
  flex: 1;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s;
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.1);
}

.newsletter-form input::placeholder {
  color: var(--text-dim);
}

/* ================================
   🦶 Footer
================================ */
.footer {
  background: var(--bg-darker);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  transition: all 0.3s var(--ease);
}

.social-links a:hover {
  background: var(--gradient-main);
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255, 0, 110, 0.4);
}

.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--neon-cyan);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

.footer-bottom i.fa-heart {
  color: var(--neon-pink);
  animation: heart-beat 1.5s infinite;
}

.footer-quote {
  font-style: italic;
  color: var(--neon-cyan);
}

/* ================================
   📱 Responsive
================================ */
@media (max-width: 1024px) {
  .product-showcase,
  .creators-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .carousel-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    padding: 6rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease-out);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
    border-left: 1px solid var(--border-light);
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-actions {
    margin-top: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 6rem 1rem 2rem;
  }

  .stats-bar {
    flex-wrap: wrap;
    padding: 1rem 1.5rem;
    gap: 1rem;
    width: calc(100% - 2rem);
    left: 1rem;
    transform: none;
    bottom: 1.5rem;
  }

  .stat-item {
    flex: 1 1 40%;
  }

  .stat-divider {
    display: none;
  }

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

  .carousel-track {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .newsletter-box {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .newsletter-content {
    flex-direction: column;
  }

  .newsletter-form {
    width: 100%;
    min-width: auto;
    flex-direction: column;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .title-line {
    font-size: 2rem;
  }

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

  .product-title {
    font-size: 1.75rem;
  }

  .amount {
    font-size: 2.5rem;
  }

  .product-purchase {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }
}

/* ================================
   🎬 Scroll Animations (AOS)
================================ */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: var(--ease-out);
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }

[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }

[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ================================
   🖨️ Print
================================ */
@media print {
  #particles-canvas,
  .cursor-glow,
  .navbar,
  .carousel-btn,
  .carousel-dots,
  .newsletter,
  .footer {
    display: none !important;
  }
}
