/* ===================================
   BadutCompany.LTD — Cyberpunk CSS
   =================================== */

/* ===================================
   DISCORD LIVE REVIEWS
   =================================== */

.discord-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: #5865f2;
  border: 1px solid rgba(88, 101, 242, 0.3);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-top: 1rem;
  background: rgba(88, 101, 242, 0.08);
}

.discord-live-badge .badge-dot {
  background: #5865f2;
  box-shadow: 0 0 6px #5865f2;
}

/* Loading spinner */
.reviews-loading {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(0, 245, 255, 0.15);
  border-top-color: var(--neon-cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1rem;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

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

/* Fallback state */
.reviews-fallback {
  text-align: center;
  padding: 4rem 2rem;
  max-width: 500px;
  margin: 0 auto;
}

.fallback-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: grayscale(0.5);
}

.reviews-fallback h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
}

.reviews-fallback p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.reviews-fallback small { font-size: 0.8rem; opacity: 0.7; }

/* Pagination */
.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.page-btn {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  background: transparent;
  border: 1px solid var(--border);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
}

.page-btn:hover:not(:disabled) {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.15);
}

.page-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.page-info {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

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

:root {
  --neon-cyan: #00f5ff;
  --neon-pink: #ff00ff;
  --neon-purple: #7000ff;
  --neon-rose: #ff006e;
  --bg-dark: #05050f;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(0, 245, 255, 0.05);
  --border: rgba(0, 245, 255, 0.12);
  --border-hover: rgba(0, 245, 255, 0.4);
  --text-primary: #e8eaff;
  --text-secondary: rgba(232, 234, 255, 0.6);
  --text-muted: rgba(232, 234, 255, 0.35);
  --font-display: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

html { scroll-behavior: smooth; }

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

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--neon-purple); border-radius: 3px; }

/* ===================================
   CYBER BACKGROUND
   =================================== */
.cyber-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 245, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.08) 2px,
    rgba(0, 0, 0, 0.08) 4px
  );
  pointer-events: none;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(5, 5, 15, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.08);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  text-decoration: none;
  color: var(--text-primary);
}

.logo-bracket { color: var(--neon-cyan); opacity: 0.7; }
.logo-accent { color: var(--neon-cyan); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--neon-cyan);
  transition: width 0.25s ease;
  box-shadow: 0 0 8px var(--neon-cyan);
}

.nav-link:hover { color: var(--neon-cyan); }
.nav-link:hover::after { width: 60%; }

.nav-discord-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: var(--neon-cyan);
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.25s ease;
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.nav-discord-btn:hover {
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid var(--border);
  background: rgba(5, 5, 15, 0.97);
  backdrop-filter: blur(20px);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 0.85rem 1rem;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--neon-cyan); }

.mobile-discord-btn {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: var(--neon-cyan);
  text-decoration: none;
  padding: 0.85rem 1rem;
  margin: 0.5rem 1rem 0;
  border-radius: 4px;
  text-align: center;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  background: rgba(0, 245, 255, 0.05);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.6s ease both;
}

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

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.7s ease 0.1s both;
}

/* Glitch Effect */
.glitch {
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--neon-cyan);
  animation: glitch-1 3s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
  transform: translate(-2px, 0);
}

.glitch::after {
  color: var(--neon-pink);
  animation: glitch-2 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
  transform: translate(2px, 0);
}

@keyframes glitch-1 {
  0%, 92%, 100% { transform: translate(-2px, 0); opacity: 0; }
  93% { transform: translate(-4px, 0); opacity: 0.8; clip-path: polygon(0 20%, 100% 20%, 100% 50%, 0 50%); }
  96% { transform: translate(2px, -2px); opacity: 0.6; clip-path: polygon(0 10%, 100% 10%, 100% 40%, 0 40%); }
}

@keyframes glitch-2 {
  0%, 94%, 100% { transform: translate(2px, 0); opacity: 0; }
  95% { transform: translate(4px, 2px); opacity: 0.8; clip-path: polygon(0 60%, 100% 60%, 100% 80%, 0 80%); }
  98% { transform: translate(-2px, 0); opacity: 0.6; clip-path: polygon(0 50%, 100% 50%, 100% 90%, 0 90%); }
}

.hero-accent {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-purple), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.4));
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeInUp 0.7s ease 0.2s both;
}

.text-neon {
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.7s ease 0.3s both;
}

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

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.4s both;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--neon-cyan), #00a8cc);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #fff, var(--neon-cyan));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { box-shadow: 0 0 40px rgba(0, 245, 255, 0.6); transform: translateY(-2px); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }

.btn-primary.large {
  font-size: 0.85rem;
  padding: 1.1rem 2.5rem;
  gap: 0.75rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  background: transparent;
  border: 1px solid var(--border-hover);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(0, 245, 255, 0.08);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.15);
  transform: translateY(-2px);
}

/* Hero Decoration */
.hero-decoration {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  opacity: 0.4;
  pointer-events: none;
}

.cyber-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid var(--neon-cyan);
}

.cyber-circle.outer {
  width: 300px;
  height: 300px;
  border-color: rgba(0, 245, 255, 0.2);
  animation: rotate 20s linear infinite;
  border-style: dashed;
}

.cyber-circle.middle {
  width: 200px;
  height: 200px;
  border-color: rgba(112, 0, 255, 0.4);
  animation: rotate 12s linear infinite reverse;
}

.cyber-circle.inner {
  width: 100px;
  height: 100px;
  border-color: rgba(255, 0, 255, 0.5);
  animation: rotate 6s linear infinite;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.cyber-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
}

.cyber-cross::before, .cyber-cross::after {
  content: '';
  position: absolute;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

.cyber-cross::before { width: 2px; height: 20px; top: 0; left: 50%; transform: translateX(-50%); }
.cyber-cross::after { width: 20px; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }

@keyframes rotate { from { transform: translate(-50%, -50%) rotate(0deg); } to { transform: translate(-50%, -50%) rotate(360deg); } }

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  animation: fadeIn 1s ease 0.8s both;
}

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

@keyframes scrollAnim {
  0%, 100% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 0.3; }
}

/* ===================================
   FEATURES STRIP
   =================================== */
.features-strip {
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, rgba(112, 0, 255, 0.15), rgba(0, 245, 255, 0.1), rgba(112, 0, 255, 0.15));
  border-top: 1px solid rgba(0, 245, 255, 0.1);
  border-bottom: 1px solid rgba(0, 245, 255, 0.1);
  overflow: hidden;
  padding: 1rem 0;
  width: 100%;
}

.strip-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: stripScroll 55s linear infinite;
  /* Start fully off-screen right */
  transform: translateX(100vw);
}

@keyframes stripScroll {
  from { transform: translateX(100vw); }
  to   { transform: translateX(-100%); }
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  white-space: nowrap;
}

.strip-icon { font-size: 0.8rem; }
.strip-dot { color: var(--neon-purple); opacity: 0.5; font-size: 0.5rem; }

/* ===================================
   SECTION COMMONS
   =================================== */
section {
  position: relative;
  z-index: 1;
  padding: 100px 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--neon-cyan);
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ===================================
   PRODUCTS SECTION
   =================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Mobile: horizontal swipe carousel ── */
@media (max-width: 768px) {
  .products-section {
    padding-left: 0;
    padding-right: 0;
  }

  .products-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding: 0.5rem 1.5rem 1.5rem;
    max-width: 100%;
    scrollbar-width: none;
  }

  .products-grid::-webkit-scrollbar { display: none; }

  .product-card {
    flex: 0 0 82vw;
    max-width: 340px;
    scroll-snap-align: start;
  }

  .swipe-hint {
    display: flex !important;
  }
}

.product-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.35s ease;
  overflow: hidden;
  cursor: default;
}

.product-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.1), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.product-card.featured {
  border-color: rgba(112, 0, 255, 0.4);
  background: rgba(112, 0, 255, 0.05);
}

.product-card.featured:hover {
  border-color: var(--neon-purple);
  box-shadow: 0 0 40px rgba(112, 0, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.card-glow {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.15), transparent 70%);
  pointer-events: none;
  transition: opacity 0.35s;
}

.featured-glow {
  background: radial-gradient(circle, rgba(112, 0, 255, 0.25), transparent 70%);
}

.product-card:hover .card-glow { opacity: 1.5; }

.card-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: var(--neon-cyan);
  padding: 0.25rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}

.card-badge.hot { background: linear-gradient(135deg, var(--neon-pink), var(--neon-rose)); color: #fff; }
.card-badge.new { background: linear-gradient(135deg, #00ff88, #00cc66); }
.card-badge.new-light { background: linear-gradient(135deg, #00e5ff, #00ff88); color: #021a14; }
.card-badge.elite { background: linear-gradient(135deg, var(--neon-purple), #9400ff); color: #fff; }

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.06);
  transition: all 0.3s;
}

.product-card.featured .card-icon {
  border-color: rgba(112, 0, 255, 0.3);
  color: var(--neon-purple);
  background: rgba(112, 0, 255, 0.08);
}

.product-card:hover .card-icon {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.card-features {
  list-style: none;
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.card-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-check {
  color: var(--neon-cyan);
  font-size: 0.75rem;
  text-shadow: 0 0 8px rgba(0, 245, 255, 0.5);
}

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

.card-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price-currency {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.product-card.featured .price-amount { color: var(--neon-purple); text-shadow: 0 0 15px rgba(112, 0, 255, 0.4); }

.card-btn {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--bg-dark);
  background: var(--neon-cyan);
  text-decoration: none;
  padding: 0.55rem 1.1rem;
  border-radius: 4px;
  white-space: nowrap;
  transition: all 0.25s;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.25);
}

.card-btn:hover {
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.5);
  transform: scale(1.03);
}

.product-card.featured .card-btn {
  background: var(--neon-purple);
  box-shadow: 0 0 15px rgba(112, 0, 255, 0.3);
}

.product-card.featured .card-btn:hover {
  background: #9400ff;
  box-shadow: 0 0 25px rgba(112, 0, 255, 0.6);
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
  background: linear-gradient(180deg, transparent, rgba(5, 0, 20, 0.6), transparent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.35s ease;
  overflow: hidden;
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 0 35px rgba(0, 245, 255, 0.1), 0 20px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card.popular {
  border-color: rgba(0, 245, 255, 0.35);
  background: rgba(0, 245, 255, 0.04);
  transform: scale(1.03);
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 0 50px rgba(0, 245, 255, 0.2), 0 20px 60px rgba(0, 0, 0, 0.4);
}

.pricing-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.08), transparent 70%);
  pointer-events: none;
}

.popular-glow {
  background: radial-gradient(circle, rgba(0, 245, 255, 0.18), transparent 70%);
}

.popular-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--bg-dark);
  background: linear-gradient(135deg, var(--neon-cyan), #00a8cc);
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  margin-bottom: 1rem;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.plan-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.plan-currency {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--text-secondary);
}

.plan-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.pricing-card.popular .plan-amount {
  color: var(--neon-cyan);
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.4);
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}

.plan-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pf-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
}

.pf-icon.yes {
  background: rgba(0, 245, 255, 0.1);
  color: var(--neon-cyan);
  border: 1px solid rgba(0, 245, 255, 0.3);
  text-shadow: 0 0 6px rgba(0, 245, 255, 0.5);
}

.pf-icon.no {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-btn {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  padding: 0.85rem;
  border-radius: 6px;
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  transition: all 0.3s;
}

.plan-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 245, 255, 0.06);
  box-shadow: 0 0 20px rgba(0, 245, 255, 0.12);
}

.popular-btn {
  background: linear-gradient(135deg, var(--neon-cyan), #00a8cc);
  border-color: transparent;
  color: var(--bg-dark) !important;
  box-shadow: 0 0 25px rgba(0, 245, 255, 0.3);
}

.popular-btn:hover {
  background: linear-gradient(135deg, #fff, var(--neon-cyan));
  border-color: transparent !important;
  color: var(--bg-dark) !important;
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.5) !important;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonial-card:hover {
  border-color: rgba(112, 0, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 0 30px rgba(112, 0, 255, 0.08), 0 15px 40px rgba(0, 0, 0, 0.3);
}

.testi-glow {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.12), transparent 70%);
  pointer-events: none;
}

.testi-stars {
  color: #ffd700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4);
}

.testi-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.testi-name {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.testi-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.cta-bg-effects {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb-1 {
  position: absolute;
  top: 50%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(112, 0, 255, 0.2), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 6s ease-in-out infinite;
}

.cta-orb-2 {
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(50%, -50%);
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 245, 255, 0.15), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: orbFloat 8s ease-in-out infinite reverse;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -60%) scale(1.1); }
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 0.03em;
  margin: 1rem 0 1.5rem;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem 0;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 300px;
}

.footer-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--neon-cyan);
  text-decoration: none;
  border: 1px solid rgba(0, 245, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.25s;
}

.footer-discord:hover {
  background: rgba(0, 245, 255, 0.08);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 245, 255, 0.2);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
}

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #00ff88;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00ff88;
  box-shadow: 0 0 8px #00ff88;
  animation: pulse 2s ease-in-out infinite;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll-triggered reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-discord-btn { display: none; }
  .hamburger { display: flex; }

  .hero-decoration { display: none; }

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

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 600px) {
  section { padding: 70px 1.25rem; }
  .navbar { padding: 0 1.25rem; }

  .hero-stats { gap: 1.25rem; }

  .footer-container { grid-template-columns: 1fr; }
  .footer-bottom-content { flex-direction: column; gap: 0.5rem; text-align: center; }

  .pricing-card.popular { transform: scale(1); }
  .pricing-card.popular:hover { transform: translateY(-4px); }
}

/* ===================================
   GALLERY SECTION
   =================================== */
.gallery-section { padding: 100px 2rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

/* ── Mobile: gallery horizontal swipe carousel ── */
@media (max-width: 768px) {
  .gallery-section {
    padding-left: 0;
    padding-right: 0;
  }

  .gallery-grid {
    display: flex !important;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.75rem;
    padding: 0.5rem 1.25rem 1.25rem;
    max-width: 100%;
    scrollbar-width: none;
  }

  .gallery-grid::-webkit-scrollbar { display: none; }

  .gallery-item {
    flex: 0 0 78vw;
    max-width: 320px;
    scroll-snap-align: start;
    aspect-ratio: 16/10;
  }
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg-card);
  aspect-ratio: 16/10;
  transition: all 0.3s ease;
}

.gallery-item:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 245, 255, 0.15), 0 10px 40px rgba(0,0,0,0.4);
  z-index: 2;
}

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

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

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

.gallery-item-author {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.08em;
}

.gallery-item-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 245, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  font-size: 1.2rem;
  opacity: 0;
  transition: all 0.3s;
  backdrop-filter: blur(4px);
}

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

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  max-width: 95vw;
  max-height: 95vh;
}

.lightbox-img {
  max-width: min(900px, 85vw);
  max-height: 80vh;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: 0 0 60px rgba(0, 245, 255, 0.15);
  object-fit: contain;
  transition: opacity 0.2s;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.lightbox-close:hover { background: rgba(255,0,0,0.2); color: #fff; border-color: red; }

.lightbox-prev, .lightbox-next {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  flex-shrink: 0;
}

.lightbox-prev:hover, .lightbox-next:hover {
  background: rgba(0, 245, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.lightbox-prev:disabled, .lightbox-next:disabled { opacity: 0.3; cursor: not-allowed; }

.lightbox-caption {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
