/* ==========================================================================
   GIRLS PONS — BESPOKE WEB3 STUDIO DESIGN SYSTEM
   Custom Crafted for Robinhood Chain Genesis NFT Collection
   ========================================================================== */

:root {
  /* Obsidian Core Color Palette */
  --bg-primary: #07080c;
  --bg-secondary: #0c0e15;
  --bg-tertiary: #111520;
  --bg-card: rgba(14, 18, 28, 0.72);
  --bg-card-hover: rgba(20, 26, 42, 0.88);
  --bg-glass: rgba(12, 16, 26, 0.65);
  --bg-glass-heavy: rgba(8, 10, 18, 0.85);

  /* Electric Neon Accents */
  --neon-cyan: #00f0ff;
  --neon-cyan-glow: rgba(0, 240, 255, 0.4);
  --neon-pink: #ff2a85;
  --neon-pink-glow: rgba(255, 42, 133, 0.4);
  --neon-violet: #8b5cf6;
  --neon-violet-glow: rgba(139, 92, 246, 0.4);
  --neon-green: #a3e635;
  --neon-green-glow: rgba(163, 230, 53, 0.4);
  --neon-gold: #fbbf24;
  --neon-gold-glow: rgba(251, 191, 36, 0.35);

  /* Typography Colors */
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  /* Specular Borders & Glows */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.16);
  --border-glow: rgba(0, 240, 255, 0.35);
  --border-pink: rgba(255, 42, 133, 0.35);
  --border-green: rgba(163, 230, 53, 0.35);
  
  --shadow-cyber: 0 16px 40px -10px rgba(0, 0, 0, 0.8);
  --shadow-neon: 0 0 30px var(--neon-cyan-glow);

  /* Bespoke Studio Typography */
  --font-cyber: 'Syne', sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Rarity Tier Tokens */
  --rarity-mythic: #ff2a85;
  --rarity-legendary: #fbbf24;
  --rarity-epic: #8b5cf6;
  --rarity-rare: #00f0ff;
  --rarity-uncommon: #a3e635;
  --rarity-common: #94a3b8;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 7px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 4px;
}

/* Ambient Radial Mesh Lights */
.ambient-glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
  transform: translateZ(0);
}

.orb-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--neon-cyan) 0%, rgba(0, 240, 255, 0) 70%);
  top: -120px;
  left: -120px;
  animation: float-orb-1 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--neon-pink) 0%, rgba(255, 42, 133, 0) 70%);
  top: 35%;
  right: -180px;
  animation: float-orb-2 22s ease-in-out infinite alternate;
}

.orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--neon-violet) 0%, rgba(139, 92, 246, 0) 70%);
  bottom: 10%;
  left: 10%;
  animation: float-orb-1 20s ease-in-out infinite alternate;
}

@keyframes float-orb-1 {
  0% { transform: translateY(0px) translateX(0px) scale(1); }
  50% { transform: translateY(60px) translateX(40px) scale(1.08); }
  100% { transform: translateY(-30px) translateX(-40px) scale(0.95); }
}

@keyframes float-orb-2 {
  0% { transform: translateY(0px) translateX(0px) scale(1); }
  50% { transform: translateY(-70px) translateX(-50px) scale(1.1); }
  100% { transform: translateY(40px) translateX(30px) scale(0.92); }
}

/* Dynamic Animated Lightning Canvas & Grid */
#lightning-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

.cyber-grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(circle at 50% 50%, black 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 60%, transparent 100%);
}

.content-wrapper {
  position: relative;
  z-index: 1;
}

/* Global Container */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Typography Utilities */
.font-cyber { font-family: var(--font-cyber); }
.font-heading { font-family: var(--font-heading); }
.font-mono { font-family: var(--font-mono); }

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-cyan) 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.25));
}

.pink-gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, var(--neon-pink) 60%, var(--neon-violet) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 42, 133, 0.25));
}

/* Section Header Standard */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-subtitle {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-cyber);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 8, 12, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all 0.3s ease;
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text-main);
  transition: transform 0.2s ease;
}

.nav-brand:hover {
  transform: scale(1.02);
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1.5px solid var(--border-glow);
  box-shadow: 0 0 16px var(--neon-cyan-glow);
  transition: all 0.3s ease;
}

.nav-brand:hover .brand-logo-img {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 24px var(--neon-cyan-glow);
}

.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-cyber);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #ffffff;
  line-height: 1.1;
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  position: relative;
  padding: 6px 0;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Network Status Pill */
.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(163, 230, 53, 0.08);
  border: 1px solid rgba(163, 230, 53, 0.3);
  border-radius: 24px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--neon-green);
  transition: all 0.25s ease;
}

.network-badge:hover {
  background: rgba(163, 230, 53, 0.15);
  border-color: var(--neon-green);
  box-shadow: 0 0 16px var(--neon-green-glow);
}

.network-ping {
  width: 7px;
  height: 7px;
  background-color: var(--neon-green);
  border-radius: 50%;
  position: relative;
}

.network-ping::after {
  content: '';
  position: absolute;
  top: -3.5px;
  left: -3.5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--neon-green);
  animation: ping-pulse 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

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

.icon-btn {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.icon-btn:hover {
  border-color: var(--border-medium);
  color: #ffffff;
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.x-social-btn {
  color: #f8fafc;
}

.x-social-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
}

/* ==========================================================================
   BUTTONS SYSTEM
   ========================================================================== */
.cyber-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #00f0ff 0%, #0088ff 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  color: #030712;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
  overflow: hidden;
}

.cyber-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
  border-color: #ffffff;
}

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

.cyber-btn.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.cyber-btn-pink {
  background: linear-gradient(135deg, #ff2a85 0%, #9d4edd 100%);
  color: #ffffff;
  box-shadow: 0 0 24px var(--neon-pink-glow);
}

.cyber-btn-pink:hover {
  box-shadow: 0 0 36px rgba(255, 42, 133, 0.65);
}

.cyber-btn-outline {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-medium);
  color: #ffffff;
  box-shadow: none;
}

.cyber-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  box-shadow: 0 0 20px var(--neon-cyan-glow);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  padding: 70px 0 90px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-badge-container {
  margin-bottom: 20px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 1px;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  background-color: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
}

.hero-title {
  font-family: var(--font-cyber);
  font-size: 4.4rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 34px;
  max-width: 580px;
}

.hero-desc strong {
  color: #ffffff;
  font-weight: 600;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.quick-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}

.quick-stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  font-family: var(--font-cyber);
  font-size: 1.25rem;
  font-weight: 800;
  color: #ffffff;
}

.highlight-cyan { color: var(--neon-cyan); }
.highlight-pink { color: var(--neon-pink); }
.highlight-green { color: var(--neon-green); }

/* 3D Holographic Parallax Card Showcase */
.holo-showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  perspective: 1000px;
}

.holo-card {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow-cyber), 0 0 35px rgba(0, 240, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  transform-style: preserve-3d;
}

.holo-card:hover {
  border-color: var(--border-glow);
  box-shadow: var(--shadow-cyber), 0 0 50px rgba(0, 240, 255, 0.35);
}

.holo-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #030408;
}

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

.holo-card:hover .holo-img {
  transform: scale(1.04);
}

.holo-scan-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0.6;
  animation: scan-vertical 3.5s linear infinite;
  pointer-events: none;
}

@keyframes scan-vertical {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { top: 100%; opacity: 0; }
}

.holo-badge-tier {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 14px;
  background: rgba(7, 8, 12, 0.85);
  border: 1px solid var(--neon-pink);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--neon-pink);
  backdrop-filter: blur(8px);
}

.holo-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 4px 6px;
}

.holo-name {
  font-family: var(--font-cyber);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
}

.holo-archetype-text {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.holo-voltage {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  padding: 6px 12px;
  border-radius: 10px;
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.holo-carousel-nav {
  display: flex;
  gap: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-medium);
  cursor: pointer;
  transition: all 0.25s ease;
}

.carousel-dot.active {
  width: 24px;
  border-radius: 10px;
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* ==========================================================================
   MINTING TERMINAL SECTION
   ========================================================================== */
.mint-section {
  padding: 90px 0;
  position: relative;
}

.mint-card-wrapper {
  max-width: 680px;
  margin: 0 auto;
}

.mint-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow-cyber), 0 0 50px rgba(0, 240, 255, 0.1);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  position: relative;
}

.mint-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5), transparent);
}

.mint-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.5px;
}

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

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

/* Wallet Balance Banner */
.wallet-balance-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 14px 18px;
  margin-bottom: 24px;
  gap: 12px;
  flex-wrap: wrap;
}

.bal-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.bal-label {
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.78rem;
}

.bal-val {
  font-family: var(--font-mono);
  font-weight: 700;
  color: #ffffff;
}

.token-explorer-link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--neon-cyan);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.token-explorer-link:hover {
  text-decoration: underline;
  opacity: 0.85;
}

/* Mint Progress Track */
.mint-progress-container {
  margin-bottom: 28px;
}

.progress-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.progress-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 10px;
  box-shadow: 0 0 14px var(--neon-cyan);
  transition: width 0.6s ease;
}

/* Controls Grid */
.mint-controls-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  margin-bottom: 28px;
}

.control-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.control-title {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.qty-selector {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.qty-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.qty-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.qty-btn.max-btn {
  width: auto;
  padding: 0 14px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
}

.qty-display {
  flex: 1;
  text-align: center;
  font-family: var(--font-cyber);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
}

.quick-qty-row {
  display: flex;
  gap: 6px;
}

.quick-qty-chip {
  flex: 1;
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.quick-qty-chip:hover {
  border-color: var(--border-medium);
  color: #ffffff;
}

.quick-qty-chip.active {
  background: rgba(0, 240, 255, 0.12);
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  font-weight: 700;
}

.price-display-val {
  font-family: var(--font-cyber);
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--neon-cyan);
  line-height: 1.2;
}

.price-display-sub {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-top: 4px;
}

/* Mint Action Button Container */
.mint-action-wrapper {
  margin-bottom: 18px;
}

.mint-action-wrapper .cyber-btn {
  width: 100%;
}

/* Uniswap Buy Button */
.uniswap-buy-wrapper {
  margin-bottom: 24px;
}

.uniswap-buy-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(163, 230, 53, 0.06);
  border: 1.5px solid rgba(163, 230, 53, 0.35);
  border-radius: 14px;
  color: var(--neon-green);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.uniswap-buy-btn:hover {
  background: rgba(163, 230, 53, 0.14);
  border-color: var(--neon-green);
  box-shadow: 0 0 24px var(--neon-green-glow);
  transform: translateY(-2px);
}

/* Security Row */
.mint-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 24px;
}

.info-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.info-tag-dot {
  width: 5px;
  height: 5px;
  background: var(--neon-cyan);
  border-radius: 50%;
}

/* 1-Click Copy Contract HUD */
.contract-hud-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contract-hud-card {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hud-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.hud-address {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  margin-top: 2px;
}

.copy-mini-btn {
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-medium);
  border-radius: 8px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.copy-mini-btn:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.1);
}

/* ==========================================================================
   FEATURED 8 AVATARS SHOWCASE
   ========================================================================== */
.gallery-section {
  padding: 90px 0;
  position: relative;
}

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

.nft-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  flex-direction: column;
}

.nft-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glow);
  box-shadow: 0 16px 36px -10px rgba(0, 0, 0, 0.9), 0 0 30px rgba(0, 240, 255, 0.25);
  background: var(--bg-card-hover);
}

.nft-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 14px;
  overflow: hidden;
  background: #040508;
  margin-bottom: 14px;
}

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

.nft-card:hover .nft-thumb {
  transform: scale(1.06);
}

.nft-card-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.badge-Mythic { background: rgba(255, 42, 133, 0.85); color: #ffffff; }
.badge-Legendary { background: rgba(251, 191, 36, 0.85); color: #000000; }
.badge-Epic { background: rgba(139, 92, 246, 0.85); color: #ffffff; }
.badge-Rare { background: rgba(0, 240, 255, 0.85); color: #000000; }
.badge-Uncommon { background: rgba(163, 230, 53, 0.85); color: #000000; }
.badge-Common { background: rgba(148, 163, 184, 0.85); color: #000000; }

.nft-card-title {
  font-family: var(--font-cyber);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.nft-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

.nft-voltage {
  color: var(--neon-cyan);
  font-weight: 600;
}

/* ==========================================================================
   LORE & ROADMAP
   ========================================================================== */
.lore-section, .roadmap-section {
  padding: 90px 0;
  position: relative;
}

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

.lore-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 22px;
  padding: 32px;
  transition: all 0.3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.lore-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), 0 0 24px rgba(0, 240, 255, 0.15);
}

.lore-icon-wrap {
  width: 50px;
  height: 50px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  margin-bottom: 20px;
}

.lore-title {
  font-family: var(--font-cyber);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.lore-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.lore-text code {
  font-family: var(--font-mono);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
}

/* Timeline */
.timeline {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding-left: 36px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-cyan), var(--neon-pink), var(--neon-violet));
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-dot {
  position: absolute;
  left: -36px;
  top: 24px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 3px solid var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 26px 30px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.3s ease;
}

.timeline-card:hover {
  border-color: var(--border-medium);
  transform: translateX(4px);
}

.timeline-phase {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-cyan);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phase-status-live {
  background: rgba(0, 240, 255, 0.15);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
}

.timeline-title {
  font-family: var(--font-cyber);
  font-size: 1.35rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.timeline-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   SPECS & FAQ
   ========================================================================== */
.specs-section {
  padding: 90px 0;
  position: relative;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}

.specs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}

.spec-k {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-dim);
}

.spec-v {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.faq-item {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.open {
  border-color: var(--border-glow);
}

.faq-question {
  width: 100%;
  padding: 16px 20px;
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-chevron {
  transition: transform 0.3s ease;
  color: var(--neon-cyan);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  padding: 50px 0 40px;
  border-top: 1px solid var(--border-subtle);
  background: rgba(7, 8, 12, 0.9);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 12px var(--neon-cyan-glow);
}

.footer-brand-title {
  font-family: var(--font-cyber);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.footer-copyright {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin-top: 2px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
}

/* ==========================================================================
   MODALS
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 8, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-backdrop.active {
  display: flex;
}

.cyber-modal {
  background: #0d101a;
  border: 1px solid var(--border-medium);
  border-radius: 24px;
  padding: 32px;
  width: 100%;
  max-width: 780px;
  box-shadow: var(--shadow-cyber), 0 0 60px rgba(0, 240, 255, 0.2);
  position: relative;
  animation: modal-pop 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modal-pop {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.modal-status-icon-wrap {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon-cyan);
  box-shadow: 0 0 24px var(--neon-cyan-glow);
}

.trait-modal-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.modal-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: #040508;
  border: 1px solid var(--border-medium);
}

.modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.modal-voltage-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neon-cyan);
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 4px 12px;
  border-radius: 8px;
  margin-bottom: 14px;
}

.modal-nft-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.modal-traits-title {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.trait-cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.trait-pill {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trait-type {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.trait-value {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--neon-cyan);
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-desc {
    margin: 0 auto 34px;
  }
  .hero-cta-group {
    justify-content: center;
  }
  .quick-stats-row {
    max-width: 600px;
    margin: 0 auto;
  }
  .holo-showcase-container {
    max-width: 440px;
    margin: 0 auto;
  }
  .nft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .lore-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hero-title {
    font-size: 3.2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .mint-controls-grid {
    grid-template-columns: 1fr;
  }
  .contract-hud-row {
    grid-template-columns: 1fr;
  }
  .trait-modal-grid {
    grid-template-columns: 1fr;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}
