@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  /* ── Typography ─────────────────────────────
     Display  → Clash Display   (headings H1/H2)
     UI/Label → Inter           (eyebrows, buttons, nav)
     Body     → Inter           (paragraphs, body text)
     Fallback → Outfit → sans-serif
  ────────────────────────────────────────────── */
  --font-display: 'Clash Display', 'Outfit', sans-serif;
  --font-ui: 'Inter', 'General Sans', 'DM Sans', sans-serif;
  --font-body: 'Inter', 'General Sans', 'DM Sans', sans-serif;

  /* Colors */
  --bg-dark: #060913;
  --text-main: #f5f5f7;
  --text-muted: rgba(245, 245, 247, 0.6);
  --accent-purple: #b388ff;
  --accent-pink: #ff4081;
  --accent-blue: #2081e2;
  --card-bg: rgba(255, 255, 255, 0.03);
  --card-border: rgba(255, 255, 255, 0.08);

  /* Spacing (8px system) */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.5);

  /* Transitions & Motion */
  --motion-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --motion-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --motion-hover: 220ms ease-in-out;
  --motion-entrance: 750ms cubic-bezier(0.23, 1, 0.32, 1);
  /* premium ease-out */

  --transition-fast: var(--motion-fast);
  --transition-base: var(--motion-base);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideUpReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  background-color: var(--bg-dark);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  animation: fadeIn 0.4s ease-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

p {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.7;
  color: #d1d5db;
}

/* Decorative ambient gradients — position:fixed on a pseudo-element
   avoids background-attachment:fixed which causes scroll repaints */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(179, 136, 255, 0.04), transparent 40%),
    radial-gradient(circle at 85% 30%, rgba(255, 64, 129, 0.03), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(32, 129, 226, 0.02), transparent 40%);
}

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

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

button {
  font-family: inherit;
}

input,
select {
  font-family: inherit;
}



/* ===== TYPOGRAPHY ===== */

/* Eyebrow / small uppercase labels */
.section-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  /* 12px */
  font-weight: 500;
  letter-spacing: 0.15em;
  /* ~2px at 12px */
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: var(--space-2);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: var(--space-2);
  letter-spacing: -0.03em;
}

.accent-yellow {
  color: var(--accent-purple);
}

/* Body paragraphs */
.section-body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  /* 16–18px */
  font-weight: 400;
  line-height: 1.7;
  color: #eaeaea;
  max-width: 680px;
  margin-bottom: var(--space-4);
  letter-spacing: 0.01em;
}


.light-body {
  color: rgba(245, 245, 247, 0.65);
}

.center-text {
  text-align: center;
  margin: 0 auto 1.2rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-purple);
  color: #060913;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  border: none;
  transition: var(--transition-base);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: var(--shadow-md);
}

.btn-primary.large {
  font-size: 1rem;
  padding: 1rem 2.2rem;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-main);
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  border: 1px solid var(--card-border);
  transition: var(--transition-base);
  backdrop-filter: blur(8px);
  cursor: pointer;
}

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

.btn-ghost:hover {
  border-color: var(--accent-purple);
  color: var(--accent-purple);
  transform: translateY(-1px);
  background: rgba(179, 136, 255, 0.05);
  box-shadow: var(--shadow-md);
  filter: brightness(1.1);
}


/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  transform: none;
  width: 100%;
  max-width: none;
  z-index: 1000;
  padding: 1rem 2.5rem;
  background: transparent;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition: all 0.3s ease;
}

.navbar.scrolled,
.navbar.menu-open {
  background: rgba(6, 9, 19, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
}


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


.nav-links-pilled {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 100px;
  height: 48px;
  display: flex;
  align-items: center;
  padding: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.nav-link {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  transition: var(--motion-hover);
  position: relative;
  z-index: 1;
}

.nav-link:hover {
  color: #b388ff;
  opacity: 1;
}

.nav-link.active {
  color: #f5f5f7;
  background: rgba(179, 136, 255, 0.15);
  box-shadow: 0 0 15px rgba(179, 136, 255, 0.15);
  border-bottom: 2px solid #b388ff;
  border-radius: 100px;
}

/* Inactive Nav Links with Tooltip */
.nav-link-disabled {
  opacity: 0.6;
  cursor: not-allowed !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.nav-link-disabled::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(15, 15, 20, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #b388ff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.45rem 0.8rem;
  border-radius: 8px;
  border: 1px solid rgba(179, 136, 255, 0.25);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  pointer-events: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(179, 136, 255, 0.1);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 1100;
}

.nav-link-disabled:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-link-disabled:hover {
  opacity: 0.8 !important;
  color: #f5f5f7 !important;
}

@keyframes logoFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textGradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* NAV LOGO with icon */
.nav-logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo-icon {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  letter-spacing: -0.02em;
  color: #b388ff;
  text-transform: uppercase;
  display: inline-block;
  opacity: 1;
  animation: slideUpReveal var(--motion-entrance) var(--motion-entrance) both;
  transition: var(--motion-hover);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
}

.nav-logo:hover {
  color: transparent !important;
  background-image: linear-gradient(90deg,
      #b388ff 0%,
      #ff88cc 50%,
      #9d50bb 100%);
  animation: textGradientShift 2.5s ease infinite alternate;
}

/* NAV SOCIAL ICON BUTTONS */
.nav-social-icons {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: 0.75rem;
}

.nav-social-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: 50%;
  color: var(--text-main);
  transition: var(--transition-base);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-social-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.nav-social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
  transform: translateY(-2px);
}

/* OpenSea brand hover tint */
.nav-social-btn.opensea-btn:hover {
  background: rgba(32, 129, 226, 0.15);
  border-color: rgba(32, 129, 226, 0.3);
  color: #2081E2;
}

/* X/Twitter hover tint */
.nav-social-btn.twitter-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Discord brand hover tint */
.nav-social-btn.discord-btn:hover {
  background: rgba(88, 101, 242, 0.15);
  border-color: rgba(88, 101, 242, 0.3);
  color: #5865F2;
}

/* MOBILE MENU LINKS */
.mobile-link {
  font-family: var(--font-ui);
  font-size: 1.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-link:hover {
  color: #fff;
}

.mobile-link.active {
  color: #b388ff;
}

.mobile-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, #b388ff, #ff4081);
  color: #fff !important;
  font-size: 1.2rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  text-align: center;
}

/* MOBILE TOGGLE */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #b388ff;
  transition: all 0.3s ease;
}

/* MOBILE TOGGLE */
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFE048;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .nav-mobile-toggle {
    display: flex;
  }

  .nav-right-group {
    display: none;
    /* Hide desktop group on mobile */
  }
}

.btn-connect {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #b388ff;
  color: #0f0f14;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.55rem 1.2rem;
  border-radius: 100px;
  border: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
  flex-shrink: 0;
}

.btn-connect:hover {
  background: #fff176;
  transform: translateY(-1px);
}

.btn-connect.connected {
  background: #1c1c28;
  color: #b388ff;
  border: 1.5px solid #b388ff;
}

.btn-dot {
  width: 6px;
  height: 6px;
  background: #0f0f14;
  border-radius: 50%;
}

.btn-connect.connected .btn-dot {
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}

.btn-connect.full-width {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  margin-top: 0.5rem;
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.3rem;
}

.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: #f5f5f7;
  border-radius: 2px;
  display: block;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 0 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0.8rem;
}

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

.mobile-link {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.75);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-link:hover {
  color: #b388ff;
}

.mobile-link.active {
  color: #b388ff;
}

.mobile-cta {
  margin-top: 1rem;
  background: linear-gradient(135deg, #b388ff, #ff4081);
  color: #fff !important;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  text-align: center;
  border: none !important;
  font-weight: 700;
}

/* HERO PARTICLES */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  background: white;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.08;
  animation: particleFloat infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }

  20% {
    opacity: 0.08;
  }

  80% {
    opacity: 0.08;
  }

  100% {
    transform: translateY(-100px) translateX(20px);
    opacity: 0;
  }
}

.p1 {
  width: 4px;
  height: 4px;
  top: 20%;
  left: 20%;
  animation-duration: 8s;
}

.p2 {
  width: 3px;
  height: 3px;
  top: 40%;
  right: 25%;
  animation-duration: 12s;
}

.p3 {
  width: 5px;
  height: 5px;
  bottom: 30%;
  left: 35%;
  animation-duration: 10s;
}

.p4 {
  width: 2px;
  height: 2px;
  top: 60%;
  left: 15%;
  animation-duration: 15s;
}

.p5 {
  width: 4px;
  height: 4px;
  bottom: 20%;
  right: 10%;
  animation-duration: 9s;
}


/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  background-image: url("images/home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.75) 100%);
}

@keyframes heroBgMove {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 10% 10%;
  }
}

.hero-bg-circles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.c1 {
  width: 600px;
  height: 600px;
  background: #b388ff;
  top: -200px;
  right: -100px;
  animation: float1 8s ease-in-out infinite;
}

.c2 {
  width: 400px;
  height: 400px;
  background: #a78bfa;
  bottom: 0;
  left: -100px;
  animation: float2 10s ease-in-out infinite;
}

.c3 {
  width: 300px;
  height: 300px;
  background: #34d399;
  top: 40%;
  left: 40%;
  animation: float3 12s ease-in-out infinite;
}

@keyframes float1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(30px, -30px) scale(1.05)
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-20px, 20px)
  }
}

@keyframes float3 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(20px, -20px)
  }
}

.hero-character-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  order: 2;
}

.hero-char-img {
  width: 100%;
  max-width: 500px;
  border-radius: 30px;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation:
    slideUpReveal var(--motion-entrance) both,
    hero-float-cinematic 7s ease-in-out infinite;
  transition: transform var(--motion-base), filter var(--motion-base);
}

.hero-char-img:hover {
  transform: translateY(-8px) scale(1.02);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

@keyframes hero-float-cinematic {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes hero-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

.hero-char-glow {
  position: absolute;
  inset: 5%;
  background: radial-gradient(circle, rgba(179, 136, 255, 0.25) 0%, transparent 70%);
  filter: blur(60px);
  z-index: -1;
  border-radius: 50%;
  animation: glow-breath 5s ease-in-out infinite alternate;
}

@keyframes glow-breath {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.floating-badge {
  position: absolute;
  background: rgba(20, 20, 20, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(179, 136, 255, 0.3);
  color: #f5f5f7;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.5rem 0.9rem;
  border-radius: 100px;
  white-space: nowrap;
}

.b1 {
  top: 15%;
  left: -5%;
  animation: badge-float 4s ease-in-out infinite;
}

.b2 {
  top: 50%;
  right: -8%;
  animation: badge-float 4s ease-in-out infinite 1s;
}

.b3 {
  bottom: 15%;
  left: -3%;
  animation: badge-float 4s ease-in-out infinite 2s;
}

@keyframes badge-float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 0 2rem;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b388ff;
  background: rgba(179, 136, 255, 0.1);
  border: 1px solid rgba(179, 136, 255, 0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  animation: slideUpReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f5f5f7;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  animation: slideUpReveal 0.8s var(--motion-entrance) both;
}

.hero-title-accent {
  background: linear-gradient(90deg, #b388ff, #ff88cc, #b388ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textGradientShift 4s linear infinite;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.01em;
  color: #eaeaea;
  max-width: 680px;
  margin: 0 auto 3rem;
  animation: slideUpReveal 0.8s 0.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: slideUpReveal 0.8s 0.3s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #b388ff;
}

.stat-label {
  font-family: var(--font-ui);
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
}

/* ===== SOCIAL CARDS ===== */
.social-section {
  background: var(--bg-dark);
  padding: 0 2rem;
}

.social-cards {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 4rem 0 6rem;
}

.social-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transition: var(--motion-hover);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  animation: slideUpReveal var(--motion-entrance) both;
}

.social-card:nth-child(1) {
  animation-delay: 0.1s;
}

.social-card:nth-child(2) {
  animation-delay: 0.2s;
}

.social-card:nth-child(3) {
  animation-delay: 0.3s;
}

.social-card:nth-child(4) {
  animation-delay: 0.4s;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-hover);
}

/* SOCIAL LOGO WRAPPING */
.social-logo-wrap {
  width: 90px;
  height: 90px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--motion-base);
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.social-logo-wrap svg {
  width: 44px;
  height: 44px;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.social-card:hover .social-logo-wrap svg {
  transform: scale(1.15) rotate(2deg);
}

.x-logo {
  background: linear-gradient(135deg, #14171a, #000);
}

.discord-logo {
  background: linear-gradient(135deg, #5865F2, #4752C4);
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.1);
}

.opensea-logo {
  background: linear-gradient(135deg, #2081E2, #1868B7);
  box-shadow: 0 0 20px rgba(32, 129, 226, 0.1);
}

.social-logo-wrap svg {
  color: #fff;
}

.social-card:hover .social-logo-wrap {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}


.social-icon {
  width: 22px;
  height: 22px;
  color: rgba(245, 245, 247, 0.7);
}

.social-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.65);
}

.social-card.coming::after {
  content: 'Coming Soon';
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(179, 136, 255, 0.15);
  color: #b388ff;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}

/* ===== ABOUT PREVIEW SECTION ===== */
.about-preview {
  padding: 10rem 2rem;
  background: #060913;
}

.about-prev-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-prev-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-collection-img {
  width: 100%;
  border-radius: 24px;
  transition: transform 0.4s;
}

.about-img-wrap:hover .about-collection-img {
  transform: scale(1.03);
}

.about-img-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom right, rgba(179, 136, 255, 0.15), transparent 60%);
  border-radius: 24px;
  pointer-events: none;
}

.trait-badges {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.trait-badge {
  position: absolute;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f5f5f7;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  animation: badge-float 4s ease-in-out infinite;
}

.tb1 {
  top: -12px;
  left: 10%;
  animation-delay: 0s;
}

.tb2 {
  top: 15%;
  right: -15px;
  animation-delay: 0.5s;
}

.tb3 {
  bottom: 30%;
  left: -15px;
  animation-delay: 1s;
}

.tb4 {
  bottom: 15%;
  right: 10%;
  animation-delay: 1.5s;
}

.tb5 {
  top: 45%;
  left: -18px;
  animation-delay: 2s;
}

.tb6 {
  bottom: -12px;
  left: 40%;
  animation-delay: 2.5s;
}

/* ===== EXPLORE PREVIEW ===== */
.explore-preview {
  padding: 8rem 2rem;
  background: var(--bg-dark);
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.explore-prev-header {
  max-width: 1400px;
  margin: 0 auto 5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding: 0 2rem;
}

.header-center {
  text-align: center;
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

.section-tag-subtle {
  color: var(--accent-purple) !important;
  font-weight: 600;
  letter-spacing: 0.12em;
  opacity: 1;
  font-size: 0.75rem;
  text-transform: uppercase;
  margin: 0;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  color: #f5f5f7;
  margin: 0;
  letter-spacing: -0.01em;
}

.nft-preview-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.nft-preview-card {
  background: rgba(15, 15, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
  width: 280px;
  flex-shrink: 0;
}

.nft-preview-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(179, 136, 255, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  background: rgba(25, 25, 30, 0.6);
}

/* INFINITE SLIDER */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 3rem 0;
  mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.slider-track {
  display: flex;
  gap: 2rem;
  width: max-content;
  will-change: transform;
}

@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 1rem));
  }

  /* -50% because we duplicate the track content */
}

/* Pause on hover for better UX */
.slider-container:hover .slider-track {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .nft-preview-card {
    width: 240px;
  }

  .slider-track {
    gap: 1.5rem;
  }

  @keyframes scrollSlider {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(calc(-50% - 0.75rem));
    }
  }
}

.nft-img-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  display: block;
  position: relative;
  background: #0a0a0f;
}

.nft-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.nft-preview-card:hover .nft-img-wrap img {
  transform: scale(1.1);
}

.nft-info {
  padding: 1.5rem;
  background: rgba(10, 10, 15, 0.5);
  text-align: center;
}

.nft-name {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  letter-spacing: 0.01em;
}

.nft-trait {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 10rem 2rem;
  background: #0d0d0d;
}

.faq-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.faq-list {
  margin-top: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  border-color: rgba(179, 136, 255, 0.2);
}

.faq-item.open {
  border-color: rgba(179, 136, 255, 0.3);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  color: #f5f5f7;
}

.faq-arrow {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(90deg);
  background: rgba(179, 136, 255, 0.15);
  color: #b388ff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 1.5rem;
}

.faq-item.open .faq-a {
  max-height: 200px;
  padding: 0 1.5rem 1.2rem;
}

.faq-a p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(245, 245, 247, 0.55);
}

/* ===== FOOTER ===== */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 8rem 2rem 4rem;
}

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

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}



.footer-tagline {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245, 245, 247, 0.5);
  margin-bottom: 0.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}

.footer-social-link:hover {
  background: rgba(179, 136, 255, 0.15);
  transform: translateY(-2px);
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  color: rgba(245, 245, 247, 0.6);
}

.footer-links-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links-group h4 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f5f5f7;
  margin-bottom: 0.25rem;
}

.footer-links-group a {
  font-size: 0.88rem;
  color: rgba(245, 245, 247, 0.45);
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: #b388ff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: rgba(245, 245, 247, 0.3);
}

/* ===== WALLET MODAL ===== */
.wallet-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.wallet-modal-overlay.open {
  display: flex;
}

.wallet-modal {
  background: #161616;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
  animation: modal-in 0.3s ease;
}

@keyframes modal-in {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }

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

.wallet-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.wallet-modal-header h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
}

.wallet-modal-close {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 8px;
  color: rgba(245, 245, 247, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.wallet-modal-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.wallet-modal-subtitle {
  font-size: 0.88rem;
  color: rgba(245, 245, 247, 0.5);
  margin-bottom: 1.5rem;
}

.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  width: 100%;
  text-align: left;
}

.wallet-option:hover {
  border-color: rgba(179, 136, 255, 0.3);
  background: rgba(179, 136, 255, 0.05);
  transform: translateX(4px);
}

.wallet-option img,
.wallet-logo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wallet-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  color: #f5f5f7;
}

.wallet-desc {
  display: block;
  font-size: 0.78rem;
  color: rgba(245, 245, 247, 0.45);
}

.wallet-arrow {
  margin-left: auto;
  color: rgba(245, 245, 247, 0.3);
  flex-shrink: 0;
}

/* ===== ABOUT PAGE ===== */
/* About Page - Storyteller Layout */
.page-about {
  background-color: #000;
  color: #fff;
}

.about-layout {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  gap: 8rem;
  padding-bottom: 10rem;
}

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

.story-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.story-header {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-tag {
  color: #b388ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  opacity: 0.8;
}

.story-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.story-title span {
  color: #b388ff;
}

.story-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  max-width: 650px;
}

.story-media {
  width: 100%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  background: #111;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.story-media video,
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .about-layout {
    gap: 5rem;
  }

  .story-title {
    font-size: 2.2rem;
  }

  .story-description {
    font-size: 1.1rem;
  }

  .story-media {
    border-radius: 20px;
  }
}

.rarity-badge,
.rank-badge {
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.rank-badge {
  background: rgba(255, 255, 255, 0.08);
  color: #f5f5f7;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.one-of-one-badge {
  background: linear-gradient(135deg, #b388ff, #FF9C48);
  color: #000;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 0 10px rgba(179, 136, 255, 0.3);
  animation: shimmer 2s infinite linear;
  background-size: 200% 100%;
}

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

  100% {
    background-position: 100% 0;
  }
}

/* NFT Detail Page Styles */
.nft-detail-layout {
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
}

.magnify-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: crosshair;
}

.magnify-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.1s ease-out;
}

.magnify-lens {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 4px solid rgba(179, 136, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  display: none;
  background-repeat: no-repeat;
  z-index: 10;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

@media (max-width: 968px) {
  .nft-detail-layout {
    grid-template-columns: 1fr;
    padding-top: 6rem;
  }
}

.nft-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nft-detail-info h1 {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #f5f5f7;
  margin-bottom: 0.5rem;
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.trait-card {
  background: var(--card-bg);
  padding: 1.25rem 1.75rem;
  border-radius: 16px;
  border: 1px solid var(--card-border);
  transition: var(--transition-base);
  display: flex;
  flex-direction: column;
}

.trait-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--accent-purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.trait-key {
  color: var(--text-muted);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.trait-val {
  color: var(--text-main);
  font-weight: 700;
  font-size: 1.1rem;
}

.magnifier-controls {
  animation: slideUpReveal var(--motion-entrance) var(--motion-base) both;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.control-group input[type="range"] {
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  cursor: pointer;
}






/* TEAM */
.team-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.team-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.team-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.team-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 2.2rem;
  transition: var(--motion-hover);
  backdrop-filter: blur(8px);
  animation: slideUpReveal var(--motion-entrance) both;
}

.team-card:nth-child(2) {
  animation-delay: 0.1s;
}

.team-card:nth-child(3) {
  animation-delay: 0.2s;
}

.team-card:nth-child(4) {
  animation-delay: 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.ta1 {
  background: linear-gradient(135deg, #b388ff, #f59e0b);
}

.ta2 {
  background: linear-gradient(135deg, #a78bfa, #7c3aed);
}

.ta3 {
  background: linear-gradient(135deg, #34d399, #059669);
}

.ta4 {
  background: linear-gradient(135deg, #f9a8d4, #ec4899);
}

.avatar-inner {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #0f0f14;
}

.team-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.78rem;
  color: #b388ff;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.85rem;
  line-height: 1.65;
  color: rgba(245, 245, 247, 0.5);
  margin-bottom: 0.75rem;
}

.team-twitter {
  font-size: 0.82rem;
  color: rgba(245, 245, 247, 0.4);
  transition: color 0.2s;
}

.team-twitter:hover {
  color: #b388ff;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #050505 0%, #120e00 50%, #050505 100%);
  border-top: 1px solid rgba(179, 136, 255, 0.15);
  border-bottom: 1px solid rgba(179, 136, 255, 0.15);
  padding: 10rem 2rem;
  text-align: center;
}

.cta-banner-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.cta-banner p {
  font-size: 1rem;
  color: rgba(245, 245, 247, 0.55);
  margin-bottom: 2rem;
}

/* ===== EXPLORE PAGE ===== */

/* -- Centered Hero Title -- */
.explore-hero {
  width: 100%;
  padding: 110px 2rem 1.75rem;
  text-align: center;
}

.explore-hero .explore-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 0 40px rgba(179, 136, 255, 0.12);
}

/* -- Sidebar + Grid Layout -- */
.explore-layout {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  padding: 0 2rem 4rem;
  align-items: flex-start;
  min-height: 100vh;
}

/* ===== PREMIUM FILTER SIDEBAR ===== */
.explore-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  align-self: flex-start;
  max-height: calc(100vh - 110px);
  background: rgba(12, 12, 18, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(179, 136, 255, 0.2) transparent;
  display: flex;
  flex-direction: column;
}

.explore-sidebar::-webkit-scrollbar {
  width: 3px;
}

.explore-sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.explore-sidebar::-webkit-scrollbar-thumb {
  background: rgba(179, 136, 255, 0.15);
  border-radius: 10px;
}

.explore-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(179, 136, 255, 0.35);
}

/* --- Sidebar Header --- */
.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.4rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(12, 12, 18, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.sidebar-header h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: rgba(245, 245, 247, 0.9);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.sidebar-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.close-sidebar-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(245, 245, 247, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.close-sidebar-btn:hover {
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

/* --- Clear All Button --- */
.clear-all-btn {
  background: transparent;
  border: 1px solid rgba(179, 136, 255, 0.15);
  color: rgba(179, 136, 255, 0.7);
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.clear-all-btn:hover {
  color: #b388ff;
  background: rgba(179, 136, 255, 0.08);
  border-color: rgba(179, 136, 255, 0.35);
}

/* --- Active Filter Tags --- */
.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0 1.4rem;
  margin-bottom: 0.25rem;
}

.active-filters:empty {
  display: none;
}

.active-filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(179, 136, 255, 0.08);
  border: 1px solid rgba(179, 136, 255, 0.18);
  color: #c4a0ff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.active-filter-tag:hover {
  background: rgba(179, 136, 255, 0.14);
  border-color: rgba(179, 136, 255, 0.3);
}

.active-filter-tag button {
  background: none;
  border: none;
  color: rgba(179, 136, 255, 0.5);
  font-size: 0.75rem;
  line-height: 1;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}

.active-filter-tag button:hover {
  color: #e0c4ff;
}

/* --- Filter Groups --- */
.filter-group {
  border-bottom: none;
  margin: 0 0.8rem;
  padding: 0 0.6rem;
  border-radius: 12px;
  transition: background 0.25s ease;
}

.filter-group:hover {
  background: rgba(255, 255, 255, 0.015);
}

.filter-group+.filter-group {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 0;
  margin-top: 0;
}

.filter-group:last-child {
  margin-bottom: 1rem;
}

/* --- Filter Group Header --- */
.filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0.25rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  color: rgba(245, 245, 247, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  background: transparent;
  border-radius: 8px;
  transition: all 0.25s ease;
  user-select: none;
}

.filter-group-header:hover {
  color: rgba(245, 245, 247, 0.9);
  background: transparent;
  padding-left: 0.25rem;
}

.filter-group-header span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* --- Filter Arrow --- */
.filter-arrow {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  color: rgba(179, 136, 255, 0.4);
  width: 14px;
  height: 14px;
}

.filter-arrow.open {
  transform: rotate(180deg);
  color: rgba(179, 136, 255, 0.7);
}

/* --- Filter Options (Expand/Collapse) --- */
.filter-options {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--motion-base),
    opacity var(--motion-fast);
  overflow: hidden;
  opacity: 0;
}

.filter-options.open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-bottom: 0.5rem;
}

.filter-options-inner {
  min-height: 0;
  padding: 0.2rem 0.25rem 0.5rem;
}

/* --- Filter Values Scroll Container --- */
.filter-values-container {
  max-height: 220px;
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(179, 136, 255, 0.15) transparent;
}

.filter-values-container::-webkit-scrollbar {
  width: 3px;
}

.filter-values-container::-webkit-scrollbar-thumb {
  background: rgba(179, 136, 255, 0.15);
  border-radius: 10px;
}

.filter-values-container::-webkit-scrollbar-thumb:hover {
  background: rgba(179, 136, 255, 0.3);
}

/* --- Category Search Input --- */
.filter-cat-search-wrap {
  margin-bottom: 0.6rem;
  margin-top: 0.15rem;
}

.filter-cat-search {
  width: 100%;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #f5f5f7;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  outline: none;
  transition: all 0.25s ease;
}

.filter-cat-search::placeholder {
  color: rgba(245, 245, 247, 0.25);
}

.filter-cat-search:focus {
  border-color: rgba(179, 136, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(179, 136, 255, 0.06);
}

/* --- Filter Option Row (Checkbox + Label) --- */
.filter-opt {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.5rem;
  margin: 1px 0;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245, 245, 247, 0.55);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.filter-opt:hover {
  color: rgba(245, 245, 247, 0.9);
  background: rgba(255, 255, 255, 0.025);
}

/* Custom Checkbox */
.filter-opt input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  flex-shrink: 0;
}

.filter-opt input[type="checkbox"]:hover {
  border-color: rgba(179, 136, 255, 0.4);
  background: rgba(179, 136, 255, 0.05);
}

.filter-opt input[type="checkbox"]:checked {
  background: #b388ff;
  border-color: #b388ff;
}

.filter-opt input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid #0f0f14;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-opt input[type="checkbox"]:checked~span {
  color: rgba(245, 245, 247, 0.95);
}

/* --- Opt Count Badge --- */
.filter-opt .opt-count {
  margin-left: auto;
  font-size: 0.68rem;
  font-weight: 500;
  color: rgba(245, 245, 247, 0.2);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  min-width: 24px;
  text-align: center;
  transition: all 0.2s ease;
}

.filter-opt:hover .opt-count {
  color: rgba(245, 245, 247, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

/* --- Token ID Input Row --- */
.filter-input-row {
  display: flex;
  gap: 0.4rem;
  width: 100%;
  padding: 0.6rem 0;
}

.filter-input-row input {
  flex: 1;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  color: #f5f5f7;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  outline: none;
  transition: all 0.25s ease;
}

.filter-input-row input::placeholder {
  color: rgba(245, 245, 247, 0.25);
}

.filter-input-row input:focus {
  border-color: rgba(179, 136, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 0 3px rgba(179, 136, 255, 0.06);
}

.go-btn {
  background: linear-gradient(135deg, #b388ff, #9b6dff);
  color: #0f0f14;
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
  cursor: pointer;
}

.go-btn:hover {
  background: linear-gradient(135deg, #c4a0ff, #b388ff);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(179, 136, 255, 0.25);
}

/* Mobile Filter Button */
.mobile-filter-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: rgba(179, 136, 255, 0.1);
  border: 1.5px solid rgba(179, 136, 255, 0.3);
  color: #b388ff;
  padding: 0.8rem 1.5rem;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.mobile-filter-btn:hover {
  background: rgba(179, 136, 255, 0.2);
  border-color: #b388ff;
  transform: translateY(-2px);
}

/* EXPLORE MAIN */
.explore-main {
  flex: 1;
  min-width: 0;
}

/* -- Toolbar Row -- */
.explore-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toolbar-count {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(245, 245, 247, 0.65);
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.explore-controls {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.sort-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  color: #f5f5f7;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  outline: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.sort-select:hover {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
}

.sort-select:focus {
  border-color: rgba(179, 136, 255, 0.3);
  box-shadow: 0 0 0 3px rgba(179, 136, 255, 0.06);
}

.view-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  overflow: hidden;
}

.vt-btn {
  background: transparent;
  border: none;
  padding: 0.45rem 0.7rem;
  color: rgba(245, 245, 247, 0.4);
  transition: all 0.25s ease;
  cursor: pointer;
}

.vt-btn.active {
  background: rgba(179, 136, 255, 0.15);
  color: #b388ff;
  text-shadow: 0 0 10px rgba(179, 136, 255, 0.3);
}

.vt-btn:hover {
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.04);
}

.random-btn {
  background: rgba(179, 136, 255, 0.08);
  border: 1px solid rgba(179, 136, 255, 0.2);
  border-radius: 100px;
  padding: 0.5rem 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b388ff;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.random-btn:hover {
  background: rgba(179, 136, 255, 0.18);
  border-color: rgba(179, 136, 255, 0.45);
  box-shadow: 0 0 16px rgba(179, 136, 255, 0.12);
  transform: translateY(-1px);
}

/* Legacy classes (kept for compat) */
.explore-header {
  margin-bottom: 0;
}

.explore-title-row {
  display: none;
}

.explore-stats-bar {
  display: none;
}

/* NFT GRID */
.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(195px, 1fr));
  gap: 1.1rem;
  width: 100%;
}

/* Hide list actions in grid view (only shown in list view) */
.list-actions {
  display: none;
}

.nft-grid.list-view .list-actions {
  display: flex;
}

@media (max-width: 1200px) {
  .nft-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
}

.nft-grid.list-view {
  grid-template-columns: 1fr;
}

.nft-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--motion-hover);
  cursor: pointer;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  animation: slideUpReveal var(--motion-entrance) both;
}

.nft-card:nth-child(1) {
  animation-delay: 0.05s;
}

.nft-card:nth-child(2) {
  animation-delay: 0.10s;
}

.nft-card:nth-child(3) {
  animation-delay: 0.15s;
}

.nft-card:nth-child(4) {
  animation-delay: 0.20s;
}

.nft-card:nth-child(5) {
  animation-delay: 0.25s;
}

.nft-card:nth-child(6) {
  animation-delay: 0.30s;
}

.nft-card:nth-child(7) {
  animation-delay: 0.35s;
}

.nft-card:nth-child(8) {
  animation-delay: 0.40s;
}

.nft-card:nth-child(9) {
  animation-delay: 0.45s;
}

.nft-card:nth-child(10) {
  animation-delay: 0.50s;
}

.nft-card:nth-child(11) {
  animation-delay: 0.55s;
}

.nft-card:nth-child(12) {
  animation-delay: 0.60s;
}

.nft-card:hover {
  transform: translateY(-4px);
  background: rgba(20, 20, 28, 0.8);
  border-color: var(--accent-purple);
  box-shadow: var(--shadow-hover);
}

.nft-card-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  width: 100%;
}

.nft-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.nft-card:hover .nft-card-img img {
  transform: scale(1.08);
  filter: brightness(0.75);
}

.nft-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: var(--transition-base);
  z-index: 5;
  padding: var(--space-2);
}

.nft-card:hover .nft-overlay {
  opacity: 1;
}

.overlay-btn {
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  transform: translateY(8px);
  white-space: nowrap;
  text-decoration: none;
}

.nft-card:hover .overlay-btn {
  transform: translateY(0);
}

.overlay-btn.buy {
  background: rgba(179, 136, 255, 0.15);
  color: #d4b8ff;
  border: 1px solid rgba(179, 136, 255, 0.2);
}

.overlay-btn.buy:hover {
  background: rgba(179, 136, 255, 0.25);
  border-color: rgba(179, 136, 255, 0.35);
}

.overlay-btn.view {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 247, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.overlay-btn.view:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
}

.nft-card-body {
  padding: 1.5rem;
  text-align: center;
}

.nft-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.nft-card-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: #f5f5f7;
  display: block;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.nft-card-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.rarity-badge {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.25rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  transition: var(--transition-base);
}

.rank-badge {
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.r-legendary {
  background: rgba(255, 183, 0, 0.12);
  color: #ffb300;
  border-color: rgba(255, 183, 0, 0.2);
  text-shadow: 0 0 8px rgba(255, 183, 0, 0.2);
}

.r-epic {
  background: rgba(167, 139, 250, 0.12);
  color: #a78bfa;
  border-color: rgba(167, 139, 250, 0.2);
  text-shadow: 0 0 8px rgba(167, 139, 250, 0.2);
}

.r-rare {
  background: rgba(96, 165, 250, 0.12);
  color: #60a5fa;
  border-color: rgba(96, 165, 250, 0.2);
  text-shadow: 0 0 8px rgba(96, 165, 250, 0.15);
}

.r-uncommon {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border-color: rgba(52, 211, 153, 0.2);
}

.r-common {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(245, 245, 247, 0.4);
  border-color: rgba(255, 255, 255, 0.06);
}

/* List view card */
.nft-grid.list-view .nft-card {
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 0.75rem;
  position: relative;
}

.nft-grid.list-view .nft-card-img {
  width: 60px;
  height: 60px;
  font-size: 1.8rem;
  border-radius: 10px;
  flex-shrink: 0;
  aspect-ratio: unset;
}

/* Hide image overlay in list view */
.nft-grid.list-view .nft-card-img .nft-overlay {
  display: none;
}

.nft-grid.list-view .nft-card-body {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  padding: 0 0 0 1rem;
  min-width: 0;
}

.nft-grid.list-view .nft-card-name {
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nft-grid.list-view .nft-card-rarity {
  margin: 0;
}

/* List view hover action buttons */
.nft-grid.list-view .nft-card::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 200px;
  background: linear-gradient(90deg, transparent, rgba(15, 15, 20, 0.95) 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: 0 12px 12px 0;
}

.nft-grid.list-view .nft-card:hover::after {
  opacity: 1;
}

.nft-grid.list-view .nft-card .list-actions {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.nft-grid.list-view .nft-card:hover .list-actions {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.list-action-btn {
  padding: 0.4rem 0.9rem;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
  transition: var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.list-action-btn.list-buy {
  background: rgba(179, 136, 255, 0.1);
  color: var(--accent-purple);
  border: 1px solid rgba(179, 136, 255, 0.2);
}

.list-action-btn.list-buy:hover {
  background: rgba(179, 136, 255, 0.2);
  border-color: var(--accent-purple);
}

.list-action-btn.list-view-btn {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--card-border);
}

.list-action-btn.list-view-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Disable image hover effects in list view */
.nft-grid.list-view .nft-card:hover .nft-card-img img {
  transform: none;
  filter: none;
}

.nft-grid.list-view .nft-card:hover {
  transform: none;
}

.load-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 0.85rem 2.2rem;
  color: rgba(245, 245, 247, 0.6);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  cursor: pointer;
}

.btn-load-more:hover {
  background: rgba(179, 136, 255, 0.1);
  color: #b388ff;
  border-color: rgba(179, 136, 255, 0.25);
  box-shadow: 0 0 20px rgba(179, 136, 255, 0.08);
  transform: translateY(-2px);
}

/* NFT DETAIL MODAL */
.nft-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.nft-modal-overlay.open {
  display: flex;
}

.nft-modal {
  background: #151515;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  width: 100%;
  max-width: 700px;
  max-height: 90vh;
  overflow-y: auto;
  animation: modal-in 0.3s ease;
  position: relative;
}

.nft-modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(245, 245, 247, 0.7);
  font-size: 1rem;
  z-index: 10;
  transition: background 0.2s;
}

.nft-modal-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

.nft-modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.nft-modal-img {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}

.nft-modal-details {
  padding: 2rem;
}

.nft-modal-details h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.nft-modal-details .modal-rarity {
  font-size: 0.82rem;
  margin-bottom: 1.5rem;
  display: block;
}

.traits-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.trait-item {
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 0.6rem 0.9rem;
}

.trait-key {
  font-size: 0.78rem;
  color: rgba(245, 245, 247, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trait-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: #f5f5f7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .explore-layout {
    gap: 1.25rem;
  }

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

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

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 3rem;
    text-align: center;
  }

  .hero-character-wrap {
    order: 1;
  }

  .hero-content {
    order: 2;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

  .about-prev-inner {
    grid-template-columns: 1fr;
  }

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

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

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

  .explore-layout {
    padding-top: 0;
  }

  .explore-hero {
    padding-top: 100px;
    padding-bottom: 1.25rem;
  }

  .explore-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    z-index: 2000;
    background: rgba(8, 8, 14, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    transition: left 0.5s cubic-bezier(0.19, 1, 0.22, 1),
      box-shadow 0.5s ease;
    box-shadow: none;
    padding: 0;
    border-right: 1px solid rgba(179, 136, 255, 0.08);
    border-radius: 0;
    overflow-y: auto;
  }

  .explore-sidebar.open {
    left: 0;
    box-shadow: 20px 0 80px rgba(0, 0, 0, 0.6);
  }

  .sidebar-header {
    padding: 1.5rem 1.4rem 1rem;
  }

  .mobile-filter-btn {
    display: flex;
  }

  .close-sidebar-btn {
    display: flex;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 1.5rem 3rem;
  }

  .nft-preview-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .explore-main {
    padding: 0;
  }

  .explore-hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .explore-layout {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .toolbar-right {
    flex-wrap: wrap;
  }
}