/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Exo 2", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background: #0a0a0a;
  overflow-x: hidden;
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-rendering: optimizeLegibility;
}

h1 {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

h2 {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h3 {
  font-family: "Exo 2", "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.gradient-text {
  background: linear-gradient(135deg, #00CFFF 0%, #0040FF 50%, #A7EFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  animation: crystallinePulse 3s ease-in-out infinite alternate;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

@keyframes crystallinePulse {
  0% {
    filter: brightness(1) drop-shadow(0 0 10px rgba(0, 207, 255, 0.3));
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 20px rgba(0, 207, 255, 0.5));
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #ffffff;
}

.logo-icon {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
  animation: logoGlow 3s ease-in-out infinite alternate;
}

.logo-image {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
  animation: logoGlow 3s ease-in-out infinite alternate;
  border-radius: 50%;
  object-fit: cover;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.9))
      drop-shadow(0 0 30px rgba(91, 115, 255, 0.5));
  }
}

.logo-text {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00CFFF 0%, #0040FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-family: "Exo 2", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
}

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

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00CFFF, #0040FF);
  transition: width 0.3s ease;
}

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

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

.connect-wallet-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00CFFF 0%, #0040FF 100%);
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(0, 207, 255, 0.3);
}

.connect-wallet-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 207, 255, 0.3);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  z-index: 10000;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-toggle:hover::before {
  left: 100%;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 207, 255, 0.1);
  border-color: rgba(0, 207, 255, 0.3);
  transform: scale(1.05);
}

.mobile-menu-toggle span {
  width: 20px;
  height: 2px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 1px;
  position: relative;
  margin: 3px 0;
  transform-origin: center;
  display: block;
}

.mobile-menu-toggle.active {
  background: rgba(0, 207, 255, 0.15);
  border-color: rgba(0, 207, 255, 0.4);
  transform: scale(1.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
  background: #00CFFF;
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  background: #00CFFF;
}

/* Premium Mobile Navigation Menu */
.nav-menu.mobile-active {
  display: flex !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  background: rgba(5, 5, 10, 0.95);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 9999;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 2rem;
  opacity: 1;
  box-sizing: border-box;
}

/* Premium gradient overlay */
.nav-menu.mobile-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(91, 115, 255, 0.06) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 60%,
      rgba(156, 39, 176, 0.04) 0%,
      transparent 50%
    );
  z-index: -2;
}

/* Animated background particles */
.nav-menu.mobile-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      1px 1px at 20% 30%,
      rgba(0, 212, 255, 0.3),
      transparent
    ),
    radial-gradient(1px 1px at 40% 70%, rgba(91, 115, 255, 0.2), transparent),
    radial-gradient(1px 1px at 90% 40%, rgba(156, 39, 176, 0.2), transparent),
    radial-gradient(1px 1px at 70% 80%, rgba(0, 212, 255, 0.1), transparent);
  background-size: 100px 100px, 150px 150px, 120px 120px, 80px 80px;
  animation: floatingParticles 20s linear infinite;
  z-index: -1;
  opacity: 0.6;
}

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

@keyframes mobileMenuFadeIn {
  0% {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transform: scale(1);
  }
}

@keyframes mobileMenuFadeOut {
  0% {
    opacity: 1;
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transform: scale(0.95);
  }
}

/* Premium Mobile Menu Links */
.nav-menu.mobile-active .nav-link {
  display: block !important;
  font-size: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-width: 260px;
  width: 260px;
  max-width: 90vw;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(0);
  opacity: 1;
  overflow: hidden;
  margin: 0.75rem 0;
  flex-shrink: 0;
}

/* Shimmer effect on menu items */
.nav-menu.mobile-active .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nav-menu.mobile-active .nav-link:hover::before {
  left: 100%;
}

/* Gradient border effect */
.nav-menu.mobile-active .nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.2) 0%,
    rgba(91, 115, 255, 0.2) 100%
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: -1;
}

.nav-menu.mobile-active .nav-link:hover,
.nav-menu.mobile-active .nav-link.active {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15),
    0 0 0 1px rgba(0, 212, 255, 0.1);
  color: #00d4ff;
}

.nav-menu.mobile-active .nav-link:hover::after,
.nav-menu.mobile-active .nav-link.active::after {
  opacity: 1;
}

/* Stagger animation for menu items - handled by JavaScript */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile menu closing animation */
.nav-menu.mobile-closing {
  animation: mobileMenuFadeOut 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94)
    forwards;
}

.nav-menu.mobile-closing .nav-link {
  animation: slideOutDown 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideOutDown {
  to {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(
      ellipse at 30% 20%,
      rgba(0, 212, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(91, 115, 255, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at center,
      rgba(156, 39, 176, 0.1) 0%,
      transparent 70%
    ),
    linear-gradient(135deg, rgba(0, 5, 15, 1) 0%, rgba(5, 10, 25, 1) 100%);
  animation: cosmicPulse 8s ease-in-out infinite alternate;
}

@keyframes cosmicPulse {
  0% {
    background: radial-gradient(
        ellipse at 30% 20%,
        rgba(0, 212, 255, 0.3) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse at 70% 80%,
        rgba(91, 115, 255, 0.2) 0%,
        transparent 50%
      ),
      radial-gradient(
        ellipse at center,
        rgba(156, 39, 176, 0.1) 0%,
        transparent 70%
      ),
      linear-gradient(135deg, rgba(0, 5, 15, 1) 0%, rgba(5, 10, 25, 1) 100%);
  }
  100% {
    background: radial-gradient(
        ellipse at 30% 20%,
        rgba(0, 212, 255, 0.4) 0%,
        transparent 60%
      ),
      radial-gradient(
        ellipse at 70% 80%,
        rgba(91, 115, 255, 0.3) 0%,
        transparent 60%
      ),
      radial-gradient(
        ellipse at center,
        rgba(156, 39, 176, 0.2) 0%,
        transparent 80%
      ),
      linear-gradient(135deg, rgba(0, 10, 25, 1) 0%, rgba(10, 15, 35, 1) 100%);
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.4;
  animation: crystallineFloat 8s ease-in-out infinite;
  box-shadow: 0 0 100px currentColor;
  z-index: 1;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 207, 255, 1) 0%,
      rgba(0, 207, 255, 0.8) 30%,
      transparent 70%
    ),
    linear-gradient(135deg, #00CFFF 0%, #0040FF 100%);
  top: 5%;
  left: -15%;
  animation-delay: 0s;
  box-shadow: 0 0 150px rgba(0, 207, 255, 0.8);
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 64, 255, 1) 0%,
      rgba(0, 64, 255, 0.8) 30%,
      transparent 70%
    ),
    linear-gradient(135deg, #0040FF 0%, #A7EFFF 100%);
  top: 55%;
  right: -10%;
  animation-delay: 2s;
  box-shadow: 0 0 120px rgba(0, 64, 255, 0.8);
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(167, 239, 255, 1) 0%,
      rgba(167, 239, 255, 0.8) 30%,
      transparent 70%
    ),
    linear-gradient(135deg, #A7EFFF 0%, #00CFFF 100%);
  top: 25%;
  right: 15%;
  animation-delay: 4s;
  box-shadow: 0 0 100px rgba(167, 239, 255, 0.8);
}

@keyframes crystallineFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    opacity: 0.8;
  }
  25% {
    transform: translateY(-30px) rotate(90deg) scale(1.1);
    opacity: 1;
  }
  50% {
    transform: translateY(-15px) rotate(180deg) scale(1.05);
    opacity: 0.9;
  }
  75% {
    transform: translateY(-25px) rotate(270deg) scale(1.08);
    opacity: 1;
  }
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(0, 212, 255, 0.4), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(91, 115, 255, 0.4), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(156, 39, 176, 0.3), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: particles 20s linear infinite;
}

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

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.hero-content {
  z-index: 20;
  padding-left: 1rem;
  max-width: 600px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-icon {
  font-size: 1.2rem;
}

.hero-title {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  z-index: 25;
}

.title-line {
  display: block;
  margin-bottom: 0.3rem;
}

.title-line:last-child {
  margin-bottom: 0;
}

.title-line.gradient-text {
  font-size: 1.07em;
  font-weight: 900;
  margin: 0.2em 0 0.1em 0;
  letter-spacing: 0.05em;
}

.hero-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
  z-index: 25;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: left;
  flex: 1;
}

.stat-value {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00d4ff;
  font-family: "JetBrains Mono", "Space Grotesk", monospace;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-family: "Exo 2", sans-serif;
}

/* Mobile Hero One-liner */
.mobile-hero-oneliner {
  display: none;
}

.mobile-hero-oneliner h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  text-align: center;
  margin: 1.5rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.cta-primary,
.cta-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
}

.cta-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.5), 0 0 30px rgba(0, 212, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: powerPulse 3s ease-in-out infinite alternate;
}

.cta-primary::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #00d4ff, #5b73ff, #9c27b0, #00d4ff);
  border-radius: inherit;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: borderGlow 2s linear infinite;
}

.cta-primary:hover::after {
  opacity: 1;
}

.cta-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6),
    0 0 50px rgba(0, 212, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes powerPulse {
  0% {
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.5),
      0 0 30px rgba(0, 212, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.7),
      0 0 60px rgba(0, 212, 255, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
}

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

.cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(255, 255, 255, 0.05);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-primary svg,
.cta-secondary svg {
  width: 20px;
  height: 20px;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 5;
}

.token-showcase {
  position: relative;
  z-index: 8;
}

.token-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: tokenFloat 4s ease-in-out infinite;
  z-index: 8;
}

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

.token-icon {
  width: 80px;
  height: 80px;
}

.token-symbol {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.token-price {
  font-size: 2rem;
  font-weight: 800;
  color: #00d4ff;
  font-family: "JetBrains Mono", "Space Grotesk", monospace;
  letter-spacing: 0.05em;
}

.token-change {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}

.token-change.positive {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.floating-tokens {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mini-token {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  animation: miniFloat 3s ease-in-out infinite;
}

.token-1 {
  top: 20%;
  left: -20%;
  animation-delay: 0s;
}

.token-2 {
  top: 70%;
  left: -30%;
  animation-delay: 1s;
}

.token-3 {
  top: 10%;
  right: -25%;
  animation-delay: 2s;
}

.token-4 {
  top: 80%;
  right: -20%;
  animation-delay: 1.5s;
}

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

/* Wallet Analyzer Section */
.wallet-analyzer {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(15, 15, 25, 1) 50%,
    rgba(20, 20, 30, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

.wallet-analyzer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(91, 115, 255, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.analyzer-container {
  position: relative;
  z-index: 1;
}

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

.input-group {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 0.5rem;
  backdrop-filter: blur(20px);
}

.wallet-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  font-family: "JetBrains Mono", monospace;
  outline: none;
  border-radius: 12px;
}

.wallet-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.analyze-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.analyze-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.input-help {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.analyzer-results {
  margin-bottom: 4rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.result-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Enhanced Mobile-specific result card improvements */
@media (max-width: 768px) {
  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
  }

  .result-card {
    padding: 1.25rem;
    border-radius: 16px;
    margin-bottom: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
  }

  .card-header {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .card-header h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
  }

  /* Enhanced HexScore Card Mobile */
  .hexscore-card .score-badge {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .score-bar {
    height: 6px;
    margin-bottom: 0.75rem;
  }

  .score-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Enhanced Risk Card Mobile */
  .risk-card .risk-count {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .risk-list {
    gap: 0.5rem;
  }

  .risk-item {
    padding: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .risk-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* Enhanced Transaction Card Mobile */
  .transaction-card .tx-count {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .tx-stats {
    gap: 0.75rem;
  }

  .stat-item {
    padding: 0.5rem 0;
    min-height: 36px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .stat-label {
    font-size: 0.8rem;
    line-height: 1.3;
    flex: 1;
    text-align: left;
    max-width: 65%;
    word-wrap: break-word;
  }

  .stat-value {
    font-size: 0.85rem;
    line-height: 1.3;
    text-align: right;
    max-width: 35%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Enhanced Token Holdings Card Mobile */
  .tokens-card .token-count {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .token-list {
    gap: 0.75rem;
  }

  .token-item {
    padding: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .token-info {
    width: 100%;
  }

  .token-symbol {
    font-size: 0.85rem;
  }

  .token-name {
    font-size: 0.75rem;
  }

  .token-value {
    font-size: 0.85rem;
    align-self: flex-end;
    margin-top: 0.25rem;
  }

  /* Enhanced DApp Connections Card Mobile */
  .dapps-card .dapp-count {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .dapp-list {
    gap: 0.5rem;
  }

  .dapp-item {
    padding: 0.5rem;
  }

  .dapp-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .dapp-name {
    font-size: 0.85rem;
  }

  .dapp-status {
    font-size: 0.75rem;
    align-self: flex-end;
  }

  /* Enhanced Recommendations Card Mobile */
  .recommendations-card .rec-count {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
  }

  .recommendation-list {
    gap: 0.75rem;
  }

  .recommendation-item {
    padding: 0.75rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .rec-priority {
    font-size: 0.65rem;
    padding: 0.2rem 0.4rem;
  }

  .rec-text {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .rec-action {
    padding: 0.4rem 0.8rem;
    font-size: 0.75rem;
    align-self: flex-end;
    margin-top: 0.5rem;
  }
}

@media (max-width: 480px) {
  .results-grid {
    gap: 1rem;
    padding: 0 0.25rem;
  }

  .result-card {
    padding: 1rem;
    border-radius: 12px;
  }

  .card-header {
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
  }

  .card-header h3 {
    font-size: 1rem;
    line-height: 1.2;
  }

  /* Ultra-mobile optimizations */
  .hexscore-card .score-badge {
    font-size: 1.3rem;
  }

  .risk-item,
  .token-item,
  .dapp-item,
  .recommendation-item {
    padding: 0.4rem;
  }

  .stat-item {
    min-height: 32px;
    padding: 0.4rem 0;
  }

  .stat-label {
    font-size: 0.75rem;
    max-width: 60%;
  }

  .stat-value {
    font-size: 0.8rem;
    max-width: 40%;
  }

  .rec-action {
    padding: 0.35rem 0.7rem;
    font-size: 0.7rem;
  }
}

.result-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.result-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.result-card:hover::before {
  opacity: 1;
}

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

.card-header h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

/* HexScore Card */
.hexscore-card .score-badge {
  font-size: 2rem;
  font-weight: 800;
  color: #00d4ff;
  font-family: "JetBrains Mono", monospace;
}

.score-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.score-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff 0%, #5b73ff 100%);
  border-radius: 4px;
  transition: width 0.8s ease;
}

.score-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0;
}

/* Risk Card */
.risk-card .risk-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  font-family: "JetBrains Mono", monospace;
}

.risk-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.risk-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.02);
}

.risk-item.high {
  border-left: 3px solid #ff4444;
}

.risk-item.medium {
  border-left: 3px solid #ff6b35;
}

.risk-item.low {
  border-left: 3px solid #ffa500;
}

.risk-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

/* Transaction Card */
.transaction-card .tx-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5b73ff;
  font-family: "JetBrains Mono", monospace;
}

.tx-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  flex: 1;
  text-align: left;
  line-height: 1.4;
}

.stat-value {
  color: #ffffff;
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  text-align: right;
  white-space: nowrap;
  margin-left: 1rem;
}

/* Token Holdings Card */
.tokens-card .token-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c27b0;
  font-family: "JetBrains Mono", monospace;
}

.token-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.token-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.token-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.token-symbol {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9rem;
}

.token-name {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.token-value {
  font-weight: 600;
  color: #00d4ff;
  font-family: "JetBrains Mono", monospace;
}

/* DApp Connections Card */
.dapps-card .dapp-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #4caf50;
  font-family: "JetBrains Mono", monospace;
}

.dapp-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dapp-item {
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.dapp-item.safe {
  border-left: 3px solid #4caf50;
}

.dapp-item.warning {
  border-left: 3px solid #ff6b35;
}

.dapp-item.danger {
  border-left: 3px solid #ff4444;
}

.dapp-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dapp-name {
  color: #ffffff;
  font-weight: 500;
}

.dapp-status {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Recommendations Card */
.recommendations-card .rec-count {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b35;
  font-family: "JetBrains Mono", monospace;
}

.recommendation-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recommendation-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.recommendation-item.high {
  border-left: 3px solid #ff4444;
}

.recommendation-item.medium {
  border-left: 3px solid #ff6b35;
}

.recommendation-item.low {
  border-left: 3px solid #ffa500;
}

.rec-priority {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.recommendation-item.high .rec-priority {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
}

.recommendation-item.medium .rec-priority {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.recommendation-item.low .rec-priority {
  background: rgba(255, 165, 0, 0.2);
  color: #ffa500;
}

.rec-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.rec-action {
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rec-action:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 212, 255, 0.3);
}

/* Analyzer Actions */
.analyzer-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.action-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-size: 0.9rem;
}

.action-btn.primary {
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.action-btn.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.action-btn.tertiary {
  background: rgba(91, 115, 255, 0.1);
  color: #5b73ff;
  border: 1px solid rgba(91, 115, 255, 0.3);
}

.action-btn:hover {
  transform: translateY(-2px);
}

.action-btn.primary:hover {
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.4);
}

.action-btn svg {
  width: 16px;
  height: 16px;
}

/* Demo Section */
.demo-section {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.demo-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.demo-addresses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.demo-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}

.demo-address:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.demo-label {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.9rem;
}

.demo-addr {
  font-family: "JetBrains Mono", monospace;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.demo-score {
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  align-self: flex-start;
}

.demo-score.safe {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
}

.demo-score.warning {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
}

.demo-score.danger {
  background: rgba(255, 68, 68, 0.2);
  color: #ff4444;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .input-group {
    flex-direction: column;
    gap: 0.5rem;
  }

  .analyze-btn {
    justify-content: center;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .result-card {
    padding: 1.5rem;
  }

  .analyzer-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .action-btn {
    justify-content: center;
  }

  .demo-addresses {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Enhanced Transaction Analysis Mobile Layout */
  .tx-stats {
    gap: 1rem;
  }

  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    flex: 1;
    text-align: left;
  }

  .stat-value {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 600;
    font-family: "JetBrains Mono", monospace;
    text-align: right;
    white-space: nowrap;
  }

  /* Transaction Card Mobile Enhancements */
  .transaction-card .tx-count {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .transaction-card .card-header {
    margin-bottom: 1.5rem;
  }

  .transaction-card .card-header h3 {
    font-size: 1.2rem;
  }

  /* Better spacing for mobile transaction stats */
  .tx-stats .stat-item {
    min-height: 44px;
    padding: 0.875rem 0;
  }

  .tx-stats .stat-label {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .tx-stats .stat-value {
    font-size: 1rem;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .wallet-input {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .analyze-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  .result-card {
    padding: 1.25rem;
  }

  .card-header h3 {
    font-size: 1.1rem;
  }

  .recommendation-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .rec-action {
    align-self: flex-end;
  }

  /* Ultra-mobile transaction analysis fixes */
  .transaction-card .tx-count {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }

  .tx-stats .stat-item {
    min-height: 40px;
    padding: 0.75rem 0;
  }

  .tx-stats .stat-label {
    font-size: 0.85rem;
    line-height: 1.2;
    max-width: 60%;
  }

  .tx-stats .stat-value {
    font-size: 0.9rem;
    line-height: 1.2;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* Ensure proper text wrapping */
  .stat-label,
  .stat-value {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Better mobile card spacing */
  .result-card {
    padding: 1rem;
    margin-bottom: 1rem;
  }

  .card-header {
    margin-bottom: 1rem;
  }

  .card-header h3 {
    font-size: 1rem;
    line-height: 1.3;
  }
}

/* Section Styles */
section {
  padding: 6rem 0;
  position: relative;
}

/* About Us Section */
.about-us {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(15, 15, 25, 1) 100%
  );
  position: relative;
}

.about-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(91, 115, 255, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-description {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(91, 115, 255, 0.08);
  border: 1px solid rgba(91, 115, 255, 0.25);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  backdrop-filter: blur(15px);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Prevent section titles from breaking awkwardly on mobile */
@media (max-width: 768px) {
  .section-title {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
  }
}

@media (max-width: 480px) {
  .section-title {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    font-size: 2.2rem;
  }
}

@media (max-width: 320px) {
  .section-title {
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    font-size: 1.8rem;
  }
}

/* Prevent all gradient text from wrapping on mobile */
@media (max-width: 768px) {
  .section-title .gradient-text,
  .gradient-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    hyphens: none;
  }
}

@media (max-width: 480px) {
  .section-title .gradient-text,
  .gradient-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    hyphens: none;
  }
}

@media (max-width: 320px) {
  .section-title .gradient-text,
  .gradient-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: keep-all;
    hyphens: none;
  }
}

.section-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Features Section */
.features {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(20, 20, 30, 1) 100%
  );
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.5),
    transparent
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  color: #ffffff;
}

.feature-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.feature-description {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}

.feature-chains,
.feature-apy,
.feature-security,
.feature-governance,
.feature-metrics,
.feature-nft {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.chain-badge,
.security-badge,
.nft-collection,
.nft-benefit {
  background: rgba(0, 212, 255, 0.1);
  color: #00d4ff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.apy-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.apy-value {
  color: #4caf50;
  font-weight: 700;
  font-size: 1.1rem;
}

.governance-stat,
.metric {
  background: rgba(91, 115, 255, 0.1);
  color: #5b73ff;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(91, 115, 255, 0.3);
}

/* Tokenomics Section */
.tokenomics {
  background: radial-gradient(
    ellipse at center,
    rgba(91, 115, 255, 0.1) 0%,
    rgba(10, 10, 10, 1) 70%
  );
}

.tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.tokenomics-chart {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.tokenomics-chart::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 30%,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 70%,
      rgba(91, 115, 255, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}

.chart-container {
  width: 320px;
  height: 320px;
  max-width: 100%;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: conic-gradient(
    from 0deg,
    rgba(0, 212, 255, 0.2) 0deg,
    rgba(91, 115, 255, 0.2) 108deg,
    rgba(255, 107, 53, 0.2) 180deg,
    rgba(156, 39, 176, 0.2) 252deg,
    rgba(76, 175, 80, 0.2) 324deg,
    rgba(0, 212, 255, 0.2) 360deg
  );
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.6;
  z-index: -1;
  animation: chartGlow 4s ease-in-out infinite alternate;
}

@keyframes chartGlow {
  0% {
    opacity: 0.4;
    transform: scale(0.95);
  }
  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

#tokenomicsChart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

#tokenomicsChart:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.legend-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.legend-color {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.legend-color::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: inherit;
  border-radius: 8px;
  filter: blur(4px);
  opacity: 0.6;
  z-index: -1;
}

.legend-item .legend-label {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  flex: 1;
}

.legend-item .legend-percentage {
  font-weight: 600;
  color: #00d4ff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
}

.tokenomics-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.token-info-card,
.utility-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}

.token-info-card h3,
.utility-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

.token-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.detail-value {
  color: #ffffff;
  font-weight: 600;
}

.utility-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.utility-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.utility-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.utility-text strong {
  display: block;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.utility-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Token Purchase Section */
.buy-token {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(25, 15, 35, 1) 100%
  );
  position: relative;
  overflow: hidden;
}

.buy-token::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 212, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(156, 39, 176, 0.06) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.buy-token-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.token-purchase-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.token-purchase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.6),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.token-purchase-card:hover {
  transform: translateY(-8px) scale(1.01);
  background: rgba(0, 212, 255, 0.02);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 30px 80px rgba(0, 212, 255, 0.15);
}

.token-purchase-card:hover::before {
  opacity: 1;
}

.purchase-header {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.token-display {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.token-icon-large {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.token-details h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.token-price-display {
  font-size: 2.2rem;
  font-weight: 800;
  color: #00d4ff;
  font-family: "JetBrains Mono", monospace;
  margin-bottom: 0.5rem;
}

.price-change {
  font-size: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  display: inline-block;
}

.price-change.positive {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.purchase-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.purchase-stats .stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.purchase-stats .stat-item:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.purchase-stats .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.purchase-stats .stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #00d4ff;
  font-family: "JetBrains Mono", monospace;
}

.purchase-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.amount-selector label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.amount-input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.amount-input-group input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1rem;
  font-family: "JetBrains Mono", monospace;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.amount-input-group input:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.amount-input-group select {
  padding: 0.875rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.amount-input-group select:focus {
  outline: none;
  border-color: rgba(0, 212, 255, 0.5);
  background: rgba(0, 212, 255, 0.05);
}

.amount-presets {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.preset-btn {
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.preset-btn:hover,
.preset-btn.active {
  background: rgba(0, 212, 255, 0.08);
  border-color: rgba(0, 212, 255, 0.25);
  color: #00d4ff;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 212, 255, 0.15);
}

.purchase-summary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.summary-row:last-child {
  margin-bottom: 0;
}

.summary-row span:first-child {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.summary-row span:last-child {
  color: #ffffff;
  font-weight: 600;
  font-family: "JetBrains Mono", monospace;
}

.summary-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 1rem 0;
}

.summary-row.total {
  font-size: 1.2rem;
  font-weight: 700;
  padding-top: 1rem;
}

.summary-row.total span:last-child {
  color: #00d4ff;
  font-size: 1.3rem;
}

.purchase-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.buy-token-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  border: none;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.01em;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: 0 6px 24px rgba(0, 212, 255, 0.4);
}

.buy-token-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.buy-token-btn:hover::before {
  left: 100%;
}

.buy-token-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 212, 255, 0.4);
}

.buy-token-btn:active {
  transform: translateY(-2px) scale(1.01);
}

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

.btn-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #00d4ff, #5b73ff, #9c27b0);
  border-radius: 18px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.3s ease;
  z-index: -1;
}

.buy-token-btn:hover .btn-glow {
  opacity: 0.7;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.payment-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

.payment-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.payment-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.payment-icon:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-2px);
}

.purchase-benefits {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.purchase-benefits h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.2);
  transform: translateY(-2px);
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 12px;
}

.benefit-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.security-notice {
  display: flex;
  gap: 1rem;
  padding: 2rem;
  background: rgba(76, 175, 80, 0.05);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 16px;
  margin-top: 1rem;
}

.security-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  color: #4caf50;
}

.security-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #4caf50;
  margin-bottom: 0.5rem;
}

.security-content p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* How to Buy Section */
.how-to-buy-section {
  margin: 4rem 0;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.how-to-buy-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.how-to-buy-content h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

.buy-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
  justify-items: center;
}

.buy-steps .buy-step:nth-child(3) {
  grid-column: 1 / -1;
  max-width: 350px;
}

.buy-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.buy-step:hover {
  transform: translateY(-5px);
  background: rgba(0, 212, 255, 0.05);
  border-color: rgba(0, 212, 255, 0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.3);
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 0.95rem;
}

.contract-address-section {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 2rem;
  margin-top: 2rem;
}

.contract-address-section h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: "Space Grotesk", sans-serif;
}

.copy-ca-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 500px;
  margin: 0 auto 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.copy-ca-btn:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.copy-ca-btn:active {
  transform: translateY(0);
  background: rgba(0, 212, 255, 0.2);
}

.ca-text {
  flex: 1;
  text-align: left;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.copy-icon {
  font-size: 1.2rem;
  margin-left: 1rem;
  transition: transform 0.2s ease;
}

.copy-ca-btn:hover .copy-icon {
  transform: scale(1.1);
}

.copy-ca-btn.copied {
  background: rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.4);
}

.copy-ca-btn.copied .copy-icon {
  transform: scale(1.2);
}

.ca-note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin: 0;
  font-style: italic;
}

/* Mobile responsive for how-to-buy section */
@media (max-width: 768px) {
  .how-to-buy-section {
    margin: 2rem 0;
    padding: 2rem 0;
  }

  .how-to-buy-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .buy-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .buy-step {
    padding: 1.2rem;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .contract-address-section {
    padding: 1.5rem;
  }

  .copy-ca-btn {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 1.2rem;
  }

  .ca-text {
    text-align: center;
    word-break: break-all;
    font-size: 0.8rem;
  }

  .copy-icon {
    margin-left: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .buy-token-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .token-purchase-card {
    padding: 2rem;
  }

  .purchase-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .token-display {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .buy-token-content {
    gap: 2rem;
  }

  .token-purchase-card {
    padding: 1.5rem;
  }

  .purchase-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
  }

  .token-icon-large {
    width: 60px;
    height: 60px;
  }

  .token-details h3 {
    font-size: 1.5rem;
  }

  .token-price-display {
    font-size: 1.8rem;
  }

  .amount-input-group {
    flex-direction: column;
  }

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

  .buy-token-btn {
    padding: 1rem 1.2rem;
    font-size: 0.9rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .payment-icons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .benefits-grid {
    gap: 1rem;
  }

  .benefit-item {
    padding: 1rem;
    flex-direction: column;
    text-align: center;
  }

  .security-notice {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* Roadmap Section */
.roadmap {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(30, 20, 40, 1) 100%
  );
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #00d4ff 0%, #5b73ff 50%, #9c27b0 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 3px solid #00d4ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.timeline-item.completed .timeline-marker {
  border-color: #4caf50;
  background: rgba(76, 175, 80, 0.1);
}

.timeline-item.active .timeline-marker {
  border-color: #ff6b35;
  background: rgba(255, 107, 53, 0.1);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

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

.timeline-content {
  width: calc(50% - 40px);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-quarter {
  color: #00d4ff;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

.timeline-features {
  list-style: none;
  margin-bottom: 1.5rem;
}

.timeline-features li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.timeline-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #4caf50;
  font-weight: bold;
}

.timeline-status {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.timeline-status.completed {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.timeline-status.active {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.timeline-status.upcoming {
  background: rgba(91, 115, 255, 0.2);
  color: #5b73ff;
  border: 1px solid rgba(91, 115, 255, 0.3);
}

/* Community Section */
.community {
  background: radial-gradient(
    ellipse at center,
    rgba(156, 39, 176, 0.1) 0%,
    rgba(10, 10, 10, 1) 70%
  );
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(156, 39, 176, 0.3);
  box-shadow: 0 20px 40px rgba(156, 39, 176, 0.1);
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #9c27b0;
  font-family: "JetBrains Mono", "Space Grotesk", monospace;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

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

.community-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
}

.community-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.community-link.discord:hover {
  border-color: rgba(114, 137, 218, 0.5);
  box-shadow: 0 20px 40px rgba(114, 137, 218, 0.2);
}

.community-link.twitter:hover {
  border-color: rgba(29, 161, 242, 0.5);
  box-shadow: 0 20px 40px rgba(29, 161, 242, 0.2);
}

.community-link.telegram:hover {
  border-color: rgba(0, 136, 204, 0.5);
  box-shadow: 0 20px 40px rgba(0, 136, 204, 0.2);
}

.community-link.github:hover {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.link-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.link-icon svg {
  width: 24px;
  height: 24px;
}

.link-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.link-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 1) 0%,
    rgba(5, 5, 5, 1) 100%
  );
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6rem 0 3rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 6rem;
  margin-bottom: 4rem;
  align-items: start;
}

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

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

.footer-logo .logo-icon {
  width: 48px;
  height: 48px;
}

.footer-logo .logo-text {
  font-size: 2rem;
  font-weight: 800;
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 1rem;
}

.newsletter-section {
  margin-top: 1rem;
}

.newsletter-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: "Space Grotesk", sans-serif;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 4px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 1.5rem;
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  border-radius: 12px;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-button {
  background: linear-gradient(135deg, #9c27b0 0%, #5b73ff 100%);
  border: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
}

.newsletter-button:active {
  transform: translateY(0);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.footer-column h4 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: "Space Grotesk", sans-serif;
}

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

.footer-column a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
}

.footer-column a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #5b73ff);
  transition: width 0.3s ease;
}

.footer-column a:hover {
  color: #00d4ff;
  transform: translateX(5px);
}

.footer-column a:hover::before {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

/* Enhanced Desktop Styles - Premium Framer Feel */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
    padding: 0 3rem;
  }

  /* Enhanced Hero Section for Desktop */
  .hero-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    padding: 4rem 3rem;
    min-height: 100vh;
  }

  .hero-content {
    padding-left: 2rem;
    max-width: 700px;
  }

  .hero-title {
    font-family: "Orbitron", "Space Grotesk", sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: 580px;
    color: rgba(255, 255, 255, 0.85);
  }

  .hero-stats {
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .stat-item {
    padding: 1.5rem 0;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.05),
      transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .stat-item:hover::before {
    left: 100%;
  }

  .stat-item:hover {
    transform: translateY(-5px) scale(1.02);
    background: rgba(0, 212, 255, 0.03);
    border-color: rgba(0, 212, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.1);
  }

  .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 1rem;
    font-weight: 500;
  }

  /* Enhanced Hero Actions */
  .hero-actions {
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .cta-primary,
  .cta-secondary {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .cta-primary::after,
  .cta-secondary::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .cta-primary:hover::after,
  .cta-secondary:hover::after {
    opacity: 1;
  }

  .cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 212, 255, 0.4);
  }

  .cta-secondary:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(255, 255, 255, 0.1);
  }

  /* Enhanced Token Visual */
  .hero-visual {
    position: relative;
    padding: 2rem;
  }

  .token-card {
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .token-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 40px 100px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.2);
  }

  .token-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 1.5rem;
  }

  .token-symbol {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .token-price {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  /* Enhanced Floating Tokens */
  .mini-token {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .mini-token:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1600px;
    padding: 0 4rem;
  }

  .hero-container {
    gap: 8rem;
    padding: 6rem 4rem;
  }

  .hero-title {
    font-family: "Orbitron", "Space Grotesk", sans-serif;
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: -0.01em;
    text-transform: uppercase;
  }

  .hero-description {
    font-size: 1.4rem;
    max-width: 620px;
  }
}

/* Enhanced Section Styles for Desktop */
@media (min-width: 1024px) {
  section {
    padding: 8rem 0;
  }

  .section-header {
    margin-bottom: 5rem;
  }

  .section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
  }

  .section-description {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.85);
  }

  .section-badge {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .section-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(91, 115, 255, 0.2);
  }
}

/* Enhanced Features Grid for Desktop */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
  }

  .feature-card {
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.6),
      transparent
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .feature-card::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(0, 212, 255, 0.03) 0%,
      transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
  }

  .feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(0, 212, 255, 0.02);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.15);
  }

  .feature-card:hover::before {
    opacity: 1;
  }

  .feature-card:hover::after {
    opacity: 1;
  }

  .feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .feature-card:hover .feature-icon {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
  }

  .feature-icon svg {
    width: 36px;
    height: 36px;
  }

  .feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
  }

  .feature-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
  }
}

@media (min-width: 1200px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .feature-card:nth-child(4),
  .feature-card:nth-child(5),
  .feature-card:nth-child(6) {
    grid-column: span 1;
  }
}

/* Enhanced Tokenomics for Desktop */
@media (min-width: 1024px) {
  .tokenomics-content {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
  }

  .tokenomics-chart {
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .tokenomics-chart:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 0 30px 80px rgba(91, 115, 255, 0.15);
    border-color: rgba(91, 115, 255, 0.2);
  }

  .chart-container {
    width: 400px;
    height: 400px;
    margin-bottom: 2.5rem;
  }

  .legend-item {
    padding: 1rem 1.5rem;
    border-radius: 16px;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .legend-item:hover {
    transform: translateX(8px) scale(1.02);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .token-info-card,
  .utility-card {
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .token-info-card:hover,
  .utility-card:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  }
}

/* Enhanced Community Section for Desktop */
@media (min-width: 1024px) {
  .community-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
  }

  .stat-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .stat-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(156, 39, 176, 0.05) 0%,
      transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
  }

  .stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(156, 39, 176, 0.02);
    border-color: rgba(156, 39, 176, 0.2);
    box-shadow: 0 30px 80px rgba(156, 39, 176, 0.15);
  }

  .stat-card:hover::before {
    opacity: 1;
  }

  .stat-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .stat-card:hover .stat-icon {
    transform: scale(1.1) translateY(-5px);
  }

  .stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
  }

  .community-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .community-link {
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .community-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.05),
      transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .community-link:hover::before {
    left: 100%;
  }

  .community-link:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  }

  .link-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .community-link:hover .link-icon {
    transform: scale(1.1) translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
  }

  .link-icon svg {
    width: 32px;
    height: 32px;
  }

  .link-content h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .link-content p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* Medium Screen Navigation Fix */
@media (max-width: 1200px) and (min-width: 769px) {
  .nav-menu {
    gap: 1.8rem;
  }

  .nav-actions {
    gap: 1.5rem;
  }

  .nav-container {
    padding: 1rem 1.5rem;
  }
}

/* Specific fix for 70% window width issue */
@media (max-width: 1100px) and (min-width: 900px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .nav-link {
    font-size: 0.85rem;
    padding: 0.5rem 0;
  }

  .connect-wallet-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }

  .nav-actions {
    gap: 1.2rem;
  }
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    padding: 2rem;
    min-height: 90vh;
    justify-content: center;
  }

  .hero-content {
    padding-left: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    text-align: center;
  }

  .hero-description {
    max-width: 600px;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .chart-container {
    width: clamp(200px, 60vw, 300px);
    height: clamp(200px, 60vw, 300px);
    margin: 0 auto;
  }

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

  .community-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  /* Prevent horizontal overflow */
  html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    min-height: 100vh;
  }
  
  .nav-menu:not(.mobile-active) {
    display: none !important;
  }

  .nav-menu.mobile-active {
    display: flex !important;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    padding: 3rem 1rem;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100vw;
    max-width: 100vw;
  }

  .nav-menu.mobile-active .nav-link {
    display: block !important;
    visibility: visible !important;
    width: 240px;
    min-width: 240px;
    max-width: 85vw;
    padding: 1rem 1.5rem;
    margin: 0.5rem 0;
    font-size: 1.1rem;
    flex-shrink: 0;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .nav-container {
    padding: 0.75rem 1rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
  }

  .connect-wallet-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    border-radius: 10px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .connect-wallet-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.2),
      transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .connect-wallet-btn:active::before {
    left: 100%;
  }

  .connect-wallet-btn:active {
    transform: scale(0.98);
    background: rgba(0, 212, 255, 0.15);
    border-color: rgba(0, 212, 255, 0.4);
  }

  /* Hero Section Mobile - Ultra Premium Enhancement */
  .hero {
    min-height: 85vh;
    min-height: calc(var(--vh, 1vh) * 85);
    padding-top: 70px;
    position: relative;
    background:
      radial-gradient(
        ellipse at 50% 10%,
        rgba(0, 207, 255, 0.2) 0%,
        rgba(0, 207, 255, 0.08) 30%,
        transparent 60%
      ),
      radial-gradient(
        ellipse at 20% 80%,
        rgba(0, 64, 255, 0.15) 0%,
        rgba(0, 64, 255, 0.04) 40%,
        transparent 70%
      ),
      radial-gradient(
        ellipse at 80% 60%,
        rgba(167, 239, 255, 0.12) 0%,
        rgba(167, 239, 255, 0.02) 50%,
        transparent 80%
      ),
      linear-gradient(135deg,
        rgba(10, 15, 28, 1) 0%,
        rgba(5, 10, 20, 1) 50%,
        rgba(0, 5, 15, 1) 100%
      );
    overflow: hidden;
    position: relative;
  }

  /* Hide hero badge on mobile */
  .hero-badge {
    display: none;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(2px 2px at 20% 15%, rgba(0, 207, 255, 0.8), transparent),
      radial-gradient(1px 1px at 80% 25%, rgba(167, 239, 255, 0.6), transparent),
      radial-gradient(3px 3px at 30% 70%, rgba(0, 64, 255, 0.4), transparent),
      radial-gradient(1px 1px at 70% 80%, rgba(255, 255, 255, 0.9), transparent),
      radial-gradient(2px 2px at 15% 60%, rgba(0, 207, 255, 0.5), transparent),
      radial-gradient(1px 1px at 85% 45%, rgba(167, 239, 255, 0.7), transparent),
      radial-gradient(2px 2px at 50% 30%, rgba(255, 255, 255, 0.8), transparent);
    background-size: 120px 150px, 80px 100px, 140px 180px, 60px 80px, 100px 130px, 90px 110px, 70px 90px;
    animation: crystallineParticles 30s linear infinite;
    opacity: 0.9;
    z-index: 1;
  }

  @keyframes crystallineParticles {
    0% {
      transform: translateY(0px) rotate(0deg) scale(1);
      opacity: 0.9;
    }
    25% {
      transform: translateY(-30px) rotate(90deg) scale(1.1);
      opacity: 1;
    }
    50% {
      transform: translateY(-60px) rotate(180deg) scale(0.9);
      opacity: 0.8;
    }
    75% {
      transform: translateY(-90px) rotate(270deg) scale(1.05);
      opacity: 1;
    }
    100% {
      transform: translateY(-120px) rotate(360deg) scale(1);
      opacity: 0.9;
    }
  }

  .hero-container {
    padding: 1rem 1.25rem;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: calc(85vh - 70px);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Hide hero visual on mobile */
  .hero-visual {
    display: none;
  }

  .hero-content {
    padding-left: 0;
    text-align: center;
    position: relative;
  }

  /* Ultra Premium Hero Badge */
  .hero-badge {
    font-size: 0.8rem;
    padding: 0.6rem 1.2rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,
      rgba(0, 207, 255, 0.12) 0%,
      rgba(167, 239, 255, 0.08) 50%,
      rgba(0, 64, 255, 0.1) 100%
    );
    border: 1px solid transparent;
    background-clip: padding-box;
    border-radius: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
      0 8px 25px rgba(0, 207, 255, 0.2),
      0 0 40px rgba(167, 239, 255, 0.15),
      inset 0 1px 0 rgba(255, 255, 255, 0.2),
      inset 0 -1px 0 rgba(0, 207, 255, 0.15);
    animation: crystallineBadgePulse 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
  }

  .hero-badge::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg,
      #00CFFF 0%,
      #A7EFFF 25%,
      #0040FF 50%,
      #00CFFF 75%,
      #A7EFFF 100%
    );
    border-radius: 50px;
    z-index: -1;
    animation: crystallineBorder 3s linear infinite;
  }

  .hero-badge::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );
    animation: crystallineShimmer 2.5s infinite;
  }

  @keyframes crystallineBadgePulse {
    0%, 100% {
      box-shadow:
        0 12px 40px rgba(0, 207, 255, 0.3),
        0 0 60px rgba(167, 239, 255, 0.2),
        inset 0 2px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 207, 255, 0.2);
      transform: scale(1);
    }
    50% {
      box-shadow:
        0 16px 60px rgba(0, 207, 255, 0.5),
        0 0 100px rgba(167, 239, 255, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.4),
        inset 0 -1px 0 rgba(0, 207, 255, 0.3);
      transform: scale(1.02);
    }
  }

  @keyframes crystallineBorder {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 200% 50%;
    }
  }

  @keyframes crystallineShimmer {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }

  /* Ultra Premium Hero Title */
  .hero-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    letter-spacing: -0.015em;
    position: relative;
    animation: crystallineTitleGlow 5s ease-in-out infinite alternate;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-weight: 900;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    white-space: nowrap;
  }

  .hero-title::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(
      ellipse at center,
      rgba(0, 207, 255, 0.2) 0%,
      rgba(167, 239, 255, 0.1) 30%,
      rgba(0, 64, 255, 0.05) 60%,
      transparent 100%
    );
    border-radius: 30px;
    opacity: 0;
    animation: crystallineTitleAura 8s ease-in-out infinite;
    z-index: -2;
  }

  .hero-title::after {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(
      45deg,
      rgba(0, 207, 255, 0.1) 0%,
      rgba(167, 239, 255, 0.15) 25%,
      rgba(255, 255, 255, 0.1) 50%,
      rgba(0, 64, 255, 0.1) 75%,
      rgba(0, 207, 255, 0.1) 100%
    );
    border-radius: 25px;
    opacity: 0;
    animation: crystallineTitleShimmer 6s ease-in-out infinite;
    z-index: -1;
  }

  @keyframes crystallineTitleGlow {
    0% {
      filter: drop-shadow(0 0 15px rgba(0, 207, 255, 0.4))
             drop-shadow(0 0 30px rgba(167, 239, 255, 0.2));
      transform: scale(1);
    }
    100% {
      filter: drop-shadow(0 0 25px rgba(0, 207, 255, 0.7))
             drop-shadow(0 0 50px rgba(167, 239, 255, 0.4))
             drop-shadow(0 0 80px rgba(255, 255, 255, 0.1));
      transform: scale(1.01);
    }
  }

  @keyframes crystallineTitleAura {
    0%, 100% {
      opacity: 0;
      transform: scale(0.95) rotate(0deg);
    }
    25% {
      opacity: 0.4;
      transform: scale(1.02) rotate(1deg);
    }
    50% {
      opacity: 0.6;
      transform: scale(1.05) rotate(0deg);
    }
    75% {
      opacity: 0.3;
      transform: scale(1.03) rotate(-1deg);
    }
  }

  @keyframes crystallineTitleShimmer {
    0%, 100% {
      opacity: 0;
      background-position: -200% 0;
    }
    50% {
      opacity: 0.8;
      background-position: 200% 0;
    }
  }

  .title-line {
    display: block;
    margin-bottom: 0.15rem;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .title-line:nth-child(1) {
    animation-delay: 0.2s;
  }
  .title-line:nth-child(2) {
    animation-delay: 0.4s;
  }
  .title-line:nth-child(3) {
    animation-delay: 0.6s;
  }
  .title-line:nth-child(4) {
    animation-delay: 0.8s;
  }

  .title-line.gradient-text {
    font-size: 1.2em;
    font-weight: 900;
    margin: 0.25em 0 0.15em 0;
    line-height: 1.1;
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 50%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .title-line.gradient-text::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 50%, #9c27b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(2px);
    opacity: 0.7;
    z-index: -1;
  }

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

  /* Enhanced Mobile One-liner */
  .mobile-hero-oneliner {
    display: block !important;
    margin: 2rem 0;
    position: relative;
    animation: oneLineSlide 1s ease-out 0.8s forwards;
    opacity: 0;
    transform: translateY(20px);
  }

  .mobile-hero-oneliner h2 {
    font-family: "Orbitron", "Space Grotesk", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #00d4ff;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: textPulse 3s ease-in-out infinite;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .mobile-hero-oneliner h2::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(
      45deg,
      rgba(0, 212, 255, 0.1),
      rgba(91, 115, 255, 0.05)
    );
    border-radius: 15px;
    opacity: 0;
    animation: textAura 4s ease-in-out infinite;
    z-index: -1;
  }

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

  @keyframes textPulse {
    0%,
    100% {
      filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.6));
    }
    50% {
      filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.8));
    }
  }

  @keyframes textAura {
    0%,
    100% {
      opacity: 0;
      transform: scale(1);
    }
    50% {
      opacity: 0.3;
      transform: scale(1.1);
    }
  }

  .hero-description {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.5;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

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

  .section-description {
    font-size: 1rem;
  }

  /* Stats Mobile - Removed to reduce crowding */
  .hero-stats {
    display: none;
  }

  /* Futuristic Actions Mobile */
  .hero-actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    animation: actionsSlide 1.2s ease-out 1s forwards;
    opacity: 0;
    transform: translateY(30px);
    flex-wrap: wrap;
  }

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

  .cta-primary,
  .cta-secondary {
    padding: 0.6rem 1rem;
    justify-content: center;
    flex: 1;
    max-width: 130px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    min-height: 40px;
    touch-action: manipulation;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /* Enhanced Primary CTA */
  .cta-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4),
      0 0 0 1px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: primaryPulse 3s ease-in-out infinite;
  }

  .cta-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent
    );
    animation: primaryShimmer 2s infinite;
  }

  .cta-primary::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #00d4ff, #5b73ff, #9c27b0);
    border-radius: 18px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
  }

  .cta-primary:active {
    transform: scale(0.98);
    box-shadow: 0 4px 16px rgba(0, 212, 255, 0.6),
      inset 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  @keyframes primaryPulse {
    0%,
    100% {
      box-shadow: 0 8px 32px rgba(0, 212, 255, 0.4),
        0 0 0 1px rgba(0, 212, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    }
    50% {
      box-shadow: 0 12px 48px rgba(0, 212, 255, 0.6),
        0 0 0 2px rgba(0, 212, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
  }

  @keyframes primaryShimmer {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }

  /* Enhanced Secondary CTA */
  .cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
      inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
  }

  .cta-secondary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    animation: secondaryShimmer 3s infinite;
  }

  .cta-secondary:active {
    transform: scale(0.98);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4),
      inset 0 2px 4px rgba(0, 0, 0, 0.2);
  }

  @keyframes secondaryShimmer {
    0% {
      left: -100%;
    }
    100% {
      left: 100%;
    }
  }

  /* Button Icons Enhancement */
  .cta-primary svg,
  .cta-secondary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }

  .cta-primary:active svg,
  .cta-secondary:active svg {
    transform: translateX(3px);
  }

  /* Token Visual Mobile */
  .token-card {
    padding: 1.5rem;
  }

  .token-icon {
    width: 60px;
    height: 60px;
  }

  .token-symbol {
    font-size: 1.2rem;
  }

  .token-price {
    font-size: 1.5rem;
  }

  /* Sections Mobile */
  section {
    padding: 4rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* About Us Mobile */
  .about-description {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 1rem;
  }

  .section-header {
    margin-bottom: 3rem;
  }

  .section-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  /* Features Mobile */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }

  .feature-card {
    padding: 1.5rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }

  .feature-title {
    font-size: 1.3rem;
  }

  /* Tokenomics Mobile */
  .chart-container {
    width: 280px;
    height: 280px;
  }

  .legend-item {
    padding: 0.6rem 0.8rem;
    font-size: 0.9rem;
  }

  .legend-color {
    width: 16px;
    height: 16px;
  }

  .token-info-card,
  .utility-card {
    padding: 1.5rem;
  }

  /* Roadmap Mobile */
  .roadmap-timeline::before {
    left: 25px;
    width: 3px;
  }

  .timeline-item {
    flex-direction: row !important;
    align-items: flex-start;
    margin-bottom: 3rem;
    padding-left: 70px;
    position: relative;
  }

  .timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    transform: none;
    width: 50px;
    height: 50px;
    margin-top: 0;
  }

  .timeline-content {
    width: 100%;
    margin: 0 !important;
    padding: 1.5rem;
    margin-left: 0 !important;
  }

  .marker-icon {
    font-size: 1.2rem;
  }

  .timeline-title {
    font-size: 1.3rem;
  }

  /* Community Mobile */
  .community-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-icon {
    font-size: 2rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .community-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .community-link {
    padding: 1.5rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 4rem 0 2rem;
    display: block !important;
    visibility: visible !important;
    position: relative;
    z-index: 10;
    width: 100%;
    min-height: auto;

  }

  .footer-content {
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    margin-bottom: 3rem;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
  }

  .footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
  }

  .footer-tagline {
    font-size: 1.1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    max-width: 100%;
    margin-bottom: 1rem;
  }

  .newsletter-section {
    margin-top: 0;
  }

  .newsletter-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
  }

  .newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 100%;
    background: transparent;
    border: none;
    border-radius: 16px;
    padding: 0;
  }

  .newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    color: #ffffff;
    font-size: 1rem;
    outline: none;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
  }

  .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }

  .newsletter-button {
    background: linear-gradient(135deg, #9c27b0 0%, #5b73ff 100%);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-height: 48px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 100%;
  }

  .footer-column {
    width: 100%;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: "Exo 2", sans-serif;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

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

  .footer-column a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
  }

  .footer-column a:hover {
    color: #00d4ff;
    transform: translateX(5px);
  }

  .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
  }

  /* Comprehensive mobile overflow prevention */
  *, *::before, *::after {
    max-width: 100%;
    box-sizing: border-box;
  }

  .container,
  .hero-container,
  .nav-container,
  .section-header,
  .features-grid,
  .tokenomics-content,
  .roadmap-timeline,
  .footer-content,
  .buy-token-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Ensure footer is always visible on mobile */
  .footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 100 !important;
    clear: both;
    margin-top: 2rem;
  }

  /* Prevent text overflow */
  h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
  }

  /* Prevent image overflow */
  img, svg, video {
    max-width: 100%;
    height: auto;
  }

  /* Prevent button overflow */
  button, .btn, .cta-primary, .cta-secondary {
    max-width: 100%;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-container {
    padding: 0.8rem 1rem;
    max-width: 100%;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .connect-wallet-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.75rem;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /* Hero Ultra Mobile */
  .hero {
    min-height: 80vh;
    padding-top: 65px;
  }

  .hero-container {
    padding: 0.8rem;
    gap: 1.2rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .title-line {
    margin-bottom: 0.1rem;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .title-line.gradient-text {
    font-size: 1.05em;
    font-weight: 900;
    margin: 0.1em 0 0.05em 0;
    line-height: 1.15;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
  }

  /* Stats Ultra Mobile - Hidden to reduce crowding */
  .hero-stats {
    display: none;
  }

  /* Actions Ultra Mobile */
  .cta-primary,
  .cta-secondary {
    padding: 0.5rem 0.8rem;
    font-size: 0.65rem;
    max-width: 110px;
    min-height: 38px;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /* Sections Ultra Mobile */
  section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

  .section-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }

  .section-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .section-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  /* Features Ultra Mobile */
  .feature-card {
    padding: 1.2rem;
  }

  .feature-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 0.8rem;
  }

  .feature-title {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .feature-description {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  /* Tokenomics Ultra Mobile */
  .chart-container {
    width: 240px;
    height: 240px;
    margin-bottom: 1.5rem;
  }

  .legend-item {
    padding: 0.5rem 0.6rem;
    font-size: 0.8rem;
    gap: 0.8rem;
  }

  .legend-color {
    width: 14px;
    height: 14px;
  }

  .token-info-card,
  .utility-card {
    padding: 1.2rem;
  }

  /* Community Ultra Mobile */
  .community-stats {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .stat-card {
    padding: 1.2rem;
  }

  .stat-icon {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .community-link {
    padding: 1.2rem;
    gap: 0.8rem;
  }

  .link-icon {
    width: 40px;
    height: 40px;
  }

  .link-content h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
  }

  .link-content p {
    font-size: 0.8rem;
  }

  /* Footer Ultra Mobile */
  .footer {
    padding: 2.5rem 0 1.5rem;
  }

  .footer-content {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-description {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .footer-social {
    gap: 0.8rem;
  }

  .social-link {
    width: 35px;
    height: 35px;
  }

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

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: "Exo 2", sans-serif;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-transform: uppercase;
  }

  .footer-column a {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .footer-bottom {
    padding-top: 1.5rem;
    gap: 0.8rem;
  }

  .footer-copyright,
  .footer-disclaimer {
    font-size: 0.8rem;
    line-height: 1.4;
  }
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

.slide-in-left {
  animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-out;
}

/* CSS Variables for mobile */
:root {
  --vh: 1vh;
  --animation-duration: 0.6s;
}

/* Touch device optimizations */
.touch-device .feature-card:hover,
.touch-device .stat-card:hover,
.touch-device .community-link:hover {
  transform: none;
}

.touch-device .cta-primary:hover,
.touch-device .cta-secondary:hover,
.touch-device .connect-wallet-btn:hover {
  transform: none;
}

/* Mobile Touch Optimizations */
@media (max-width: 768px) {
  /* Use viewport height variable */
  .hero {
    min-height: calc(var(--vh, 1vh) * 100);
  }

  /* Touch-friendly button sizes */
  button,
  .nav-link,
  .cta-primary,
  .cta-secondary,
  .connect-wallet-btn {
    min-height: 44px;
    min-width: 44px;
  }

  /* Improved touch targets */
  .legend-item,
  .community-link,
  .social-link {
    min-height: 44px;
  }

  /* Prevent zoom on input focus */
  input,
  select,
  textarea {
    font-size: 16px;
  }

  /* Smooth scrolling for mobile */
  html {
    -webkit-overflow-scrolling: touch;
  }

  /* Prevent text selection on UI elements */
  .nav-link,
  .cta-primary,
  .cta-secondary,
  .connect-wallet-btn,
  .feature-card,
  .stat-card {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  /* Optimize tap highlighting */
  * {
    -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
  }

  /* Reduce motion for better performance */
  .gradient-orb {
    animation-duration: 8s;
  }

  .floating-particles {
    animation-duration: 30s;
  }

  /* Optimize backdrop filters for mobile */
  .navbar,
  .feature-card,
  .token-card,
  .tokenomics-chart,
  .timeline-content {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }
}

/* Landscape Mobile Optimizations */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
    padding-top: 60px;
  }

  .hero-container {
    gap: 1.5rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
  }

  section {
    padding: 3rem 0;
  }
}

/* Very Small Screens (320px and below) */
@media (max-width: 320px) {
  .container {
    padding: 0 0.8rem;
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav-container {
    padding: 0.6rem 0.8rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -0.005em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .title-line {
    margin-bottom: 0.08rem;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .title-line.gradient-text {
    font-size: 1.05em;
    font-weight: 900;
    margin: 0.1em 0 0.05em 0;
    line-height: 1.2;
    word-break: keep-all;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

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

  .chart-container {
    width: 200px;
    height: 200px;
  }

  .feature-card,
  .stat-card,
  .community-link,
  .token-info-card,
  .utility-card {
    padding: 1rem;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d4ff 0%, #5b73ff 100%);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5b73ff 0%, #9c27b0 100%);
}

/* Mobile scrollbar */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 4px;
  }
}

/* Selection */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: #ffffff;
}

::-moz-selection {
  background: rgba(0, 212, 255, 0.3);
  color: #ffffff;
}

/* Framer Motion Style Enhancements */
.framer-fluid {
  will-change: transform, opacity;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Enhanced Magnetic Hover Effects */
.magnetic-hover {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: none;
}

.magnetic-hover:hover {
  transform: scale(1.02) translateZ(0);
}

/* Fluid Button Animations */
.cta-primary,
.cta-secondary,
.connect-wallet-btn {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.cta-primary::before,
.cta-secondary::before,
.connect-wallet-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-primary:hover::before,
.cta-secondary:hover::before,
.connect-wallet-btn:hover::before {
  left: 100%;
}

/* Enhanced Card Animations */
.feature-card,
.stat-card,
.community-link,
.token-card {
  transform: translateY(50px) scale(0.95);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
}

.feature-card.animate-in,
.stat-card.animate-in,
.community-link.animate-in,
.token-card.animate-in {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Micro-interactions for better UX */
.nav-link {
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.1),
    transparent
  );
  transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover::before {
  left: 100%;
}

/* Enhanced Floating Animations */
@keyframes floatEnhanced {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-8px) rotate(1deg) scale(1.01);
  }
  50% {
    transform: translateY(-5px) rotate(0deg) scale(1.02);
  }
  75% {
    transform: translateY(-12px) rotate(-1deg) scale(1.01);
  }
}

.token-card {
  animation: floatEnhanced 6s ease-in-out infinite;
}

/* Stagger Animation Classes */
.stagger-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger-item:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-item:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger-item:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger-item:nth-child(5) {
  transition-delay: 0.5s;
}
.stagger-item:nth-child(6) {
  transition-delay: 0.6s;
}

.stagger-item.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Gradient Orbs with Better Performance */
.gradient-orb {
  will-change: transform;
  transform: translateZ(0);
}

/* Smooth Page Transitions */
body {
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Enhanced Mobile Menu Animation */
.nav-menu.mobile-active .nav-link {
  animation: slideInFromRight 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes slideInFromRight {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Enhanced Tokenomics Chart Container */
.tokenomics-chart {
  position: relative;
}

.tokenomics-chart::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(
    circle,
    rgba(0, 212, 255, 0.1) 0%,
    transparent 70%
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  z-index: -1;
}

.tokenomics-chart:hover::after {
  opacity: 1;
}

/* Enhanced Timeline Animations */
.timeline-item {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-item:nth-child(even) {
  transform: translateX(50px);
}

.timeline-item.animate-in {
  opacity: 1;
  transform: translateX(0);
}

/* Fluid Loading States */
.loading-shimmer {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

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

/* Enhanced Cursor Styles */
* {
  cursor: none;
}

a,
button,
.clickable {
  cursor: none;
}

/* Disable cursor on mobile */
@media (max-width: 768px) {
  * {
    cursor: auto !important;
  }

  a,
  button,
  .clickable {
    cursor: pointer !important;
  }
}

/* Performance Optimizations */
.gpu-accelerated {
  transform: translateZ(0);
  will-change: transform;
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .gradient-orb {
    animation: none !important;
  }

  .floating-particles {
    animation: none !important;
  }
}

/* Enhanced Focus States for Accessibility */
button:focus-visible,
a:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid #00d4ff;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Smooth Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #00d4ff 0%, #5b73ff 100%);
  border-radius: 4px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #5b73ff 0%, #9c27b0 100%);
}

/* Enhanced Mobile Optimizations */
@media (max-width: 768px) {
  .feature-card,
  .stat-card,
  .community-link,
  .token-card {
    transform: translateY(30px) scale(0.98);
  }

  .magnetic-hover:hover {
    transform: none;
  }

  /* Touch-friendly interactions */
  .cta-primary,
  .cta-secondary,
  .connect-wallet-btn {
    min-height: 48px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
  }

  .cta-primary:active,
  .cta-secondary:active {
    transform: scale(0.98);
    transition: transform 0.1s ease-out;
  }

  /* Enhanced mobile navbar */
  .navbar {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-container {
    padding: 0.75rem 1rem;
  }

  .logo-text {
    font-size: 1.25rem;
  }

  /* Mobile-optimized hero section */
  .hero-title {
    font-size: 2.25rem;
    line-height: 1.1;
  }

  .hero-description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .stat-item {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    width: 100%;
    max-width: 200px;
  }

  /* Mobile-friendly cards */
  .feature-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
  }

  /* Optimize scroll performance */
  * {
    -webkit-overflow-scrolling: touch;
  }

  /* Reduce motion for better performance */
  .gradient-orb {
    animation-duration: 8s;
    will-change: transform;
  }

  /* Mobile-specific animations */
  @keyframes mobileSlideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .animate-on-scroll.animated {
    animation: mobileSlideUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

/* Ultra-smooth transitions for premium feel */
.premium-transition {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Add to all interactive elements */
button,
a,
.feature-card,
.stat-card,
.community-link,
.nav-link {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Premium Desktop Enhancements */
@media (min-width: 1024px) {
  /* Enhanced Navigation for Desktop */
  .navbar {
    padding: 0;
    background: rgba(5, 5, 10, 0.7);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-container {
    padding: 1.5rem 3rem;
    max-width: 1600px;
  }

  .nav-logo {
    gap: 1rem;
  }

  .logo-icon {
    width: 40px;
    height: 40px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .nav-logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
  }

  .logo-text {
    font-size: 1.75rem;
    font-weight: 800;
  }

  .nav-menu {
    gap: 3rem;
  }

  .nav-link {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 0;
    position: relative;
    overflow: hidden;
  }

  /* Additional Mobile Performance Optimizations */
  @media (max-width: 768px) {
    /* Disable heavy effects on mobile */
    .gradient-orb {
      display: none;
    }

    .floating-particles {
      display: none;
    }

    /* Optimize mobile interactions */
    .buy-token-btn:active,
    .preset-btn:active,
    .cta-primary:active,
    .cta-secondary:active {
      transform: scale(0.95);
      transition: transform 0.1s ease;
    }

    /* Mobile-specific touch optimizations */
    * {
      -webkit-tap-highlight-color: rgba(0, 212, 255, 0.1);
    }

    /* Ensure proper mobile viewport */
    .hero {
      min-height: 100vh;
      min-height: calc(var(--vh, 1vh) * 100);
    }

    /* Mobile form optimizations */
    input,
    select,
    textarea {
      font-size: 16px; /* Prevent zoom on iOS */
      border-radius: 8px;
    }

    /* Mobile button optimizations */
    button,
    .btn,
    .cta-primary,
    .cta-secondary,
    .buy-token-btn {
      min-height: 44px;
      touch-action: manipulation;
      -webkit-user-select: none;
      user-select: none;
    }
  }

  /* Ultra-small mobile devices */
  @media (max-width: 320px) {
    .container {
      padding: 0 0.5rem;
    }

    .hero-title {
      font-size: 1.6rem;
    }
  
    .section-title {
      font-size: 1.5rem;
    }
  
    .buy-token-btn {
      padding: 0.55rem 0.75rem;
      font-size: 0.7rem;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
  
    .hero-actions {
      gap: 0.6rem;
    }
  
    .cta-primary,
    .cta-secondary {
      max-width: 100px;
      font-size: 0.6rem;
      padding: 0.5rem 0.7rem;
      white-space: nowrap;
      text-overflow: ellipsis;
    }
  }

  .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.1),
      transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: -1;
  }

  .nav-link:hover::before {
    left: 100%;
  }

  .nav-link::after {
    bottom: -8px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #5b73ff, #9c27b0);
    border-radius: 2px;
  }

  .connect-wallet-btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 16px;
    background: linear-gradient(135deg, #00d4ff 0%, #5b73ff 100%);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
  }

  .connect-wallet-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .connect-wallet-btn:hover::before {
    left: 100%;
  }

  .connect-wallet-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.4);
  }
}

/* Enhanced Gradient Orbs for Desktop */
@media (min-width: 1024px) {
  .orb-1 {
    width: 600px;
    height: 600px;
    top: -10%;
    left: -15%;
    filter: blur(120px);
    opacity: 0.4;
  }

  .orb-2 {
    width: 500px;
    height: 500px;
    top: 50%;
    right: -10%;
    filter: blur(100px);
    opacity: 0.5;
  }

  .orb-3 {
    width: 400px;
    height: 400px;
    top: 20%;
    right: 15%;
    filter: blur(80px);
    opacity: 0.3;
  }

  @keyframes float {
    0%,
    100% {
      transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
      transform: translateY(-30px) rotate(90deg) scale(1.05);
    }
    50% {
      transform: translateY(-15px) rotate(180deg) scale(1.1);
    }
    75% {
      transform: translateY(-25px) rotate(270deg) scale(1.05);
    }
  }
}

/* Enhanced Floating Particles */
@media (min-width: 1024px) {
  .floating-particles {
    background-image: radial-gradient(
        3px 3px at 20px 30px,
        rgba(255, 255, 255, 0.4),
        transparent
      ),
      radial-gradient(3px 3px at 40px 70px, rgba(0, 212, 255, 0.5), transparent),
      radial-gradient(
        2px 2px at 90px 40px,
        rgba(91, 115, 255, 0.5),
        transparent
      ),
      radial-gradient(
        2px 2px at 130px 80px,
        rgba(156, 39, 176, 0.4),
        transparent
      ),
      radial-gradient(
        1px 1px at 160px 30px,
        rgba(255, 107, 53, 0.3),
        transparent
      );
    background-size: 300px 200px, 250px 150px, 200px 120px, 180px 100px,
      150px 80px;
    animation: particles 25s linear infinite;
    opacity: 0.8;
  }
}

/* Enhanced Roadmap for Desktop */
@media (min-width: 1024px) {
  .roadmap-timeline {
    max-width: 1000px;
  }

  .roadmap-timeline::before {
    width: 4px;
    background: linear-gradient(
      180deg,
      #00d4ff 0%,
      #5b73ff 25%,
      #9c27b0 50%,
      #ff6b35 75%,
      #4caf50 100%
    );
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  }

  .timeline-marker {
    width: 80px;
    height: 80px;
    border-width: 4px;
    background: rgba(10, 10, 20, 0.9);
    backdrop-filter: blur(30px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .timeline-marker:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.3);
  }

  .marker-icon {
    font-size: 2rem;
  }

  .timeline-content {
    width: calc(50% - 60px);
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .timeline-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.6),
      transparent
    );
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .timeline-content:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(0, 212, 255, 0.02);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.15);
  }

  .timeline-content:hover::before {
    opacity: 1;
  }

  .timeline-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
  }

  .timeline-features {
    margin-bottom: 2rem;
  }

  .timeline-features li {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    line-height: 1.6;
  }

  .timeline-features li::before {
    font-size: 1.2rem;
    color: #4caf50;
    left: 0;
  }
}

/* Enhanced Footer for Desktop */
@media (min-width: 1024px) {
  .footer {
    padding: 6rem 0 3rem;
    background: linear-gradient(
      180deg,
      rgba(10, 10, 10, 1) 0%,
      rgba(5, 5, 5, 1) 50%,
      rgba(0, 0, 0, 1) 100%
    );
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
  }

  .footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.5),
      transparent
    );
  }

  .footer-content {
    grid-template-columns: 1.5fr 2fr;
    gap: 6rem;
    margin-bottom: 4rem;
  }

  .footer-brand {
    gap: 2rem;
  }

  .footer-logo {
    gap: 1rem;
  }

  .footer-logo .logo-icon {
    width: 48px;
    height: 48px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
    animation: footerLogoGlow 4s ease-in-out infinite alternate;
  }

  .footer-logo .logo-image {
    width: 56px;
    height: 56px;
    filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
    animation: footerLogoGlow 4s ease-in-out infinite alternate;
    border-radius: 50%;
    object-fit: cover;
  }

  @keyframes footerLogoGlow {
    0% {
      filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.7));
    }
    100% {
      filter: drop-shadow(0 0 25px rgba(0, 212, 255, 1))
        drop-shadow(0 0 40px rgba(91, 115, 255, 0.6));
    }
  }

  .footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 800;
  }

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

  .footer-social {
    gap: 1.5rem;
  }

  .social-link {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }

  .social-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(0, 212, 255, 0.2),
      transparent
    );
    transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .social-link:hover::before {
    left: 100%;
  }

  .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  }

  .social-link svg {
    width: 24px;
    height: 24px;
  }

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

  .footer-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
  }

  .footer-column ul {
    gap: 1rem;
  }

  .footer-column a {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    padding: 0.5rem 0;
  }

  .footer-column a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00d4ff, #5b73ff);
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .footer-column a:hover::before {
    width: 100%;
  }

  .footer-column a:hover {
    color: #00d4ff;
    transform: translateX(5px);
  }

  .footer-bottom {
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .footer-copyright,
  .footer-disclaimer {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
  }
}

/* Premium Glow Effects */
@media (min-width: 1024px) {
  .glow-on-hover {
    position: relative;
    overflow: hidden;
  }

  .glow-on-hover::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
      circle,
      rgba(0, 212, 255, 0.1) 0%,
      transparent 70%
    );
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: -1;
  }

  .glow-on-hover:hover::after {
    opacity: 1;
  }
}

/* Enhanced Scrollbar for Desktop */
@media (min-width: 1024px) {
  ::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    margin: 10px;
  }

  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00d4ff 0%, #5b73ff 50%, #9c27b0 100%);
    border-radius: 6px;
    border: 2px solid rgba(10, 10, 10, 1);
    transition: all 0.3s ease;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5b73ff 0%, #9c27b0 50%, #ff6b35 100%);
    transform: scale(1.1);
  }
}

/* Ultra-smooth transitions for premium feel */
.premium-transition {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Add to all interactive elements */
button,
a,
.feature-card,
.stat-card,
.community-link,
.nav-link {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* Futuristic Font Enhancements */
.section-badge {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline-title {
  font-family: "Exo 2", "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.timeline-quarter {
  font-family: "JetBrains Mono", monospace;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legend-percentage,
.apy-value,
.detail-value {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.chain-badge,
.security-badge,
.governance-stat,
.metric,
.nft-collection,
.nft-benefit {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.footer-logo .logo-text {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-column h4 {
  font-family: "Exo 2", sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

/* Enhanced Text Glow Effects for Futuristic Feel */
.hero-title .gradient-text {
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.section-title .gradient-text {
  text-shadow: 0 0 20px rgba(91, 115, 255, 0.4);
}

.stat-value,
.stat-number,
.token-price {
  text-shadow: 0 0 15px currentColor;
}

.logo-text {
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* Futuristic Button Enhancements */
.cta-primary,
.cta-secondary,
.connect-wallet-btn {
  position: relative;
  overflow: hidden;
}

.cta-primary::before,
.cta-secondary::before,
.connect-wallet-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cta-primary:hover::before,
.cta-secondary:hover::before,
.connect-wallet-btn:hover::before {
  left: 100%;
}

/* Enhanced Mobile Typography */
@media (max-width: 768px) {
  .nav-link {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .connect-wallet-btn {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
  }

  .section-title {
    letter-spacing: -0.015em;
  }

  .feature-title {
    letter-spacing: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    letter-spacing: -0.005em;
  }

  .section-title {
    letter-spacing: -0.01em;
  }

  /* Enhanced mobile one-liner for ultra-small screens */
  .mobile-hero-oneliner {
    margin: 1rem 0 1.5rem 0;
  }

  .mobile-hero-oneliner h2 {
    font-size: 0.95rem;
    line-height: 1.3;
    letter-spacing: 0.005em;
  }
}

/* ===== WALLET HEALTH CHECKER STYLES ===== */

/* Health Overview Section */
.health-overview {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.05) 0%,
    rgba(91, 115, 255, 0.03) 50%,
    rgba(156, 39, 176, 0.02) 100%
  );
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
}

.health-overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 212, 255, 0.6),
    rgba(91, 115, 255, 0.4),
    rgba(156, 39, 176, 0.3),
    transparent
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.health-overview:hover::before {
  opacity: 1;
}

.health-overview h3 {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Health Status Card */
.health-status-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.health-status-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.health-status-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.health-status-icon.excellent {
  color: #4caf50;
  text-shadow: 0 0 20px rgba(76, 175, 80, 0.5);
}

.health-status-icon.good {
  color: #8bc34a;
  text-shadow: 0 0 20px rgba(139, 195, 74, 0.5);
}

.health-status-icon.fair {
  color: #ffc107;
  text-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
}

.health-status-icon.poor {
  color: #ff9800;
  text-shadow: 0 0 20px rgba(255, 152, 0, 0.5);
}

.health-status-icon.critical {
  color: #f44336;
  text-shadow: 0 0 20px rgba(244, 67, 54, 0.5);
}

.health-status-text {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.health-status-text.excellent {
  color: #4caf50;
}

.health-status-text.good {
  color: #8bc34a;
}

.health-status-text.fair {
  color: #ffc107;
}

.health-status-text.poor {
  color: #ff9800;
}

.health-status-text.critical {
  color: #f44336;
}

.health-score {
  font-family: "JetBrains Mono", monospace;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.health-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
}

/* Key Metrics Row */
.key-metrics-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.metric-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-item:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.metric-label {
  font-family: "Exo 2", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.metric-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: #00d4ff;
  margin-bottom: 0.25rem;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.metric-change {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  display: inline-block;
}

.metric-change.positive {
  background: rgba(76, 175, 80, 0.2);
  color: #4caf50;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.metric-change.negative {
  background: rgba(244, 67, 54, 0.2);
  color: #f44336;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.metric-change.neutral {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Detailed Analysis Cards */
.detailed-analysis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* P&L Analysis Card */
.pnl-analysis-card {
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.05) 0%,
    rgba(139, 195, 74, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pnl-analysis-card:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 175, 80, 0.4);
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

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

.pnl-icon {
  font-size: 2rem;
  color: #4caf50;
  text-shadow: 0 0 15px rgba(76, 175, 80, 0.5);
}

.pnl-title {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pnl-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.pnl-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pnl-item-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pnl-item-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4caf50;
  text-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.pnl-item-value.negative {
  color: #f44336;
  text-shadow: 0 0 10px rgba(244, 67, 54, 0.3);
}

/* Win Rate Analysis Card */
.winrate-analysis-card {
  background: linear-gradient(
    135deg,
    rgba(91, 115, 255, 0.05) 0%,
    rgba(156, 39, 176, 0.03) 100%
  );
  backdrop-filter: blur(20px);
  border: 1px solid rgba(91, 115, 255, 0.2);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.winrate-analysis-card:hover {
  transform: translateY(-5px);
  border-color: rgba(91, 115, 255, 0.4);
  box-shadow: 0 20px 40px rgba(91, 115, 255, 0.1);
}

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

.winrate-icon {
  font-size: 2rem;
  color: #5b73ff;
  text-shadow: 0 0 15px rgba(91, 115, 255, 0.5);
}

.winrate-title {
  font-family: "Orbitron", "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.winrate-display {
  text-align: center;
  margin-bottom: 1.5rem;
}

.winrate-percentage {
  font-family: "JetBrains Mono", monospace;
  font-size: 3rem;
  font-weight: 800;
  color: #5b73ff;
  text-shadow: 0 0 20px rgba(91, 115, 255, 0.5);
  margin-bottom: 0.5rem;
}

.winrate-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.winrate-breakdown {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.winrate-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.winrate-stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.winrate-stat-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 1.2rem;
  font-weight: 700;
  color: #5b73ff;
  text-shadow: 0 0 10px rgba(91, 115, 255, 0.3);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .health-overview {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .health-overview h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }

  .health-status-card {
    padding: 1.5rem;
  }

  .health-status-icon {
    font-size: 2.5rem;
  }

  .health-status-text {
    font-size: 1.2rem;
  }

  .health-score {
    font-size: 2rem;
  }

  .key-metrics-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .metric-item {
    padding: 1rem;
  }

  .metric-value {
    font-size: 1.2rem;
  }

  .detailed-analysis {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .pnl-analysis-card,
  .winrate-analysis-card {
    padding: 1.5rem;
  }

  .pnl-header,
  .winrate-header {
    margin-bottom: 1rem;
  }

  .pnl-icon,
  .winrate-icon {
    font-size: 1.5rem;
  }

  .pnl-title,
  .winrate-title {
    font-size: 1.1rem;
  }

  .pnl-summary,
  .winrate-breakdown {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .winrate-percentage {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .health-overview {
    padding: 1rem;
  }

  .health-overview h3 {
    font-size: 1.2rem;
  }

  .health-status-card {
    padding: 1rem;
  }

  .health-status-icon {
    font-size: 2rem;
  }

  .health-status-text {
    font-size: 1rem;
  }

  .health-score {
    font-size: 1.8rem;
  }

  .metric-item {
    padding: 0.75rem;
  }

  .metric-value {
    font-size: 1rem;
  }

  .pnl-analysis-card,
  .winrate-analysis-card {
    padding: 1rem;
  }

  .pnl-title,
  .winrate-title {
    font-size: 1rem;
  }

  .winrate-percentage {
    font-size: 2rem;
  }
}

/* ETH Balance Card Styles */
.eth-balance-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(91, 115, 255, 0.05) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.eth-balance-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.eth-balance-card .eth-icon {
    font-size: 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    padding: 0.5rem;
    border-radius: 8px;
}

.eth-balance-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.balance-main {
    text-align: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.balance-eth {
    font-size: 2rem;
    font-weight: 700;
    color: #00D4FF;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.balance-usd {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.balance-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.balance-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.balance-item:last-child {
    border-bottom: none;
}

.balance-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.balance-value {
    color: #ffffff;
    font-weight: 600;
}

.balance-value.positive {
    color: #4CAF50;
}

.balance-value.negative {
    color: #FF4444;
}

/* Recent Transactions Card Styles */
.recent-transactions-card {
    background: linear-gradient(135deg, rgba(91, 115, 255, 0.1) 0%, rgba(156, 39, 176, 0.05) 100%);
    border: 1px solid rgba(91, 115, 255, 0.2);
}

.recent-transactions-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.tx-refresh-btn {
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    background: rgba(91, 115, 255, 0.1);
    transition: all 0.3s ease;
}

.tx-refresh-btn:hover {
    background: rgba(91, 115, 255, 0.2);
    transform: rotate(180deg);
}

.recent-transactions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.transaction-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.transaction-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(91, 115, 255, 0.3);
    transform: translateY(-2px);
}

.tx-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.tx-hash {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    color: #00D4FF;
    font-weight: 500;
}

.tx-details {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.tx-type {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tx-type.incoming {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.tx-type.outgoing {
    background: rgba(255, 107, 53, 0.2);
    color: #FF6B35;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

.tx-time {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.tx-amount {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
    margin: 0 1rem;
}

.tx-value-eth {
    font-weight: 600;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
}

.tx-value-usd {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.tx-status {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(76, 175, 80, 0.1);
}

.tx-status.success {
    color: #4CAF50;
}

.tx-status.failed {
    color: #FF4444;
    background: rgba(255, 68, 68, 0.1);
}

.view-all-transactions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(91, 115, 255, 0.2) 0%, rgba(156, 39, 176, 0.2) 100%);
    border: 1px solid rgba(91, 115, 255, 0.3);
    border-radius: 8px;
    color: #ffffff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.view-all-btn:hover {
    background: linear-gradient(135deg, rgba(91, 115, 255, 0.3) 0%, rgba(156, 39, 176, 0.3) 100%);
    border-color: rgba(91, 115, 255, 0.5);
    transform: translateY(-2px);
}

.view-all-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

/* Enhanced Mobile Responsive Styles for New Cards */
@media (max-width: 768px) {
    /* ETH Balance Card Mobile */
    .eth-balance-card {
        margin-bottom: 1rem;
    }
    
    .eth-balance-card .card-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .eth-balance-card .card-header h3 {
        font-size: 1.1rem;
    }
    
    .balance-main {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .balance-eth {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .balance-usd {
        font-size: 1.1rem;
    }
    
    .balance-details {
        gap: 0.5rem;
    }
    
    .balance-item {
        padding: 0.4rem 0;
        min-height: 32px;
    }
    
    .balance-label {
        font-size: 0.85rem;
        flex: 1;
    }
    
    .balance-value {
        font-size: 0.9rem;
        text-align: right;
    }
    
    /* Recent Transactions Card Mobile */
    .recent-transactions-card {
        margin-bottom: 1rem;
    }
    
    .recent-transactions-card .card-header {
        margin-bottom: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .recent-transactions-card .card-header h3 {
        font-size: 1.1rem;
    }
    
    .recent-transactions-list {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .transaction-item {
        padding: 0.75rem;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        border-radius: 10px;
        position: relative;
    }
    
    .tx-info {
        gap: 0.5rem;
    }
    
    .tx-hash {
        font-size: 0.8rem;
        word-break: break-all;
        line-height: 1.3;
        max-width: calc(100% - 40px);
    }
    
    .tx-details {
        flex-wrap: wrap;
        gap: 0.75rem;
        align-items: center;
        justify-content: space-between;
    }
    
    .tx-type {
        padding: 0.2rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 15px;
    }
    
    .tx-time {
        font-size: 0.8rem;
        flex: 1;
        text-align: right;
    }
    
    .tx-amount {
        align-items: flex-end;
        margin: 0;
        gap: 0.25rem;
        width: 100%;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .tx-value-eth {
        font-size: 1rem;
        font-weight: 600;
    }
    
    .tx-value-usd {
        font-size: 0.8rem;
    }
    
    .tx-status {
        width: 28px;
        height: 28px;
        font-size: 1rem;
        position: absolute;
        top: 0.75rem;
        right: 0.75rem;
    }
    
    .view-all-transactions {
        padding-top: 0.75rem;
    }
    
    .view-all-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 8px;
    }
    
    .view-all-btn svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 480px) {
    /* Ultra-mobile ETH Balance Card */
    .balance-main {
        padding: 0.75rem;
    }
    
    .balance-eth {
        font-size: 1.5rem;
    }
    
    .balance-usd {
        font-size: 1rem;
    }
    
    .balance-item {
        padding: 0.35rem 0;
        min-height: 28px;
    }
    
    .balance-label {
        font-size: 0.8rem;
    }
    
    .balance-value {
        font-size: 0.85rem;
    }
    
    /* Ultra-mobile Recent Transactions Card */
    .recent-transactions-list {
        gap: 0.5rem;
    }
    
    .transaction-item {
        padding: 0.6rem;
        gap: 0.5rem;
        position: relative;
    }
    
    .tx-hash {
        font-size: 0.75rem;
        max-width: calc(100% - 40px);
    }
    
    .tx-details {
        gap: 0.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .tx-type {
        padding: 0.15rem 0.5rem;
        font-size: 0.65rem;
    }
    
    .tx-time {
        font-size: 0.75rem;
        text-align: left;
        flex: none;
    }
    
    /* Additional Mobile Input and Layout Optimizations */
    @media (max-width: 768px) {
        .input-group {
            flex-direction: column;
            gap: 0.75rem;
            padding: 0.75rem;
            max-width: 100%;
            margin: 0 auto 1.5rem;
        }
        
        .wallet-input {
            padding: 1rem;
            font-size: 1rem;
            border-radius: 10px;
            width: 100%;
            box-sizing: border-box;
        }
        
        .analyze-btn {
            padding: 1rem 1.5rem;
            font-size: 1rem;
            border-radius: 10px;
            width: 100%;
            justify-content: center;
            min-height: 48px;
        }
        
        .input-help {
            font-size: 0.85rem;
            text-align: center;
            padding: 0 1rem;
        }
        
        .analyzer-actions {
            flex-direction: column;
            gap: 1rem;
            padding: 0 1rem;
        }
        
        .action-btn {
            width: 100%;
            justify-content: center;
            min-height: 48px;
            padding: 1rem;
        }
        
        /* Mobile Demo Section */
        .demo-addresses {
            grid-template-columns: 1fr;
            gap: 1rem;
            padding: 0 1rem;
        }
        
        .demo-address {
            padding: 1rem;
            text-align: center;
        }
        
        .demo-addr {
            font-size: 0.75rem;
            word-break: break-all;
        }
    }
    
    @media (max-width: 480px) {
        .input-group {
            padding: 0.5rem;
            gap: 0.5rem;
        }
        
        .wallet-input {
            padding: 0.875rem;
            font-size: 0.95rem;
        }
        
        .analyze-btn {
            padding: 0.875rem 1.25rem;
            font-size: 0.95rem;
            min-height: 44px;
        }
        
        .action-btn {
            padding: 0.875rem;
            font-size: 0.9rem;
            min-height: 44px;
        }
        
        .demo-address {
            padding: 0.75rem;
        }
        
        .demo-label {
            font-size: 0.85rem;
        }
        
        .demo-addr {
            font-size: 0.7rem;
        }
        
        .demo-score {
            font-size: 0.75rem;
            padding: 0.2rem 0.4rem;
        }
    }
    
    /* Enhanced Mobile Loading States */
    @media (max-width: 768px) {
        .loading-shimmer {
            animation-duration: 1.5s;
        }
        
        .result-card.loading {
            min-height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid rgba(0, 212, 255, 0.1);
            border-top: 3px solid #00d4ff;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    }
    
    /* Mobile Touch Optimizations */
    @media (max-width: 768px) {
        /* Ensure all interactive elements are touch-friendly */
        button,
        .nav-link,
        .cta-primary,
        .cta-secondary,
        .connect-wallet-btn,
        .analyze-btn,
        .action-btn,
        .view-all-btn,
        .rec-action,
        .preset-btn {
            min-height: 44px;
            min-width: 44px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: rgba(0, 212, 255, 0.2);
        }
        
        /* Improve tap targets for small elements */
        .legend-item,
        .community-link,
        .social-link,
        .demo-address {
            min-height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Prevent zoom on input focus */
        input,
        select,
        textarea {
            font-size: 16px;
            border-radius: 8px;
        }
        
        /* Optimize scroll performance */
        * {
            -webkit-overflow-scrolling: touch;
        }
        
        /* Prevent text selection on UI elements */
        .nav-link,
        .cta-primary,
        .cta-secondary,
        .connect-wallet-btn,
        .feature-card,
        .stat-card,
        .result-card {
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none;
        }
    }
    
    /* Mobile Accessibility Improvements */
    @media (max-width: 768px) {
        /* Enhanced focus states for mobile */
        button:focus-visible,
        a:focus-visible,
        .nav-link:focus-visible,
        input:focus-visible {
            outline: 3px solid #00d4ff;
            outline-offset: 2px;
            border-radius: 6px;
        }
        
        /* Better contrast for mobile */
        .card-header h3,
        .feature-title,
        .stat-label,
        .metric-label {
            color: #ffffff;
            font-weight: 600;
        }
        
        /* Improved readability */
        .hero-description,
        .section-description,
        .feature-description {
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
        }
    }
    
    .tx-amount {
        padding-top: 0.4rem;
        gap: 0.2rem;
    }
    
    .tx-value-eth {
        font-size: 0.9rem;
    }
    
    .tx-value-usd {
        font-size: 0.75rem;
    }
    
    .tx-status {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
        top: 0.6rem;
        right: 0.6rem;
    }
    
    .view-all-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        width: 100%;
        justify-content: center;
    }
}

/* ===== MOBILE HEALTH ANALYSIS FIXES ===== */

/* Fix for P&L and Health Analysis Mobile Layout */
@media (max-width: 768px) {
  /* Health Overview Mobile */
  .health-overview {
    padding: 1.25rem;
    margin-bottom: 2rem;
    text-align: center;
  }

  .health-overview h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }

  .health-status-card {
    padding: 1.5rem;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .health-status-icon {
    font-size: 2.5rem;
    display: block;
    text-align: center;
    margin: 0 auto 1rem;
  }

  .health-status-text {
    font-size: 1.2rem;
    text-align: center;
  }

  .health-score {
    font-size: 2rem;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .health-description {
    text-align: center;
    margin: 0 auto;
  }

  /* Key Metrics Row Mobile - Center Everything */
  .key-metrics-row {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
    justify-items: center;
  }

  .metric-item {
    padding: 1rem;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .metric-label {
    text-align: center;
    margin-bottom: 0.5rem;
    display: block;
    width: 100%;
  }

  .metric-value {
    font-size: 1.2rem;
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  .metric-change {
    margin: 0 auto;
    text-align: center;
  }

  /* Detailed Analysis Mobile - Center Cards */
  .detailed-analysis {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 0 0.5rem;
    justify-items: center;
  }

  .pnl-analysis-card,
  .winrate-analysis-card {
    padding: 1.25rem;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .pnl-header,
  .winrate-header {
    margin-bottom: 1rem;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }

  .pnl-icon,
  .winrate-icon {
    font-size: 1.5rem;
    display: block;
    text-align: center;
    margin: 0 auto;
  }

  .pnl-title,
  .winrate-title {
    font-size: 1.1rem;
    text-align: center;
    margin: 0;
  }

  /* P&L Summary Mobile - Stack Vertically */
  .pnl-summary,
  .winrate-breakdown {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin: 0 auto;
    max-width: 100%;
  }

  .pnl-item,
  .winrate-stat {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .pnl-item-label,
  .winrate-stat-label {
    text-align: center;
    display: block;
    width: 100%;
  }

  .pnl-item-value,
  .winrate-stat-value {
    text-align: center;
    display: block;
    width: 100%;
    margin: 0 auto;
  }

  /* Win Rate Display Mobile */
  .winrate-display {
    text-align: center;
    margin: 0 auto 1.5rem;
  }

  .winrate-percentage {
    font-size: 2.5rem;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .winrate-label {
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  /* Ultra Mobile Health Analysis */
  .health-overview {
    padding: 1rem;
    margin-bottom: 1.5rem;
  }

  .health-overview h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .health-status-card {
    padding: 1rem;
  }

  .health-status-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }

  .health-status-text {
    font-size: 1rem;
  }

  .health-score {
    font-size: 1.8rem;
  }

  .key-metrics-row {
    padding: 0 0.25rem;
    gap: 0.75rem;
  }

  .metric-item {
    padding: 0.75rem;
  }
  
  /* ===== ENHANCED RESPONSIVE DESIGN FOR ALL SCREEN SIZES ===== */
  
  /* Large Desktop Screens (1440px+) */
  @media (min-width: 1440px) {
    .container {
      max-width: 1600px;
      padding: 0 4rem;
    }
  
    .hero-title {
      font-size: clamp(4rem, 6vw, 5.5rem);
    }
  
    .section-title {
      font-size: clamp(3rem, 4vw, 4rem);
    }
  
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 3rem;
    }
  
    .feature-card {
      padding: 3rem;
    }
  }
  
  /* Medium Desktop (1200px - 1439px) */
  @media (min-width: 1200px) and (max-width: 1439px) {
    .container {
      max-width: 1200px;
      padding: 0 3rem;
    }
  
    .hero-title {
      font-size: clamp(3.5rem, 5vw, 4.5rem);
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2.5rem;
    }
  }
  
  /* Small Desktop/Large Tablet (1025px - 1199px) */
  @media (min-width: 1025px) and (max-width: 1199px) {
    .container {
      padding: 0 2rem;
    }
  
    .nav-container {
      padding: 1rem 2rem;
    }
  
    .hero-title {
      font-size: clamp(3rem, 4.5vw, 3.8rem);
    }
  
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  
    .tokenomics-content {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  }
  
  /* Tablet Portrait (768px - 1024px) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .container {
      padding: 0 1.5rem;
    }
  
    .hero {
      min-height: 85vh;
      padding-top: 80px;
    }
  
    .hero-container {
      padding: 2rem 1.5rem;
      gap: 2.5rem;
    }
  
    .hero-title {
      font-size: clamp(2.5rem, 4vw, 3.2rem);
      line-height: 1.2;
    }
  
    .hero-description {
      font-size: clamp(1rem, 2vw, 1.1rem);
      max-width: 500px;
    }
  
    .hero-stats {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
  
    .stat-value {
      font-size: clamp(1.8rem, 3vw, 2.2rem);
    }
  
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  
    .feature-card {
      padding: 1.5rem;
    }
  
    .feature-title {
      font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    }
  
    .section-title {
      font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    }
  
    .chart-container {
      width: clamp(250px, 50vw, 320px);
      height: clamp(250px, 50vw, 320px);
    }
  
    .community-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
    }
  
    .roadmap-timeline::before {
      left: 30px;
    }
  
    .timeline-marker {
      left: 5px;
    }
  
    .timeline-content {
      margin-left: 80px !important;
      width: calc(100% - 100px);
    }
  }
  
  /* Mobile Landscape (568px - 767px) */
  @media (min-width: 568px) and (max-width: 767px) {
    .hero {
      min-height: 80vh;
      padding-top: 70px;
    }
  
    .hero-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
    }
  
    .hero-description {
      font-size: clamp(0.95rem, 2vw, 1.05rem);
    }
  
    .hero-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  
    .feature-card {
      padding: 1.25rem;
    }
  
    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
    }
  
    .chart-container {
      width: clamp(200px, 45vw, 280px);
      height: clamp(200px, 45vw, 280px);
    }
  
    .community-stats {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  }
  
  /* Mobile Portrait (320px - 567px) */
  @media (max-width: 567px) {
    .container {
      padding: 0 1rem;
    }
  
    .nav-container {
      padding: 0.75rem 1rem;
    }
  
    .logo-text {
      font-size: clamp(1.1rem, 3vw, 1.4rem);
    }
  
    .hero {
      min-height: 75vh;
      padding-top: 65px;
    }
  
    .hero-container {
      padding: 1.5rem 1rem;
      gap: 1.5rem;
    }
  
    .hero-title {
      font-size: clamp(1.8rem, 5vw, 2.4rem);
      line-height: 1.1;
      margin-bottom: 1rem;
    }
  
    .hero-description {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
      margin-bottom: 1.5rem;
      max-width: 100%;
    }
  
    .hero-stats {
      display: none; /* Hide on very small screens to reduce clutter */
    }
  
    .hero-actions {
      flex-direction: column;
      gap: 0.75rem;
      width: 100%;
    }
  
    .cta-primary,
    .cta-secondary {
      width: 100%;
      justify-content: center;
      padding: 0.875rem 1.5rem;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
  
    .section {
      padding: 3rem 0;
    }
  
    .section-title {
      font-size: clamp(1.6rem, 4vw, 2.2rem);
      margin-bottom: 1rem;
    }
  
    .section-description {
      font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
  
    .features-grid {
      grid-template-columns: 1fr;
      gap: 1.25rem;
    }
  
    .feature-card {
      padding: 1rem;
    }
  
    .feature-icon {
      width: 40px;
      height: 40px;
      margin-bottom: 0.75rem;
    }
  
    .feature-title {
      font-size: clamp(1rem, 3vw, 1.2rem);
      margin-bottom: 0.75rem;
    }
  
    .feature-description {
      font-size: clamp(0.85rem, 2vw, 0.95rem);
      line-height: 1.5;
    }
  
    .chart-container {
      width: clamp(180px, 60vw, 240px);
      height: clamp(180px, 60vw, 240px);
    }
  
    .legend-item {
      padding: 0.5rem 0.75rem;
      font-size: clamp(0.8rem, 2vw, 0.9rem);
    }
  
    .community-stats {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .stat-card {
      padding: 1rem;
    }
  
    .stat-number {
      font-size: clamp(1.8rem, 4vw, 2.2rem);
    }
  
    .community-links {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .community-link {
      padding: 1rem;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
  
    .footer-links {
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
  
    .newsletter-form {
      flex-direction: column;
      gap: 0.75rem;
    }
  
    .newsletter-input,
    .newsletter-button {
      width: 100%;
    }
  }
  
  /* Ultra Small Screens (280px - 319px) */
  @media (max-width: 319px) {
    .container {
      padding: 0 0.75rem;
    }
  
    .nav-container {
      padding: 0.5rem 0.75rem;
    }
  
    .logo-text {
      font-size: 1rem;
    }
  
    .connect-wallet-btn {
      padding: 0.4rem 0.8rem;
      font-size: 0.7rem;
    }
  
    .hero-title {
      font-size: 1.6rem;
      line-height: 1.1;
    }
  
    .hero-description {
      font-size: 0.85rem;
    }
  
    .cta-primary,
    .cta-secondary {
      padding: 0.75rem 1.25rem;
      font-size: 0.75rem;
    }
  
    .section-title {
      font-size: 1.4rem;
    }
  
    .feature-card {
      padding: 0.75rem;
    }
  
    .feature-icon {
      width: 35px;
      height: 35px;
    }
  
    .chart-container {
      width: 160px;
      height: 160px;
    }
  
    .footer-links {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  }
  
  /* Fluid Typography for Better Scaling */
  html {
    font-size: clamp(14px, 1.5vw, 16px);
  }
  
  /* Enhanced Container Responsiveness */
  .container {
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  /* Responsive Images and Media */
  img,
  video,
  svg {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Flexible Grid Layouts */
  .results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(1rem, 3vw, 2rem);
    width: 100%;
  }
  
  /* Enhanced Button Responsiveness */
  button,
  .btn,
  .cta-primary,
  .cta-secondary,
  .analyze-btn {
    min-height: 44px;
    padding: clamp(0.5rem, 2vw, 1rem) clamp(1rem, 3vw, 2rem);
    font-size: clamp(0.8rem, 2vw, 1rem);
    border-radius: clamp(8px, 1vw, 12px);
    transition: all 0.3s ease;
  }
  
  /* Responsive Form Elements */
  input,
  select,
  textarea {
    width: 100%;
    padding: clamp(0.75rem, 2vw, 1rem);
    font-size: clamp(0.9rem, 2vw, 1rem);
    border-radius: clamp(6px, 1vw, 10px);
    box-sizing: border-box;
  }
  
  /* Enhanced Navigation Responsiveness */
  @media (max-width: 768px) {
    .nav-menu:not(.mobile-active) {
      display: none;
    }
  
    .mobile-menu-toggle {
      display: flex;
    }
  
    .nav-menu.mobile-active {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(5, 5, 10, 0.95);
      backdrop-filter: blur(40px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 1.5rem;
      z-index: 9999;
      padding: 2rem;
    }
  
    .nav-menu.mobile-active .nav-link {
      font-size: clamp(1rem, 3vw, 1.2rem);
      padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 4vw, 1.5rem);
      width: clamp(200px, 80vw, 280px);
      text-align: center;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      backdrop-filter: blur(20px);
    }
  }
  
  /* Print Styles for Better Printing */
  @media print {
    .navbar,
    .hero-visual,
    .floating-particles,
    .gradient-orb,
    .mobile-menu-toggle {
      display: none !important;
    }
  
    .hero {
      min-height: auto;
      padding: 2rem 0;
    }
  
    body {
      background: white !important;
      color: black !important;
    }
  
    .container {
      max-width: 100% !important;
      padding: 0 1rem !important;
    }
  }
  
  /* High Contrast Mode Support */
  @media (prefers-contrast: high) {
    .hero,
    .features,
    .tokenomics,
    .community {
      background: #000000 !important;
    }
  
    .feature-card,
    .stat-card,
    .result-card {
      border: 2px solid #ffffff !important;
      background: #000000 !important;
    }
  
    .gradient-text {
      background: #ffffff !important;
      -webkit-background-clip: text !important;
      -webkit-text-fill-color: transparent !important;
    }
  }
  
  /* Reduced Motion Support */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  
    .gradient-orb,
    .floating-particles {
      animation: none !important;
    }
  }
  
  /* Dark Mode Support (if system preference) */
  @media (prefers-color-scheme: light) {
    /* Keep dark theme as default for this crypto/tech site */
    /* But could add light mode variants here if needed */
  }
  
  /* Orientation-specific Styles */
  @media (orientation: landscape) and (max-height: 500px) {
    .hero {
      min-height: 100vh;
      padding-top: 60px;
    }
  
    .hero-container {
      flex-direction: row;
      align-items: center;
      gap: 2rem;
    }
  
    .hero-content {
      flex: 1;
      text-align: left;
    }
  
    .hero-visual {
      flex: 0 0 300px;
    }
  }
  
  /* Focus Management for Better Accessibility */
  @media (max-width: 768px) {
    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 3px solid #00d4ff;
      outline-offset: 2px;
      border-radius: 4px;
    }
  }
  
  /* Enhanced Hover States for Touch Devices */
  @media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .stat-card:hover,
    .community-link:hover {
      transform: none;
    }
  
    .cta-primary:hover,
    .cta-secondary:hover {
      transform: none;
    }
  
    /* Add active states instead */
    .feature-card:active,
    .stat-card:active {
      transform: scale(0.98);
    }
  
    .cta-primary:active,
    .cta-secondary:active {
      transform: scale(0.95);
    }
  }

  .metric-value {
    font-size: 1rem;
  }

  .detailed-analysis {
    padding: 0 0.25rem;
    gap: 1rem;
  }

  .pnl-analysis-card,
  .winrate-analysis-card {
    padding: 1rem;
  }

  .pnl-title,
  .winrate-title {
    font-size: 1rem;
  }

  .winrate-percentage {
    font-size: 2rem;
  }

  .pnl-summary,
  .winrate-breakdown {
    gap: 0.5rem;
  }

  .pnl-item,
  .winrate-stat {
    padding: 0.75rem;
  }
}

/* Marketing Blur Overlay Styles for Premium Features */
.marketing-blur-overlay {
    animation: pulse-glow 2s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    }
}

/* Blur effect for sensitive data */
.blurred-content {
    filter: blur(8px);
    pointer-events: none;
    transition: filter 0.3s ease;
}

.blurred-content:hover {
    filter: blur(6px);
}

/* Premium feature indicators */
.premium-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    z-index: 5;
}

.premium-indicator::before {
    content: "👑 ";
}
