/* ===== Base Styles ===== */
:root {
  /* Primary Color Palette */
  --primary: #8A2BE2;
  --primary-dark: #4A00E0;
  --primary-light: #A64DFF;
  
  /* Secondary Colors */
  --secondary: #00C6FF;
  --secondary-dark: #0099CC;
  --secondary-light: #66E0FF;
  
  /* Accent Colors */
  --accent-1: #FF6B6B;
  --accent-2: #4ECDC4;
  --accent-3: #FFD166;
  --accent-4: #6A67CE;
  
  /* Neutral Colors */
  --dark: #0D1017;
  --dark-light: #1A1E2E;
  --dark-lighter: #252A3A;
  --gray: #474A57;
  --light-gray: #8D93A6;
  --off-white: #F6F8FF;
  --white: #FFFFFF;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-dark));
  --gradient-secondary: linear-gradient(135deg, var(--secondary), #4CBFFF);
  --gradient-accent: linear-gradient(135deg, var(--accent-1), var(--accent-3));
  --gradient-dark: linear-gradient(135deg, var(--dark), var(--dark-light));
  --gradient-glow: linear-gradient(135deg, rgba(138, 43, 226, 0.8), rgba(74, 0, 224, 0.8));
  
  /* Typography */
  --font-main: 'Outfit', sans-serif;
  --font-secondary: 'Space Grotesk', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.2);
  --shadow-glow: 0 0 20px rgba(138, 43, 226, 0.4);
  --shadow-glow-strong: 0 0 30px rgba(138, 43, 226, 0.6);
  
  /* Border Radius */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Sizes */
  --header-height: 80px;
  --container-width: 1280px;
  
  /* Z-index layers */
  --z-background: -10;
  --z-normal: 1;
  --z-header: 1000;
  --z-mobile-nav: 999;
  --z-overlay: 1001;
}

/* Reset */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

.container {
  width: 92%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* ===== Background Effects ===== */
.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-background);
  pointer-events: none;
  overflow: hidden;
}

#bgCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline;
}

.highlight {
  color: var(--secondary);
  font-weight: 700;
}

/* ===== Buttons ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: transform var(--transition-bounce), 
              box-shadow var(--transition-normal), 
              background-color var(--transition-normal);
  border: none;
  gap: 10px;
  min-width: 160px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: transform var(--transition-normal);
  z-index: -1;
}

.button:hover::before {
  transform: translateX(0);
}

.button-icon {
  display: inline-block;
  margin-right: 8px;
  font-size: 1.2rem;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-bounce);
}

.button:hover svg {
  transform: translateX(5px);
}

.button-primary {
  background-color: var(--accent-3);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}

.button-primary:hover {
  background-color: #FFE066;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.button-secondary {
  background-color: var(--secondary);
  color: var(--dark);
  box-shadow: var(--shadow-md);
}

.button-secondary:hover {
  background-color: var(--secondary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.button-accent {
  background-color: var(--accent-1);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.button-accent:hover {
  background-color: #FF8484;
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.button-gradient {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.button-gradient:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow), var(--shadow-lg);
}

.button-outline {
  background-color: transparent;
  color: var(--white);
  box-shadow: none;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.button-outline:hover {
  border-color: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.button-block {
  display: block;
  width: 100%;
}

.button.disabled {
  opacity: 0.7;
  cursor: not-allowed;
  background-color: var(--gray);
  transform: none;
  box-shadow: none;
}

.button.disabled:hover {
  transform: none;
  box-shadow: none;
}

.button.disabled:hover::before {
  transform: translateX(-100%);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: rgba(13, 16, 23, 0.8);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: var(--z-header);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-normal);
}

.header.scrolled {
  background-color: rgba(13, 16, 23, 0.95);
  height: 70px;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-container {
  position: relative;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  height: 50px;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
  transition: var(--transition-normal);
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(138, 43, 226, 0.7));
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(138, 43, 226, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse 3s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.2;
  }
}

.token-price {
  display: flex;
  flex-direction: column;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.token-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: var(--transition-normal);
}

.token-price:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-sm);
}

.token-price:hover::before {
  transform: translateX(100%);
  transition: transform 1s;
}

.price-label {
  font-size: 0.7rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price-value {
  font-weight: 700;
  color: var(--accent-3);
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  transition: color var(--transition-normal);
}

.price-change {
  font-size: 0.7rem;
  color: #4ECDC4;
  margin-top: 2px;
  transition: color var(--transition-normal);
}

.price-change.negative {
  color: var(--accent-1);
}

.fade-in {
  animation: priceFadeIn 0.8s ease-out;
}

@keyframes priceFadeIn {
  0% {
    opacity: 0.5;
    transform: translateY(3px);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-nav {
  display: flex;
  align-items: center;
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.nav-link {
  position: relative;
  display: block;
  font-weight: 500;
  transition: var(--transition-normal);
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--primary-light);
}

.nav-link:hover::after {
  width: 100%;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: var(--primary-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: var(--z-overlay);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  border-radius: 10px;
  transition: var(--transition-normal);
}

.menu-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-active span:nth-child(2) {
  opacity: 0;
}

.menu-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(13, 16, 23, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
  transition: height var(--transition-normal);
  z-index: var(--z-mobile-nav);
}

.mobile-nav.active {
  height: calc(100vh - var(--header-height));
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mobile-nav ul {
  padding: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-normal), transform var(--transition-normal);
}

.mobile-nav.active ul {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav .nav-link {
  font-size: 1.25rem;
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.mobile-socials {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-socials .social-icon {
  width: auto;
  height: auto;
  background: none;
  justify-content: flex-start;
  gap: 15px;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: var(--header-height);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 80px 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gradient-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.circle-1 {
  top: 10%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(138, 43, 226, 0.4) 0%, rgba(74, 0, 224, 0.2) 60%, rgba(74, 0, 224, 0) 100%);
  animation: float-slow 20s ease-in-out infinite;
}

.circle-2 {
  bottom: 20%;
  right: 5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.3) 0%, rgba(0, 153, 204, 0.15) 60%, rgba(0, 153, 204, 0) 100%);
  animation: float-slow 25s ease-in-out infinite reverse;
}

.circle-3 {
  top: 40%;
  right: 30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.3) 0%, rgba(255, 107, 107, 0.15) 60%, rgba(255, 107, 107, 0) 100%);
  animation: float-slow 18s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(-50px, 50px);
  }
  50% {
    transform: translate(0, 100px);
  }
  75% {
    transform: translate(50px, 50px);
  }
}

.dog-container {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  max-width: 600px;
  z-index: 2;
  transform-origin: bottom center;
}

.dog-animation {
  animation: dog-floating 8s ease-in-out infinite;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

@keyframes dog-floating {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(2deg);
  }
  50% {
    transform: translateY(-30px) rotate(0deg);
  }
  75% {
    transform: translateY(-15px) rotate(-2deg);
  }
}

.dog-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 30px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  animation: shadow-pulse 8s ease-in-out infinite;
}

@keyframes shadow-pulse {
  0%, 100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-50%) scale(0.8);
    opacity: 0.2;
  }
}

.hero-text {
  position: relative;
  z-index: 5;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-badge-text {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  /* Changed from gradient to solid color for better visibility */
  color: var(--white);
  /* Added shadow to make it visible against any background */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-description {
  font-size: 1.3rem;
  color: var(--off-white);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.stats-container {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-3);
  margin-bottom: 5px;
  font-family: var(--font-secondary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.scroll-btn {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

.hero-chains {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.chain-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  transition: var(--transition-bounce);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.chain-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.chain-badge img {
  width: 20px;
  height: 20px;
}

.chain-separator {
  font-size: 1.2rem;
  color: var(--light-gray);
  font-weight: 700;
}

.more-chains {
  color: var(--secondary);
}

.more-chains svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-normal);
}

.more-chains:hover svg {
  transform: translateX(3px);
}

.hero-divider {
  position: relative;
  width: 100%;
  margin-top: auto;
  z-index: 4;
}

.hero-divider svg {
  width: 100%;
  height: 180px;
  display: block;
}

/* ===== Section Common Styles ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 15px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white); /* Changed from purple to white for better visibility */
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
  /* Added text shadow for better visibility */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.section-header h2 {
  font-size: 3rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.light-header h2 {
  color: var(--white);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--off-white);
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===== Buy Section ===== */
.buy-section {
  position: relative;
  background: var(--gradient-primary);
  padding: 100px 0;
  z-index: 5;
  overflow: hidden;
}

.buy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/grid-pattern.png');
  opacity: 0.05;
  z-index: 0;
}

/* Enhanced text visibility in the buy section */
.buy-section .section-header h2,
.buy-section .section-header p,
.buy-section .section-tag {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.buy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.buy-card {
  position: relative;
  height: 100%;
  perspective: 1000px;
}

.buy-card-inner {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 25px;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-md);
}

.buy-card:hover .buy-card-inner {
  transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(255, 255, 255, 0.1);
}

.highlight-card .buy-card-inner {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.chain-icon {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
}

.network-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.network-stat {
  display: flex;
  flex-direction: column;
}

.stat-name {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-bottom: 5px;
}

.contract-container {
  margin-bottom: 20px;
}

.contract-label {
  font-size: 0.8rem;
  color: var(--light-gray);
  margin-bottom: 5px;
}

.contract-address {
  background: rgba(0, 0, 0, 0.2);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 0.9rem;
  margin-bottom: 20px;
  word-break: break-all;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.contract-address::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: var(--transition-normal);
}

.contract-address:hover {
  background: rgba(0, 0, 0, 0.3);
}

.contract-address:hover::before {
  transform: translateX(100%);
  transition: transform 1s;
}

.contract-address .copy-icon {
  flex-shrink: 0;
  margin-left: 5px;
  opacity: 0.5;
  transition: var(--transition-normal);
}

.contract-address:hover .copy-icon {
  opacity: 1;
}

.contract-address.copied {
  background: rgba(78, 205, 196, 0.2);
  color: #4ECDC4;
}

.view-chart {
  margin-top: 15px;
  text-align: center;
}

.view-chart a {
  font-size: 0.9rem;
  color: var(--off-white);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-normal);
}

.view-chart a:hover {
  color: var(--white);
  transform: translateY(-3px);
}

.view-chart svg {
  transition: var(--transition-normal);
}

.view-chart a:hover svg {
  transform: translateX(3px);
}

.multichain-badge {
  background: rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-md);
  padding: 15px;
  margin-bottom: 20px;
}

.multichain-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.multichain-icons img {
  width: 24px;
  height: 24px;
}

.multichain-icons span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
}

.multichain-text {
  text-align: center;
  font-size: 0.9rem;
  color: var(--off-white);
}

.multichain-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.multichain-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--off-white);
  font-size: 0.9rem;
}

.multichain-feature svg {
  color: var(--accent-2);
  flex-shrink: 0;
}

/* ===== Wallet Section ===== */
.wallet-section {
  position: relative;
  background-color: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

.wallet-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.wallet-mockup {
  flex: 1;
  position: relative;
}

.phone-outer {
  position: relative;
  width: 300px;
  height: 600px;
  margin: 0 auto;
  perspective: 1000px;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 30px;
  background: var(--dark-light);
  border-radius: 0 0 20px 20px;
  z-index: 3;
}

.phone-frame {
  position: relative;
  width: 280px;
  height: 570px;
  margin: 0 auto;
  border-radius: 40px;
  background: var(--dark-light);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(138, 43, 226, 0.3);
  overflow: hidden;
  padding: 15px;
  z-index: 2;
  transition: transform var(--transition-normal);
  transform-style: preserve-3d;
  animation: phone-float 6s ease-in-out infinite;
}

@keyframes phone-float {
  0%, 100% {
    transform: translateY(0) rotateY(0);
  }
  25% {
    transform: translateY(-10px) rotateY(-5deg);
  }
  50% {
    transform: translateY(-20px) rotateY(0);
  }
  75% {
    transform: translateY(-10px) rotateY(5deg);
  }
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.phone-reflection {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0) 60%
  );
  pointer-events: none;
  z-index: 3;
  border-radius: 30px;
  animation: reflection 3s ease-in-out infinite;
}

@keyframes reflection {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

.wallet-features-mobile {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.wallet-feature-mobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.feature-icon-mobile {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: rgba(138, 43, 226, 0.1);
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
}

.wallet-feature-mobile:hover .feature-icon-mobile {
  background: rgba(138, 43, 226, 0.2);
  transform: translateY(-5px);
}

.wallet-feature-mobile span {
  font-size: 0.8rem;
  color: var(--light-gray);
}

.orbit-container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.orbit-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 380px;
  height: 380px;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.orbit-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.orbit-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.orbit-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.2) !important;
  box-shadow: var(--shadow-lg), 0 0 15px rgba(138, 43, 226, 0.3);
}

.orbit-icon img {
  width: 60%;
  height: 60%;
  object-fit: contain;
}

.icon-1 {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit-1 15s linear infinite;
}

.icon-2 {
  top: 80px;
  right: 40px;
  animation: orbit-2 15s linear infinite;
}

.icon-3 {
  bottom: 100px;
  right: 20px;
  animation: orbit-3 15s linear infinite;
}

.icon-4 {
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: orbit-4 15s linear infinite;
}

.icon-5 {
  bottom: 100px;
  left: 20px;
  animation: orbit-5 15s linear infinite;
}

.icon-6 {
  top: 80px;
  left: 40px;
  animation: orbit-6 15s linear infinite;
}

@keyframes orbit-1 {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
  50% { transform: translateX(-50%) scale(1.1) rotate(180deg); }
}

@keyframes orbit-2 {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes orbit-3 {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes orbit-4 {
  0%, 100% { transform: translateX(-50%) scale(1) rotate(0deg); }
  50% { transform: translateX(-50%) scale(1.1) rotate(180deg); }
}

@keyframes orbit-5 {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes orbit-6 {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

.wallet-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.wallet-info {
  margin-bottom: 10px;
}

.wallet-subtitle {
  font-size: 2rem;
  margin-bottom: 15px;
  /* Changed from gradient background to solid color for better visibility */
  color: var(--primary-light);
  font-weight: 700;
  /* Added text shadow for better visibility */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.wallet-description {
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.9;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  padding: 25px;
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.03);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gradient-primary);
  transition: height var(--transition-normal);
  border-radius: 4px 0 0 4px;
}

.feature-card:hover {
  transform: translateY(-5px) translateX(5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.08);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.3);
  transition: var(--transition-bounce);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.feature-text {
  flex: 1;
}

.feature-text h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--light-gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.wallet-cta {
  margin-top: 20px;
  display: flex;
  justify-content: flex-start;
}

.wallet-divider {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-top: -1px;
}

.wallet-divider svg {
  width: 100%;
  height: 150px;
  display: block;
}

/* ===== Tokenomics Section ===== */
/* Enhanced Tokenomics Section Styles */
.tokenomics-section {
  position: relative;
  background: linear-gradient(135deg, #5e20c0 0%, #7927db 50%, #8a2be2 100%);
  padding: 100px 0 150px;
  overflow: hidden;
}

/* Add text shadow to all text in tokenomics section for better readability */
.tokenomics-section h2,
.tokenomics-section p,
.tokenomics-item h3,
.tokenomics-section .section-tag,
.tokenomics-item p,
.benefit-card h3,
.benefit-card p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Ensure all text in this section is white, not purple */
  color: var(--white);
}

/* Enhance main headings */
.tokenomics-section h2 {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

/* Add a semi-transparent background to tokenomics items */
.tokenomics-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

.tokenomics-item:hover {
  transform: translateX(10px);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Make the item text more readable */
.tokenomics-item h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5px;
}

.tokenomics-item p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Improve color blocks */
.item-color {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform var(--transition-bounce);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

/* Simple Solid Donut Chart Styles */
.tokenomics-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.donut-container {
  position: relative;
  width: 250px;
  height: 250px;
  margin: 0 auto 30px;
  background: rgba(58, 20, 130, 0.3);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.donut-chart {
  width: 100%;
  height: 100%;
}

/* Donut Chart Styles */
.donut-chart {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}

.donut-segment {
  transition: all 0.3s ease;
  cursor: pointer;
}

.donut-segment:hover {
  stroke-width: 17;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
}

.donut-segment.active {
  stroke-width: 17;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.7));
}

.donut-tooltip {
  position: absolute;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* For token legend improvements */
.token-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background: rgba(58, 20, 130, 0.5);
  border-radius: 20px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--white); /* Added for better visibility */
}

.legend-item:hover {
  background: rgba(58, 20, 130, 0.8);
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.legend-item.active {
  background: rgba(58, 20, 130, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.color-box {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  background-color: var(--color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

/* Animation for segments when they're activated */
@keyframes pulse-segment {
  0%, 100% {
    stroke-width: 15;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
  }
  50% {
    stroke-width: 17;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.7));
  }
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.center-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.center-total {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.center-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Legend styles */
.token-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(58, 20, 130, 0.5);
  border-radius: 20px;
  font-size: 0.9rem;
}

.color-box {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: var(--color);
}

.text {
  color: white;
  font-weight: 500;
}

/* Modern Donut Chart Styles */
.modern-donut-container {
  position: relative;
  width: 280px;
  height: 280px;
  margin: 0 auto 40px;
  background: rgba(58, 20, 130, 0.3);
  border-radius: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.modern-donut {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: #3a1482;
  overflow: hidden;
}

/* Color variables */
:root {
  --burned-color: #FF6B6B;
  --mining-color: #4ECDC4;
  --development-color: #FFD166;
  --community-color: #6A67CE;
}

/* Color classes for legend and items */
.burned-color { background-color: var(--burned-color); }
.mining-color { background-color: var(--mining-color); }
.development-color { background-color: var(--development-color); }
.community-color { background-color: var(--community-color); }

/* Donut center content */
.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: #3a1482;
  border-radius: 50%;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.05);
}

.center-logo {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.center-total {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.center-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Pie slice segments - using conic-gradient for modern browsers */
.donut-segment {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.burned-segment {
  background: conic-gradient(var(--burned-color) 0% 20.26%, transparent 20.26% 100%);
  z-index: 1;
}

.mining-segment {
  background: conic-gradient(transparent 0% 20.26%, var(--mining-color) 20.26% 35.26%, transparent 35.26% 100%);
  z-index: 2;
}

.development-segment {
  background: conic-gradient(transparent 0% 35.26%, var(--development-color) 35.26% 55.26%, transparent 55.26% 100%);
  z-index: 3;
}

.community-segment {
  background: conic-gradient(transparent 0% 55.26%, var(--community-color) 55.26% 100%);
  z-index: 4;
}

/* Hover effects for segments */
.donut-segment:hover {
  filter: brightness(1.2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
  transform: scale(1.03);
}

.donut-segment.active {
  filter: brightness(1.3) drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
  transform: scale(1.05);
}

/* Tooltip */
.donut-tooltip {
  position: absolute;
  padding: 8px 12px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  border-radius: 4px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* Tokenomics Items */
.tokenomics-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 15px;
}

.tokenomics-item:hover {
  transform: translateX(10px);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
}

.tokenomics-item.active {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.item-color {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.tokenomics-item:hover .item-color {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Make section tag more readable */
.tokenomics-section .section-tag {
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Add gradient text effect for main heading */
.tokenomics-section .section-header h2 {
  /* Changed from background gradient to solid white for better visibility */
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhance benefit cards for better readability */
.benefit-card {
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  padding: 25px;
  text-align: center;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.benefit-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.15);
}

.tokenomics-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/grid-pattern.png');
  opacity: 0.05;
  z-index: 0;
}

.tokenomics-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.tokenomics-chart {
  flex: 1;
}

.tokenomics-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tokenomics-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 80px;
}

.benefit-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  margin: 0 auto 20px;
  transition: var(--transition-bounce);
}

.benefit-card:hover .benefit-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.benefit-icon svg {
  width: 30px;
  height: 30px;
}

/* ===== Game Section ===== */
/* Mining Game section text improvements */
.game-section {
  position: relative;
  background: linear-gradient(135deg, #3a1472 0%, #4a1996 50%, #5e20c0 100%);
  padding: 100px 0 150px;
  overflow: hidden;
}

.game-section h2,
.game-section p,
.game-section .section-tag,
.game-subtitle,
.game-description,
.game-feature-content h3,
.game-feature-content p {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* Ensure all text in this section is white for visibility */
  color: var(--white);
}

.game-feature-card {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-feature-card:hover {
  background: rgba(0, 0, 0, 0.35);
}

.game-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, transparent 0%, rgba(13, 16, 23, 0.8) 100%);
  z-index: 1;
}

.game-content {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

.game-visual {
  flex: 1;
  position: relative;
}

.game-graphic {
  position: relative;
  width: 400px;
  height: 400px;
  margin: 0 auto;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-element:hover {
  transform: scale(1.1) !important;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.1);
}

.floating-element svg {
  color: var(--secondary);
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.computer {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  z-index: 5;
  background: rgba(138, 43, 226, 0.2);
  border-radius: 30px;
}

.upgrade {
  top: 20%;
  right: 15%;
  width: 100px;
  height: 100px;
  animation: float-element 6s ease-in-out infinite;
}

.employee {
  bottom: 15%;
  right: 20%;
  width: 120px;
  height: 120px;
  animation: float-element 8s ease-in-out infinite 1s;
}

.nft {
  top: 30%;
  left: 10%;
  width: 90px;
  height: 90px;
  animation: float-element 7s ease-in-out infinite 2s;
}

.coin {
  bottom: 20%;
  left: 15%;
  width: 110px;
  height: 110px;
  animation: float-element 9s ease-in-out infinite 1.5s;
}

@keyframes float-element {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.game-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.game-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0) 100%);
  height: 1px;
  width: 100%;
  transform-origin: center;
}

.line-1 {
  top: 25%;
  transform: rotate(45deg);
  animation: line-pulse 5s infinite;
}

.line-2 {
  top: 50%;
  transform: rotate(-45deg);
  animation: line-pulse 5s infinite 1s;
}

.line-3 {
  top: 75%;
  transform: rotate(45deg);
  animation: line-pulse 5s infinite 2s;
}

.line-4 {
  top: 50%;
  animation: line-pulse 5s infinite 3s;
}

@keyframes line-pulse {
  0%, 100% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.3;
  }
}

.game-features {
  flex: 1;
  position: relative;
}

.game-intro {
  margin-bottom: 30px;
}

.game-subtitle {
  font-size: 2rem;
  margin-bottom: 15px;
  /* Changed from gradient to solid color for better visibility */
  color: var(--accent-3);
  font-weight: 700;
  /* Added text shadow for better visibility */
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.game-description {
  font-size: 1.1rem;
  color: var(--off-white);
  opacity: 0.9;
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.game-feature-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.game-feature-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 255, 255, 0.08);
}

.game-feature-card .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-1), var(--accent-4));
  border-radius: 12px;
}

.game-feature-content {
  flex: 1;
}

.game-feature-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.game-feature-content p {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 0;
}

.game-stats {
  grid-column: span 2;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.game-stat {
  flex: 1;
  text-align: center;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-3);
  margin-bottom: 5px;
  font-family: var(--font-secondary);
}

.game-cta {
  grid-column: span 2;
  margin-top: 30px;
  text-align: center;
}

.game-divider {
  position: relative;
  width: 100%;
  z-index: 2;
  margin-top: -1px;
}

.game-divider svg {
  width: 100%;
  height: 150px;
  display: block;
}

/* ===== Utilities Section ===== */
.utilities-section {
  position: relative;
  background-color: var(--dark);
  padding: 100px 0;
  overflow: hidden;
}

/* Enhanced Utilities Section */
.utilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.utility-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.3s ease, 
              background-color 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: row;
  padding: 0;
}

.utility-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(138, 43, 226, 0.2);
  border-color: rgba(255, 255, 255, 0.1);
}

.utility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: height 0.3s ease;
  border-radius: 4px 0 0 4px;
}

.utility-card:hover::before {
  height: 100%;
}

.utility-icon {
  flex: 0 0 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
  padding: 25px 0;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.utility-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}

.utility-card:hover .utility-icon {
  background: rgba(0, 0, 0, 0.25);
}

.utility-content {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
}

.utility-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.utility-card h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  transition: width 0.3s ease;
}

.utility-card:hover h3::after {
  width: 60px;
}

.utility-card p {
  font-size: 0.95rem;
  color: var(--light-gray);
  margin-bottom: 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.utility-stats {
  display: flex;
  margin-bottom: 20px;
  gap: 20px;
}

.utility-stat {
  display: flex;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.2);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.utility-card:hover .utility-stat {
  background: rgba(0, 0, 0, 0.3);
  transform: translateY(-3px);
}

.utility-stat .stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 2px;
}

.utility-stat .stat-label {
  font-size: 0.75rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.utility-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.3s ease, 
              background 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
}

.utility-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0) 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.utility-button:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

.utility-button:hover::before {
  transform: translateX(100%);
}

.utility-button-accent {
  background: var(--gradient-primary);
  border: none;
}

.utility-button-accent:hover {
  background: var(--gradient-primary);
  box-shadow: 0 5px 15px rgba(138, 43, 226, 0.4);
}

.utility-button svg {
  transition: transform 0.3s ease;
}

.utility-button:hover svg {
  transform: translateX(3px);
}

.utility-button.disabled {
  background: var(--gray);
  cursor: not-allowed;
  opacity: 0.7;
  transform: none !important;
  box-shadow: none !important;
}

.utility-button.disabled:hover {
  transform: none;
  box-shadow: none;
}

.coming-soon-card {
  border: 1px dashed rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.coming-soon-card:hover {
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

/* Special icon styling with glows */
.mining-icon svg {
  filter: drop-shadow(0 0 8px rgba(138, 43, 226, 0.4));
}

.multisender-icon svg {
  filter: drop-shadow(0 0 8px rgba(51, 195, 255, 0.4));
}

.multichain-icon svg {
  filter: drop-shadow(0 0 8px rgba(51, 195, 255, 0.4));
}

.sniffer-icon svg {
  filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.4));
}

.wallet-icon svg {
  filter: drop-shadow(0 0 8px rgba(40, 167, 69, 0.4));
}

.nft-icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.4));
}

/* SVG Animation Styles */
.fan-animation {
  transform-origin: center;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.utilities-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.utility-metrics {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 25px;
}

.utility-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.metric-label {
  font-size: 0.8rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.new-card {
  border: 1px solid var(--accent-3);
}

.new-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-3);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.countdown-container {
  margin-bottom: 25px;
}

.countdown-title {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 15px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-3);
  margin-bottom: 5px;
  font-family: var(--font-secondary);
}

.countdown-label {
  font-size: 0.8rem;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.utilities-blob {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: var(--primary);
  filter: blur(150px);
  opacity: 0.15;
  z-index: 0;
  animation: blob-pulse 10s ease-in-out infinite;
}

@keyframes blob-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.2;
  }
}

/* ===== Roadmap Section ===== */
.roadmap-section {
  position: relative;
  background-color: var(--dark-light);
  padding: 100px 0;
  overflow: hidden;
}

.roadmap-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/dot-pattern.png');
  opacity: 0.03;
  z-index: 0;
}

.roadmap-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
  z-index: 2;
}

.roadmap-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  border-radius: var(--radius-full);
  opacity: 0.6;
  z-index: 1;
}

.timeline-block {
  position: relative;
  margin-bottom: 80px;
  z-index: 5;
}

.timeline-block:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  background: var(--primary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(138, 43, 226, 0.2);
  transition: var(--transition-normal);
}

.timeline-block:hover .timeline-marker {
  background: var(--accent-3);
  box-shadow: 0 0 0 6px rgba(255, 209, 102, 0.3), 0 0 20px rgba(255, 209, 102, 0.5);
}

.timeline-content {
  position: relative;
  width: 45%;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.timeline-block:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: auto;
}

.timeline-block:hover .timeline-content {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.08);
}

.timeline-date {
  display: inline-block;
  padding: 6px 15px;
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.timeline-list {
  list-style: none;
}

.timeline-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
  transition: var(--transition-normal);
}

.timeline-list li:last-child {
  margin-bottom: 0;
}

.timeline-list li::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--gray);
  transition: var(--transition-normal);
}

.timeline-title {
  display: block;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--white);
}

.timeline-info {
  display: block;
  font-size: 0.9rem;
  color: var(--light-gray);
}

.timeline-list li:hover {
  transform: translateX(5px);
}

.timeline-list li:hover::before {
  transform: scale(1.3);
}

.timeline-list li.done {
  color: var(--off-white);
}

.timeline-list li.done::before {
  background-color: var(--accent-2);
}

.timeline-list li.in-progress::before {
  background-color: var(--accent-3);
}

.timeline-block.completed .timeline-marker {
  background-color: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(78, 205, 196, 0.3);
}

.timeline-block.current .timeline-marker {
  background-color: var(--accent-3);
  box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.3);
  animation: pulse-marker 2s infinite;
}

@keyframes pulse-marker {
  0%, 100% {
    box-shadow: 0 0 0 4px rgba(255, 209, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 209, 102, 0.2);
  }
}

/* ===== Partners Section ===== */
/* Enhanced Partner Logos Section */
.partners-section {
  position: relative;
  background-color: #0D1017;
  padding: 80px 0;
  overflow: hidden;
}

/* Add subtle background pattern */
.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(74, 0, 224, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.partners-section .section-header h2 {
  /* Changed from gradient to solid white for better visibility */
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.partners-container {
  position: relative;
  z-index: 2;
}

.partners-slider {
  position: relative;
  overflow: hidden;
  padding: 30px 0;
}

.partners-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
}

/* Improved partner logo styling with better visibility */
.partner-logo {
  width: 160px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: grayscale(0.5) brightness(1.2);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

/* Add subtle gradient background to each logo */
.partner-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 0;
}

.partner-logo:hover {
  transform: translateY(-8px) scale(1.05);
  filter: grayscale(0) brightness(1.3);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(138, 43, 226, 0.3);
  border-color: rgba(138, 43, 226, 0.3);
}

.partner-logo img {
  max-width: 85%;
  max-height: 85%;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.partner-logo:hover img {
  transform: scale(1.1);
}

/* Add shine effect on hover */
.partner-logo::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.partner-logo:hover::after {
  animation: shine 1.5s ease;
}

@keyframes shine {
  0% {
    opacity: 0;
    transform: translate(-30%, -30%) rotate(45deg);
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 0;
    transform: translate(30%, 30%) rotate(45deg);
  }
}

/* Hide original section tag and add an improved one */
.partners-section .section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(138, 43, 226, 0.2);
  color: #FFFFFF; /* Changed to white for better visibility */
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 4px 12px rgba(138, 43, 226, 0.15);
  /* Added text shadow for better visibility */
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Make section description more readable */
.partners-section .section-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Add subtle animations to partners section */
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.partner-logo:nth-child(odd) {
  animation: float 5s ease-in-out infinite;
}

.partner-logo:nth-child(even) {
  animation: float 4s ease-in-out infinite reverse;
}

/* ===== Community Section ===== */
.community-section {
  position: relative;
  background-color: var(--dark-light);
  padding: 100px 0;
  overflow: hidden;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.community-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
  transition: var(--transition-bounce);
  border: 1px solid rgba(255, 255, 255, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.community-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 255, 255, 0.08);
}

.community-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
}

.community-card:hover .community-icon {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.community-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.community-card p {
  font-size: 1rem;
  color: var(--light-gray);
  margin-bottom: 25px;
  flex-grow:
  
  flex-grow: 1;
}

.community-stats {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.community-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: var(--transition-bounce);
  border: none;
  cursor: pointer;
}

.community-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.community-button svg {
  transition: transform var(--transition-normal);
}

.community-button:hover svg {
  transform: translateX(3px);
}

/* ===== Footer ===== */
.footer {
  background-color: var(--dark);
  position: relative;
}

.footer-top {
  padding-top: 80px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  width: 120px;
  margin-bottom: 20px;
}

.footer-tagline {
  color: var(--light-gray);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-social-icon {
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  transition: var(--transition-bounce);
}

.footer-social-icon:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  color: var(--primary-light);
}

.footer-links {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-links-column {
  flex: 1;
  min-width: 160px;
}

.footer-links-column h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-links-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-column a {
  color: var(--light-gray);
  transition: var(--transition-normal);
  display: inline-block;
  position: relative;
  padding-left: 0;
}

.footer-links-column a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-light);
  transition: width var(--transition-normal), left var(--transition-normal);
  transform: translateY(-50%);
  opacity: 0;
}

.footer-links-column a:hover {
  color: var(--white);
  padding-left: 15px;
}

.footer-links-column a:hover::before {
  width: 10px;
  opacity: 1;
}

.footer-newsletter-text {
  color: var(--light-gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.footer-newsletter {
  display: flex;
  height: 48px;
}

.footer-newsletter input {
  flex: 1;
  height: 100%;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  color: var(--white);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-normal);
}

.footer-newsletter input:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.footer-newsletter button {
  width: 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  cursor: pointer;
  transition: var(--transition-normal);
}

.footer-newsletter button:hover {
  background: var(--primary-light);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--light-gray);
  margin-bottom: 0;
}

.disclaimer {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--primary-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

/* ===== Animations and Special Effects ===== */
.fade-in {
  animation: fadeIn 1s var(--transition-normal);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Responsive Styles ===== */
@media (max-width: 1280px) {
  .container {
    width: 95%;
  }
  
  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .wallet-content,
  .tokenomics-content,
  .game-content {
    flex-direction: column;
  }
  
  .orbit-container {
    width: 400px;
    height: 400px;
  }
  
  .timeline-content {
    width: 80%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  .desktop-nav,
  .social-icons {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-text {
    text-align: center;
    margin: 0 auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-chains {
    justify-content: center;
  }
  
  .dog-container {
    opacity: 0.4;
    width: 80%;
    max-width: none;
  }
  
  .game-grid {
    grid-template-columns: 1fr;
  }
  
  .game-stats {
    grid-column: 1;
  }
  
  .game-cta {
    grid-column: 1;
  }
  
  .roadmap-timeline::before {
    left: 40px;
  }
  
  .timeline-marker {
    left: 40px;
  }
  
  .timeline-content {
    width: calc(100% - 80px);
    margin-left: 80px;
  }
  
  .timeline-block:nth-child(even) .timeline-content {
    margin-left: 80px;
    margin-right: 0;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    gap: 30px;
  }

  .utilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .utility-card {
    flex-direction: column;
  }
  
  .utility-icon {
    flex: 0 0 auto;
    padding: 30px 0;
    width: 100%;
  }
  
  .utility-content {
    padding: 20px;
  }
  
  .utility-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .header-left {
    gap: 10px;
  }
  
  .token-price {
    padding: 6px 10px;
  }
  
  .price-value {
    font-size: 0.9rem;
  }
  
  .hero {
    min-height: auto;
    padding-bottom: 60px;
  }
  
  .hero-content {
    padding: 40px 0;
  }
  
  .stats-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-divider {
    width: 80%;
    height: 1px;
    margin: 0 auto;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .button {
    width: 100%;
  }
  
  .buy-cards,
  .utilities-cards,
  .community-cards {
    grid-template-columns: 1fr;
  }
  
  .network-stats {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  
  .wallet-mockup {
    margin-bottom: 40px;
  }
  
  .game-visual {
    display: none;
  }
  
  .game-features {
    width: 100%;
  }
  
  .chart-legend-mobile {
    display: flex;
  }
  
  .partners-logos {
    gap: 20px;
  }
  
  .partner-logo {
    width: 120px;
    height: 50px;
  }

  .utilities-grid {
    grid-template-columns: 1fr;
  }
  
  .utility-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .partner-logo {
    width: 130px;
    height: 70px;
  }
  
  .partners-logos {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .token-price {
    display: none;
  }
  
  .chart-container {
    max-width: 280px;
  }
  
  .chart-center .chart-logo {
    width: 40px;
    height: 40px;
  }
  
  .chart-center .chart-total {
    font-size: 1.5rem;
  }
  
  .orbit-container {
    width: 300px;
    height: 300px;
  }
  
  .orbit-ring {
    width: 280px;
    height: 280px;
  }
  
  .countdown {
    gap: 10px;
  }
  
  .countdown-value {
    font-size: 1.5rem;
  }
  
  .scroll-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .partner-logo {
    width: 110px;
    height: 60px;
  }
  
  .partners-logos {
    gap: 15px;
  }
}

/* ===== Utility Classes ===== */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}