/* ============================================
   CSS Variables
   ============================================ */
:root {
  /* Colors */
  --color-primary: #8a2be2;
  --color-primary-light: #9d4edd;
  --color-primary-dark: #6a1bb4;
  --color-secondary: #00ffff;
  --color-accent: #ff6b6b;
  
  --color-bg-main: #5f37dc;
  --color-bg-dark: #1e1a2c;
  --color-bg-darker: #000000;
  --color-bg-light: #1a1a2e;
  --color-bg-card: rgba(230, 226, 241, 1);
  
  --color-text-primary: #ffffff;
  --color-text-secondary: #b4b4b4;
  --color-text-muted: #6b6b7e;
  --color-text-dark: #2f2f2f;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  --gradient-hero: linear-gradient(135deg, #1a0b2e 0%, #16213e 25%, #0f3460 50%, #533483 75%, #2d1b69 100%);
  --gradient-card: linear-gradient(180deg, rgba(138, 43, 226, 0.1) 0%, rgba(26, 26, 46, 0.9) 100%);
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;
  --spacing-2xl: 8rem;
  
  /* Typography */
  --font-primary: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', sans-serif;
  --font-heading: 'Chewy', cursive;
  
  --font-size-xs: 0.75rem;
  --font-size-sm: 1.25rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 1.75rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 3rem;
  --font-size-4xl: 4rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 20px rgba(138, 43, 226, 0.4);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Container */
  --container-max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}


body {
  font-family: var(--font-primary);
  font-weight: 600;
  background: var(--color-bg-main);
  font-size: 1.4em;
  line-height: 1.2em;
  color: var(--color-text-primary);
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2em;
  letter-spacing: 0.02em;
}

h1 { font-size: 4em; }
h2 { font-size: 3.5em; }
h3 { font-size: 3em; }
h4 { font-size: 2.5em; }
h5 { font-size: 2em; }
h6 { font-size: 1.6em; }

/* ============================================
   Utilities
   ============================================ */
.section-label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ff6b35;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

.section-label--center {
  display: block;
  text-align: center;
}
.gallery__auto-scroll .gallery__label { display:none !important; }
.section-title {
  position: relative !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 5vw, 3.5rem) !important;
  font-weight: normal !important;
  line-height: 1.1 !important;
  margin-bottom: var(--spacing-xl) !important;
  margin-top: var(--spacing-sm) !important;
  -webkit-text-stroke: 6px rgb(39, 14, 14) !important;
  color: rgb(106, 0, 255) !important;
  text-shadow: 0px 10px 12px rgba(0, 0, 0, 0.8), 3px 6px 0px rgba(0, 0, 0, 0.5) !important;
  user-select: none !important;
  display: block !important;
  text-align: center !important;
  width: 100% !important;
}

.section-title span {
  position: absolute !important;
  top: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 2 !important;
  background: linear-gradient(180deg, rgb(255 254 0) 0%, rgb(255 0 179) 100%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 0px !important;
  text-shadow: none !important;
  white-space: nowrap !important;
}

.section-title--center {
  text-align: center;
}

/* ============================================
   Loading Screen
   ============================================ */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease-out;
  overflow: hidden;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.loading-logo {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
  animation: logoFloat 2s ease-in-out infinite alternate;
}

.loading-progress {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-bar {
  width: 100%;
  height: 16px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.loading-fill {
  height: 100%;
  background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 50%, #FFD700 100%);
  border-radius: 8px;
  width: 0%;
  animation: loadingProgress 3s ease-in-out forwards;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

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

@keyframes loadingProgress {
  0% {
    width: 0%;
  }
  20% {
    width: 30%;
  }
  50% {
    width: 60%;
  }
  80% {
    width: 85%;
  }
  100% {
    width: 100%;
  }
}

/* ============================================
   Navigation
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--spacing-sm) 0;
  transition: all var(--transition-base);
  background: transparent;
  overflow: visible;
}

.nav--scrolled {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-img {
  height: 45px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav__link {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color var(--transition-fast);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition-base);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__button {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-glow);
}

.nav__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.6);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  height: 24px;
  z-index: 1001;
}

.nav__toggle-line {
  width: 100%;
  height: 3px;
  background: var(--color-text-primary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.nav__toggle--active .nav__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.nav__toggle--active .nav__toggle-line:nth-child(2) {
  opacity: 0;
}

.nav__toggle--active .nav__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-xl) 0;
  overflow: hidden;
  width: 100%;
}

.hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  animation: galaxyFloat 20s ease-in-out infinite alternate;
}

@keyframes galaxyFloat {
  0% {
    transform: scale(1) rotate(0deg);
  }
  100% {
    transform: scale(1.1) rotate(5deg);
  }
}

.hero__container {
  max-width: var(--container-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.hero__content {
  animation: fadeInUp 1s ease-out;
}

.hero__title-line {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--color-primary);
  margin-bottom: var(--spacing-xs);
}

@media (max-width: 768px) {
  .hero__title-line {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    letter-spacing: 0.15em;
  }
}

.hero__title-main {
  position: relative;
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-text-stroke: 8px rgb(39, 14, 14);
  color: rgb(106, 0, 255);
  text-shadow: 0px 15px 18px rgba(0, 0, 0, 0.8), 4px 8px 0px rgba(0, 0, 0, 0.5);
  user-select: none;
  margin-bottom: var(--spacing-md);
}

@media (max-width: 768px) {
  .hero__title-main {
    font-size: clamp(3.75rem, 12vw, 5rem);
    margin-bottom: var(--spacing-md);
    -webkit-text-stroke: 6px rgb(39, 14, 14);
    text-shadow: 0px 12px 15px rgba(0, 0, 0, 0.8), 3px 6px 0px rgba(0, 0, 0, 0.5);
  }
}

.hero__title-main span {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgb(255 254 0) 0%, rgb(255 0 179) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0px;
  text-shadow: none;
  width: 100%;
}

.hero__subtitle {
  font-size: var(--font-size-xl);
  color: #ffffff;
  margin-bottom: var(--spacing-2xl);
  max-width: 500px;
  font-weight: 700;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 10;
  background: transparent;
  padding: 0;
  margin-top: var(--spacing-sm);
  text-align: left;
}

@media (max-width: 768px) {
  .hero__subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    font-weight: 700;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7);
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
    margin-top: var(--spacing-sm);
    text-align: left;
  }
}

.hero__description {
  font-size: var(--font-size-lg);
  color: #ffffff;
  margin-bottom: var(--spacing-xs);
  max-width: 500px;
  line-height: 1.8;
  position: relative;
  z-index: 5;
  margin-top: var(--spacing-sm);
  text-align: left;
}

@media (max-width: 768px) {
  .hero__description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    line-height: 1.6;
    position: relative;
    z-index: 5;
    margin-top: var(--spacing-sm);
    text-align: left;
  }
}

.hero__buttons {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: 15px;
  margin-top: -46px;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 5;
}

.hero__buttons .button {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
}

.hero__stats {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 1;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 1;
  padding: var(--spacing-sm);
  margin: var(--spacing-xs);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: var(--spacing-xs);
}

.hero__stat-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__image {
  position: relative;
  animation: fadeInRight 1s ease-out 0.3s both;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__nft {
  position: absolute;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(138, 43, 226, 0.5));
}

.hero__nft--planet {
  width: 100%;
  max-width: 450px;
  z-index: 1;
  animation: floatSlow 8s ease-in-out infinite;
  opacity: 0.8;
}

.hero__nft--main {
  width: 80%;
  max-width: 350px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-15px) rotate(2deg);
  }
}

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

.hero__scroll {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: #ffffff;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero__scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

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

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   Buttons
   ============================================ */
.button {
  display: inline-flex;
  padding: 20px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.3em;
  font-weight: 800;
  font-family: var(--font-heading);
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
}

.button--primary {
  background: rgba(251, 171, 36, 1);
  color: rgb(40, 22, 12);
  box-shadow: inset 0px -3px 0px rgb(174, 68, 27), inset 0px 3px 0px rgb(255, 251, 148), 0px 10px 30px rgba(0,0,0,0.5), 0px 5px 2px rgba(0,0,0,0.5);
  border: 4px solid rgb(40, 22, 12);
}

.button--primary:hover {
  background: yellow;
  transform: scale(1.05);
  box-shadow: inset 0px -3px 0px rgb(174, 68, 27), inset 0px 3px 0px rgb(255, 251, 148), 0px 10px 30px rgba(0,0,0,0.5), 0px 8px 10px rgba(0,0,0,0.3);
}

.button--secondary {
  background: rgba(251, 171, 36, 1);
  color: rgb(40, 22, 12);
  box-shadow: inset 0px -3px 0px rgb(174, 68, 27), inset 0px 3px 0px rgb(255, 251, 148), 0px 10px 30px rgba(0,0,0,0.5), 0px 5px 2px rgba(0,0,0,0.5);
  border: 4px solid rgb(40, 22, 12);
}

.button--secondary:hover {
  background: yellow;
  transform: scale(1.05);
  box-shadow: inset 0px -3px 0px rgb(174, 68, 27), inset 0px 3px 0px rgb(255, 251, 148), 0px 10px 30px rgba(0,0,0,0.5), 0px 8px 10px rgba(0,0,0,0.3);
}

/* ============================================
   About Section
   ============================================ */
.about {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.about__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  position: relative;
  z-index: 1;
}

.about__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-primary);
  margin-bottom: var(--spacing-lg);
  margin-top: var(--spacing-sm);
  line-height: 1.8;
  text-align: center;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
  width: 100%;
  padding: 0 var(--spacing-sm);
}

.feature {
  display: flex;
  flex-flow: column;
  align-items: start;
  gap: 15px;
  border-radius: 2.5em;
  background: linear-gradient(180deg, rgba(230, 226, 241, 1) 0%, rgba(203,208,231,1) 100%);
  color: var(--color-text-dark);
  padding: 1.5em;
  box-shadow: inset 0px -5px 0px rgb(169, 158, 201), inset 0px 5px 0px rgb(255, 255, 255), 0px 10px 30px rgba(0,0,0,0.5), 0px 10px 2px rgba(0,0,0,0.3);
  border: 4px solid #28160c;
  transition: all 0.3s ease;
  transform: rotate(2deg);
  min-height: 200px;
  justify-content: flex-start;
  opacity: 1 !important;
  visibility: visible !important;
}

.feature:nth-child(1) {
  transform: rotate(2deg);
}

.feature:nth-child(2) {
  transform: rotate(-3deg);
}

.feature:nth-child(3) {
  transform: rotate(1.5deg);
}

.feature:nth-child(4) {
  transform: rotate(-2.5deg);
}

.feature:hover {
  transform: rotate(0deg) scale(1.05) !important;
}

/* Mantener rotaciones después de animaciones AOS */
.feature[data-aos].aos-animate {
  transform: rotate(var(--rotation, 0deg)) !important;
}

.feature:nth-child(1)[data-aos].aos-animate {
  transform: rotate(2deg) !important;
}

.feature:nth-child(2)[data-aos].aos-animate {
  transform: rotate(-3deg) !important;
}

.feature:nth-child(3)[data-aos].aos-animate {
  transform: rotate(1.5deg) !important;
}

.feature:nth-child(4)[data-aos].aos-animate {
  transform: rotate(-2.5deg) !important;
}

/* Ensure features are always visible */
.feature:nth-child(3),
.feature:nth-child(4) {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.feature__icon {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
}

.feature__title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-dark);
}

.feature__text {
  color: var(--color-text-dark);
  line-height: 1.6;
  font-weight: 500;
}

.about__movement {
  margin-top: var(--spacing-lg);
  display: flex;
  justify-content: center;
}

.movement-banner {
  background: linear-gradient(90deg, #ff1744 0%, #ff6b35 100%);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.3);
  border: 3px solid #28160c;
}

.movement-text {
  font-family: var(--font-primary);
  font-size: 1.2em;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about__visual {
  position: relative;
  height: 500px;
}

.about__card {
  position: absolute;
  width: 280px;
  height: 320px;
  background: var(--gradient-card);
  border: 2px solid rgba(138, 43, 226, 0.3);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all var(--transition-base);
}

.about__card--1 {
  top: 0;
  left: 0;
  z-index: 3;
  background-image: url('xshare-nft.png');
  background-size: cover;
  background-position: center;
}

.about__card--2 {
  top: 40px;
  left: 60px;
  z-index: 2;
  opacity: 0.8;
}

.about__card--3 {
  top: 80px;
  left: 120px;
  z-index: 1;
  opacity: 0.6;
}

.about__card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(138, 43, 226, 0.4);
  z-index: 10;
}

/* ============================================
   Ecosystem Section
   ============================================ */
.ecosystem {
 /* padding: var(--spacing-xl) 0; */
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ecosystem__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.ecosystem__content {
  position: relative;
  z-index: 1;
}

.ecosystem__points {
  margin-top: var(--spacing-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

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

.ecosystem__number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #ffb347 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  flex-shrink: 0;
}

.ecosystem__text {
  flex: 1;
}

.ecosystem__title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.ecosystem__subtitle {
  font-family: var(--font-primary);
  font-size: 1rem;
  color: #ffffff;
  font-weight: 400;
}

.ecosystem__visuals {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 700px;
  padding: 80px 0;
}

.ecosystem__visual {
  position: absolute;
}

.ecosystem__visual--coin {
  top: 120px;
  left: 20px;
  z-index: 2;
}

.ecosystem__visual--island {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

.ecosystem__visual--globe {
  top: 120px;
  right: 20px;
  z-index: 2;
}

/* Ecosystem Images */
.ecosystem__img {
  height: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.ecosystem__img--coin {
  width: 400px;
}

.ecosystem__img--island {
  width: 450px;
}

.ecosystem__img--globe {
  width: 350px;
}

.ecosystem__img--main {
  width: 400px;
  animation: ecosystemFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 15px 30px rgba(138, 43, 226, 0.4));
}

@keyframes ecosystemFloat {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
  }
  25% { 
    transform: translateY(-8px) rotate(1deg) scale(1.02); 
  }
  50% { 
    transform: translateY(-12px) rotate(0deg) scale(1.05); 
  }
  75% { 
    transform: translateY(-8px) rotate(-1deg) scale(1.02); 
  }
}

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

/* ============================================
   Vision Section
   ============================================ */
.vision {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.vision::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.vision__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.vision__image {
  order: -1;
}

.vision__img {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 255, 255, 0.3));
}

.vision__text {
  font-size: var(--font-size-lg);
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  line-height: 1.8;
}

.vision__highlights {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.vision__highlight {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--color-bg-card);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-base);
}

.vision__highlight:hover {
  transform: translateX(10px);
  border-left-width: 5px;
  box-shadow: var(--shadow-md);
}

.vision__highlight-number {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  font-weight: 900;
  color: var(--color-secondary);
  opacity: 0.3;
}

.vision__highlight-text {
  font-size: var(--font-size-lg);
  color: var(--color-text-primary);
  font-weight: 600;
}

/* ============================================
   Coffee Shop Section
============================================ */
.coffeeshop {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.coffeeshop__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.coffeeshop__content {
  text-align: center;
}


.coffeeshop__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  margin-top: var(--spacing-xl);
}

.coffeeshop__column {
  text-align: left;
}

.coffeeshop__column-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: var(--spacing-md);
}

.coffeeshop__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coffeeshop__list-item {
  font-family: var(--font-primary);
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-md);
  position: relative;
  line-height: 1.6;
}

.coffeeshop__list-item::before {
  content: "•";
  color: #ff6b35;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.coffeeshop__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.coffeeshop__laptop {
  position: relative;
  width: 450px;
  height: 400px;
}

.coffeeshop__laptop-screen {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(138, 43, 226, 0.3));
}

/* Responsive */
@media (max-width: 1024px) {
  .coffeeshop__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }
  
  .coffeeshop__visual {
    order: 2;
  }
  
  .coffeeshop__column:first-child {
    order: 1;
  }
  
  .coffeeshop__column:last-child {
    order: 3;
  }
  
  .coffeeshop__laptop {
    width: 400px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .coffeeshop__laptop {
    width: 350px;
    height: 280px;
  }
  
  .coffeeshop__column-title {
    font-size: 1.1rem;
  }
  
  .coffeeshop__list-item {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .coffeeshop__laptop {
    width: 280px;
    height: 220px;
  }
  
  .coffeeshop__list-item {
    font-size: 1.2rem;
  }
}

/* ============================================
   Vault Section
   ============================================ */
.vault {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.vault__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.vault__intro {
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: var(--spacing-xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.vault__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.vault__card {
  position: relative;
  padding: 1.5em;
  background: linear-gradient(180deg, rgba(230, 226, 241, 1) 0%, rgba(203,208,231,1) 100%);
  border: 4px solid #28160c;
  border-radius: 2.5em;
  box-shadow: inset 0px -5px 0px rgb(169, 158, 201), inset 0px 5px 0px rgb(255, 255, 255), 0px 10px 30px rgba(0,0,0,0.5), 0px 10px 2px rgba(0,0,0,0.3);
  transition: all var(--transition-base);
  text-align: center;
  color: #000000;
}

.vault__card:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: inset 0px -5px 0px rgb(169, 158, 201), inset 0px 5px 0px rgb(255, 255, 255), 0px 15px 40px rgba(0,0,0,0.6), 0px 15px 5px rgba(0,0,0,0.4);
}

.vault__card--highlight {
  border-color: var(--color-primary);
  border-width: 4px;
  background: linear-gradient(180deg, rgba(138, 43, 226, 0.2) 0%, rgba(203,208,231,1) 100%);
}

.vault__card-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
}

.vault__card-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: #000000;
}

.vault__card-text {
  color: #000000;
  font-size: 1.1rem;
  line-height: 1.8;
}

.vault__card-badge {
  position: absolute;
  top: var(--spacing-sm);
  right: var(--spacing-sm);
  padding: 0.5rem 1rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   Business Section
   ============================================ */
.business {
  padding: var(--spacing-2xl) 0;
  background: var(--color-bg-main);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.business__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.business__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.business__pillars {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.business__pillar {
  padding: var(--spacing-md);
  background: var(--color-bg-card);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.business__pillar:hover {
  border-color: var(--color-primary);
  transform: translateX(10px);
  box-shadow: var(--shadow-glow);
}

.business__pillar-icon {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--spacing-sm);
}

.business__pillar-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary);
}

.business__pillar-text {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.business__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.business__img {
  width: 100%;
  max-width: 400px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(138, 43, 226, 0.4));
}

.business__metrics {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--spacing-md);
  background: rgba(10, 10, 15, 0.9);
  padding: var(--spacing-md);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.business__metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 var(--spacing-md);
}

.business__metric:not(:last-child) {
  border-right: 1px solid rgba(138, 43, 226, 0.3);
}

.business__metric-value {
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
}

.business__metric-label {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   Merch Section
   ============================================ */
.merch {
  padding: var(--spacing-2xl) 0;
  background: var(--color-bg-main);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.merch__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-xl);
  align-items: center;
}

.merch__image {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.merch__img {
  position: absolute;
  max-width: 400px;
  width: 100%;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(138, 43, 226, 0.3));
}

.merch__img--alt {
  max-width: 300px;
  right: 0;
  animation-delay: -3s;
  opacity: 0.7;
}

.merch__text {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}

.merch__features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.merch__feature {
  display: flex;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: var(--color-bg-card);
  border: 1px solid rgba(138, 43, 226, 0.2);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.merch__feature:hover {
  border-color: var(--color-primary);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.merch__feature-icon {
  font-size: var(--font-size-3xl);
  flex-shrink: 0;
}

.merch__feature-content h4 {
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-primary);
}

.merch__feature-content p {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, var(--color-bg-main) 0%, var(--color-bg-dark) 100%);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.gallery__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.gallery__description {
  text-align: center;
  font-size: var(--font-size-lg);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: var(--spacing-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gallery__auto-scroll {
  margin-top: var(--spacing-xl);
  width: 100%;
  max-width: 100vw;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.gallery__row {
  display: flex;
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
  width: 300%;
}

.gallery__row--top {
  animation: scroll-left-infinite 40s linear infinite;
}

.gallery__row--bottom {
  animation: scroll-right-infinite 40s linear infinite;
}

.gallery__track {
  display: flex;
  gap: var(--spacing-md);
  flex-shrink: 0;
  width: fit-content;
  animation: none;
  min-width: 300%;
}

.gallery__item {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  border: 4px solid #D4AF37;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gallery__item:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-base);
}

.gallery__item:hover .gallery__image {
  transform: scale(1.05);
}

.gallery__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-align: center;
  padding: var(--spacing-sm) var(--spacing-xs);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes scroll-left-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@keyframes scroll-right-infinite {
  0% {
    transform: translateX(-33.333%);
  }
  100% {
    transform: translateX(0);
  }
}



/* ============================================
   Roadmap Section
   ============================================ */
.roadmap {
  padding: var(--spacing-md) 0;
  background: var(--color-bg-main);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.roadmap__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

.roadmap__timeline {
  position: relative;
  padding-left: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.roadmap__timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
}

.roadmap__item {
  position: relative;
  padding-bottom: var(--spacing-xl);
  opacity: 0;
  transform: translateX(-30px);
  transition: all var(--transition-slow);
}

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

.roadmap__marker {
  position: absolute;
  left: calc(-1 * var(--spacing-lg) - 8px);
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--color-bg-dark);
  border: 3px solid var(--color-primary);
  z-index: 2;
}

.roadmap__marker-inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--color-primary);
  animation: pulse 2s ease-in-out infinite;
}

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

.roadmap__content {
  padding: 1.5em;
  background: linear-gradient(180deg, rgba(230, 226, 241, 1) 0%, rgba(203,208,231,1) 100%);
  border: 4px solid #28160c;
  border-radius: 2.5em;
  box-shadow: inset 0px -5px 0px rgb(169, 158, 201), inset 0px 5px 0px rgb(255, 255, 255), 0px 10px 30px rgba(0,0,0,0.5), 0px 10px 2px rgba(0,0,0,0.3);
  transition: all var(--transition-base);
}

.roadmap__content:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: inset 0px -5px 0px rgb(169, 158, 201), inset 0px 5px 0px rgb(255, 255, 255), 0px 15px 40px rgba(0,0,0,0.6), 0px 15px 5px rgba(0,0,0,0.4);
}

.roadmap__phase {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--spacing-sm);
}

.roadmap__title {
  position: relative;
  font-family: var(--font-heading);
  font-size: var(--font-size-2xl);
  font-weight: normal;
  margin-bottom: var(--spacing-sm);
  color: #000000;
  user-select: none;
}


.roadmap__description {
  color: #000000;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
}

.roadmap__status {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 600;
}

.roadmap__status--completed {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.roadmap__status--progress {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.roadmap__status--upcoming {
  background: rgba(138, 43, 226, 0.2);
  color: var(--color-primary);
}

/* ============================================
   Team Section
   ============================================ */
.team {
  padding: var(--spacing-xl) 0;
  background: var(--color-bg-main);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.team__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.team__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 60px;
  justify-content: center;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.team__member {
  display: flex;
  flex-flow: column;
  width: calc(50% - 20px);
  text-align: center;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 20px 10px;
  box-shadow: none;
  transition: all var(--transition-base);
  opacity: 1 !important;
  visibility: visible !important;
}

.team__member:hover {
  transform: translateY(-5px);
}

.team__image {
  width: 200px;
  height: 200px;
  margin: 0 auto 25px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #D4AF37;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all var(--transition-base);
  opacity: 1 !important;
  visibility: visible !important;
}

.team__member:hover .team__image {
  transform: scale(1.05);
  border-color: #FFD700;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.team__info {
  display: flex;
  flex-flow: column;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.team__name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 1 !important;
  visibility: visible !important;
}

.team__role {
  color: #FFD700;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  opacity: 1 !important;
  visibility: visible !important;
}

.team__bio {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
  opacity: 1 !important;
  visibility: visible !important;
}

.team__social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}

.team__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  transition: all var(--transition-base);
}

.team__social-link:hover {
  background: var(--color-primary);
  transform: translateY(-3px);
}

.team__twitter-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: linear-gradient(90deg, #8B5CF6 0%, #EC4899 100%);
  border: none;
  border-radius: var(--radius-full);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-sm);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
  transition: all var(--transition-base);
  margin: 20px auto 0;
  opacity: 1 !important;
  visibility: visible !important;
}

.team__twitter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
  padding: var(--spacing-md) 0;
  background: var(--color-bg-main);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.faq__container {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--spacing-lg);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.faq__list {
  margin-top: var(--spacing-s);
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
}

.faq__item {
  margin-bottom: var(--spacing-sm);
  margin-left: 0;
  margin-right: 0;
  background: linear-gradient(180deg, rgba(230, 226, 241, 1) 0%, rgba(203,208,231,1) 100%);
  border: 4px solid #28160c;
  border-radius: 2.5em;
  box-shadow: inset 0px -5px 0px rgb(169, 158, 201), inset 0px 5px 0px rgb(255, 255, 255), 0px 10px 30px rgba(0,0,0,0.5), 0px 10px 2px rgba(0,0,0,0.3);
  overflow: hidden;
  transition: all var(--transition-base);
  opacity: 1 !important;
  visibility: visible !important;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-self: stretch;
}

.faq__item:hover {
  transform: translateY(-5px) rotate(2deg);
  box-shadow: inset 0px -5px 0px rgb(169, 158, 201), inset 0px 5px 0px rgb(255, 255, 255), 0px 15px 40px rgba(0,0,0,0.6), 0px 15px 5px rgba(0,0,0,0.4);
}

/* Asegurar que todos los elementos FAQ mantengan la misma alineación después de las animaciones AOS */
.faq__item[data-aos] {
  transform: none !important;
}

.faq__item[data-aos].aos-animate {
  transform: none !important;
}

.faq__item[data-aos]:nth-child(1),
.faq__item[data-aos]:nth-child(2),
.faq__item[data-aos]:nth-child(3),
.faq__item[data-aos]:nth-child(4),
.faq__item[data-aos]:nth-child(5),
.faq__item[data-aos]:nth-child(6) {
  transform: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Asegurar que el subtítulo del hero sea visible después de las animaciones AOS */
.hero__subtitle[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

.hero__subtitle[data-aos].aos-animate {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* Asegurar que los botones del hero sean visibles después de las animaciones AOS */
.hero__buttons[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.hero__buttons[data-aos].aos-animate {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.hero__buttons[data-aos] .button {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
}

.hero__buttons[data-aos].aos-animate .button {
  opacity: 1 !important;
  visibility: visible !important;
  display: inline-flex !important;
}

/* Asegurar que los hero stats sean visibles después de las animaciones AOS */
.hero__stats[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.hero__stats[data-aos].aos-animate {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.hero__stat[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

.hero__stat[data-aos].aos-animate {
  opacity: 1 !important;
  visibility: visible !important;
  display: flex !important;
}

/* Separación visual adicional para el subtítulo - REMOVIDO */

/* Asegurar que no haya superposición entre subtítulo y descripción */
.hero__subtitle {
  clear: both;
  overflow: hidden;
}

.hero__description {
  clear: both;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  padding: var(--spacing-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--font-size-lg);
  font-weight: 600;
  text-align: left;
  color: #000000;
  transition: all var(--transition-base);
  opacity: 1 !important;
  visibility: visible !important;
  box-sizing: border-box;
}

.faq__question:hover {
  color: var(--color-primary);
}

.faq__question--active {
  color: var(--color-primary);
}

.faq__icon {
  font-size: var(--font-size-2xl);
  font-weight: 300;
  transition: transform var(--transition-base);
  color: #000000;
}

.faq__question--active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 var(--spacing-md) var(--spacing-md);
  width: 100%;
  box-sizing: border-box;
}

.faq__answer p {
  color: #000000;
  line-height: 1.8;
  width: 100%;
  margin: 0;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--color-bg-main);
  border-top: 4px solid var(--color-text-primary);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  overflow: hidden;
  width: 100%;
  position: relative;
}

.footer__container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
  padding-bottom: var(--spacing-xl);
  border-bottom: 1px solid rgba(138, 43, 226, 0.2);
}

.footer__logo-img {
  height: 60px;
  width: auto;
  margin-bottom: var(--spacing-sm);
}

.footer__tagline {
  color: #ffffff;
  font-size: var(--font-size-base);
  margin-bottom: var(--spacing-xs);
}

.footer__motto {
  color: var(--color-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  font-style: italic;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
}

.footer__heading {
  font-size: var(--font-size-base);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: #ffffff;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer__link {
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__social {
  display: flex;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
}

.footer__social-link {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: var(--radius-full);
  color: #ffffff;
  transition: all var(--transition-base);
}

.footer__social-link:hover {
  background: var(--color-primary);
  color: var(--color-text-primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--spacing-md);
}

.footer__copyright {
  color: #ffffff;
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.footer__legal {
  display: flex;
  gap: var(--spacing-md);
}

/* ============================================
   Responsive Design
   ============================================ */

/* Laptop optimizations */
@media (max-width: 1440px) and (min-width: 1025px) {
  .nav__menu {
    gap: var(--spacing-lg);
  }

  .hero__nft {
    max-width: 500px;
  }

  .gallery__item {
    width: 260px;
    height: 300px;
  }

  .team__member {
    width: calc(50% - 20px);
  }
}

@media (max-width: 1024px) {
  :root {
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
  }

  /* Tablet optimizations */
  .nav__menu {
    display: none;
  }

  .nav__toggle {
    display: flex !important;
  }

  .hero__container {
    padding: var(--spacing-xl);
  }

  .hero__nft {
    max-width: 400px;
  }

  .gallery__item {
    width: 220px;
    height: 260px;
  }

  .team__member {
    width: calc(50% - 20px);
  }

  .coffeeshop__laptop {
    width: 400px;
    height: 320px;
  }
  .hero__container,
  .about__container,
  .vision__container,
  .business__container,
  .merch__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .hero__image {
    order: -1;
    height: 400px;
  }


  .vision__image,
  .business__visual,
  .merch__image {
    order: 2;
    height: 350px;
  }

  .business__metrics {
    position: static;
    transform: none;
    margin-top: var(--spacing-md);
  }
}

@media (max-width: 768px) {
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-lg);
    padding-top: 80px;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
  }

  .nav__menu--open {
    right: 0;
  }

  .nav__toggle {
    display: flex !important;
    z-index: 1001;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 8px;
    width: 40px;
    height: 40px;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
  }

  .nav__toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
  }

  /* Asegurar que el toggle sea visible */
  .nav__container {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
  }

  .nav__toggle-line {
    width: 20px;
    height: 2px;
    background: #ffffff !important;
    border-radius: 1px;
    transition: all var(--transition-base);
    display: block;
  }

  /* Overlay para cerrar el menú */
  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
  }

  .nav__overlay--active {
    opacity: 1;
    visibility: visible;
  }

  .nav__item {
    margin: 8px 0;
  }

  .nav__link {
    font-size: var(--font-size-base);
    padding: 12px 16px;
    display: block;
    text-align: left;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    color: #ffffff;
    font-weight: 500;
    line-height: 1.2;
  }

  .nav__link:hover {
    background: rgba(212, 175, 55, 0.15);
    color: var(--color-primary);
    transform: translateX(5px);
  }

  .nav__button {
    margin-top: 16px;
    padding: 12px 24px;
    font-size: var(--font-size-base);
    text-align: center;
    width: 100%;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: #ffffff;
    font-weight: 600;
    border: none;
    cursor: pointer;
  }

  .hero__container {
    padding: var(--spacing-md);
    text-align: center;
  }

  .hero__content {
    margin-bottom: var(--spacing-lg);
  }

  .hero__title-main {
    font-size: clamp(3.75rem, 12vw, 4.5rem);
    margin-bottom: var(--spacing-md);
  }

  .hero__description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-md);
    max-width: 100%;
  }

  .hero__buttons {
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: 8rem;
  }

  .hero__buttons .button {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-lg);
  }

  .hero__stats {
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
  }

  .hero__stat {
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
  }

  .hero__nft {
    max-width: 300px;
    margin-top: var(--spacing-lg);
  }

  /* Team section mobile */
  .team__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
  }

  .team__member {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .team__image {
    width: 180px;
    height: 180px;
  }

  /* Vault section mobile */
  .vault__grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }

  .vault__card {
    padding: var(--spacing-lg);
  }

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

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

  .footer__bottom {
    flex-direction: column;
    gap: var(--spacing-sm);
    text-align: center;
  }

  .team__grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .team__member {
    width: 100%;
    max-width: 350px;
  }
  
  .team__image {
    width: 150px;
    height: 150px;
  }


  .roadmap__timeline {
    padding-left: var(--spacing-md);
  }

  .vision__image,
  .business__visual {
    height: 300px;
  }

  .merch__image {
    height: 300px;
  }

  .merch__img--alt {
    display: none;
  }

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

  .business__img {
    max-width: 300px;
  }

  .feature {
    transform: rotate(0deg) !important;
  }
  
  .feature:nth-child(1) {
    transform: rotate(1deg) !important;
  }
  
  .feature:nth-child(2) {
    transform: rotate(-1.5deg) !important;
  }
  
  .feature:nth-child(3) {
    transform: rotate(0.5deg) !important;
  }
  
  .feature:nth-child(4) {
    transform: rotate(-1deg) !important;
  }
  
  /* Mantener rotaciones responsive después de animaciones AOS */
  .feature:nth-child(1)[data-aos].aos-animate {
    transform: rotate(1deg) !important;
  }
  
  .feature:nth-child(2)[data-aos].aos-animate {
    transform: rotate(-1.5deg) !important;
  }
  
  .feature:nth-child(3)[data-aos].aos-animate {
    transform: rotate(0.5deg) !important;
  }
  
  .feature:nth-child(4)[data-aos].aos-animate {
    transform: rotate(-1deg) !important;
  }

  .about__features {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    padding: 0;
  }

  .ecosystem__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
    padding-bottom: 60px;
  }

  .ecosystem__visuals {
    order: -1;
    margin-bottom: var(--spacing-lg);
    height: 600px;
    padding: 50px 0;
  }

  .ecosystem__visual--coin {
    top: 80px;
    left: 20px;
  }

  .ecosystem__visual--globe {
    top: 80px;
    right: 20px;
  }

  .ecosystem__img--coin {
    width: 300px;
  }

  .ecosystem__img--island {
    width: 350px;
  }

  .ecosystem__img--globe {
    width: 280px;
  }

  .ecosystem__img--main {
    width: 320px;
  }

  /* Mejorar alineación de puntos en tablets */
  .ecosystem__points {
    gap: var(--spacing-md);
  }

  .ecosystem__point {
    gap: 10px;
    align-items: flex-start;
  }

  .ecosystem__number {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    flex-shrink: 0;
  }

  .ecosystem__title {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
    line-height: 1.3;
  }

  .ecosystem__subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  /* Mejorar espaciado de títulos en tablets */
  .section-title {
    margin-bottom: var(--spacing-xl) !important;
  }

  /* Gallery Responsive for tablets */
  .gallery__item {
    width: 250px;
    height: 280px;
  }

  .gallery__label {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
  }

  .hero__nft {
    max-width: 280px;
  }

  /* Loading Screen Responsive */
  .loading-logo {
    width: 80px;
  }

  .loading-progress {
    width: 250px;
  }

  .loading-content {
    gap: 30px;
  }

  .section-title {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
    -webkit-text-stroke: 4px rgb(39, 14, 14);
    margin-bottom: var(--spacing-2xl) !important;
  }

  .hero__title-main {
    font-size: clamp(3.75rem, 12vw, 4.5rem);
    -webkit-text-stroke: 4px rgb(39, 14, 14);
    text-shadow: 0px 8px 12px rgba(0, 0, 0, 0.8), 2px 4px 0px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--spacing-md) !important;
  }

  .roadmap__title {
    -webkit-text-stroke: none;
  }

  /* Gallery Responsive */
  .gallery__auto-scroll {
    margin-top: var(--spacing-md);
  }

  .gallery__row {
    margin-bottom: var(--spacing-md);
  }

  .gallery__track {
    gap: var(--spacing-sm);
  }

  .gallery__item {
    width: 160px;
    height: 200px;
  }

  .gallery__label {
    font-size: 0.7rem;
    padding: 0.4rem 0.2rem;
  }

  /* Ajustar velocidad de animación en móviles */
  .gallery__row--top {
    animation: scroll-left-infinite 30s linear infinite;
  }

  .gallery__row--bottom {
    animation: scroll-right-infinite 30s linear infinite;
  }


  .vision__image,
  .business__visual,
  .merch__image {
    height: 344px;
  }

  .hero__nft--planet {
    max-width: 300px;
  }

  .hero__nft--main {
    max-width: 250px;
  }

  .about__features {
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
    padding: 0;
  }

  .ecosystem__container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }

  .ecosystem__visuals {
    order: -1;
    margin-bottom: var(--spacing-lg);
    height: 600px;
    padding: 50px 0;
  }

  .ecosystem__visual--coin {
    top: 80px;
    left: 20px;
  }

  .ecosystem__visual--globe {
    top: 80px;
    right: 20px;
  }

  .ecosystem__img--coin {
    width: 300px;
  }

  .ecosystem__img--island {
    width: 350px;
  }

  .ecosystem__img--globe {
    width: 280px;
  }

  .ecosystem__visual {
    transform: scale(0.8);
  }

  .ecosystem__img {
    width: 100px;
  }

  .ecosystem__visuals {
    height: 406px;
    padding: 30px 0;
  }

  .ecosystem__visual--coin {
    top: 60px;
    left: 10px;
  }

  .ecosystem__visual--globe {
    top: 60px;
    right: 10px;
  }

  .ecosystem__img--coin {
    width: 250px;
  }

  .ecosystem__img--island {
    width: 300px;
  }

  .ecosystem__img--globe {
    width: 220px;
  }

  .ecosystem__img--main {
    width: 280px;
  }

  /* Mejorar alineación de puntos en móviles */
  .ecosystem__points {
    margin-top: var(--spacing-2xl);
    gap: var(--spacing-md);
  }

  .ecosystem__point {
    gap: 8px;
    align-items: flex-start;
  }

  .ecosystem__number {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    flex-shrink: 0;
  }

  .ecosystem__title {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    line-height: 1.3;
  }

  .ecosystem__subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Espaciado adicional para el título en móviles */
  .ecosystem__content .section-title {
    margin-bottom: var(--spacing-lg);
  }

  /* Mejorar espaciado de otros títulos en móviles */
  .hero__title-main {
    margin-bottom: var(--spacing-lg) !important;
  }

  .hero__subtitle {        margin-bottom: 111px !important;
    /* text-align: center; */
    line-height: 1.6;
    text-align: center;
  }

  .vault__intro {
    margin-top: var(--spacing-md) !important;
  }

  .gallery__description {
    margin-top: var(--spacing-md) !important;
  }

  /* Centrado perfecto para FAQ en móviles */
  .faq__container {
    padding: 0 var(--spacing-xl);
    max-width: 500px;
    width: 100%;
  }

}


