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

:root {
  --primary-green: #00b443;
  --secondary-green: #28a745;
  --accent-green: #20c997;
  --light-green: #d4edda;
  --white: #ffffff;
  --black: #000000;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --transition: all 0.3s ease;
}

[data-theme="dark"] {
  --white: #1a1a1a;
  --black: #ffffff;
  --gray-100: #2d2d2d;
  --gray-200: #3a3a3a;
  --gray-300: #4a4a4a;
  --gray-400: #5a5a5a;
  --gray-500: #6a6a6a;
  --gray-600: #7a7a7a;
  --gray-700: #8a8a8a;
  --gray-800: #9a9a9a;
  --gray-900: #aaaaaa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Dark mode specific styles for community-cta */
[data-theme="dark"] .community-cta {
  background: #1a1a1a; /* Dark background */
  color: #ffffff; /* White text */
  border-color: #3a3a3a;
}

[data-theme="dark"] .community-cta h3 {
  color: #ffffff; /* White text */
}

[data-theme="dark"] .community-cta p {
  color: #cccccc; /* Light gray text */
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  transition: var(--transition);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Preloader Styles */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  color: var(--white);
}

.roadmap-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: var(--transition);
  position: relative;
}

.dot.active {
  background-color: var(--white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  animation: pulse 2s infinite;
}

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

.preloader-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease;
}

.preloader-text p {
  font-size: 1.1rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.3s both;
}

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

.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: var(--white);
  border-radius: 50%;
  animation: float 6s infinite linear;
  opacity: 0.7;
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 6s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 1s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  left: 30%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.particle:nth-child(4) {
  left: 40%;
  animation-delay: 3s;
  animation-duration: 9s;
}

.particle:nth-child(5) {
  left: 50%;
  animation-delay: 4s;
  animation-duration: 5s;
}

.particle:nth-child(6) {
  left: 60%;
  animation-delay: 5s;
  animation-duration: 6s;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Navigation Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1001;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-brand {
  flex: 1;
  text-align: center;
}

.nav-brand h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
  position: relative;
  z-index: 1003;
}

/* Ensure desktop navigation is always visible */
@media (min-width: 901px) {
  .nav-menu {
    display: flex !important;
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

.nav-link {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  display: inline-block;
  padding: 0.4rem 0.8rem;
  cursor: pointer;
  z-index: 1002;
  pointer-events: auto;
  font-size: 0.9rem;
}

.nav-link:hover {
  color: var(--primary-green);
  background-color: rgba(0, 180, 67, 0.1);
  border-radius: 4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-green);
  transition: var(--transition);
}

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

.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-selector select {
  padding: 0.4rem 0.6rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  background-color: var(--white);
  font-size: 0.85rem;
  color: var(--black);
  cursor: pointer;
  transition: var(--transition);
}

.language-selector select:focus {
  outline: none;
  border-color: var(--primary-green);
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--black);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.theme-toggle:hover {
  background-color: var(--gray-100);
  color: var(--primary-green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1005;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--black);
  transition: var(--transition);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #00b443 0%,
    #14f195 30%,
    #e8f5e9 60%,
    #ffffff 100%
  );
  background-size: 400% 400%;
  padding-top: 80px; /* Account for fixed navbar height */
  animation: heroGradientShift 15s ease infinite;
}

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

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.layer-1 {
  background: linear-gradient(45deg, var(--primary-green), transparent);
  animation: parallax 20s infinite linear;
}

.layer-2 {
  background: linear-gradient(135deg, transparent, var(--secondary-green));
  animation: parallax 15s infinite linear reverse;
}

.layer-3 {
  background: linear-gradient(225deg, var(--accent-green), transparent);
  animation: parallax 25s infinite linear;
}

@keyframes parallax {
  0%,
  100% {
    transform: translateX(0) translateY(0);
  }
  25% {
    transform: translateX(-10px) translateY(-10px);
  }
  50% {
    transform: translateX(10px) translateY(10px);
  }
  75% {
    transform: translateX(-5px) translateY(5px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  animation: heroTitleSlideIn 1s ease-out;
  position: relative;
}

.hero-text h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, #00b443, #14f195, #9945ff);
  animation: heroUnderline 1.5s ease-out 0.5s forwards;
}

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

@keyframes heroUnderline {
  0% {
    width: 0;
  }
  100% {
    width: 150px;
  }
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--gray-700);
  margin-bottom: 2rem;
  line-height: 1.6;
  animation: heroSubtitleFadeIn 1s ease-out 0.3s backwards;
}

@keyframes heroSubtitleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: heroButtonsPopIn 0.6s ease-out 0.6s backwards;
}

@keyframes heroButtonsPopIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.btn {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00b443 0%, #14f195 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 180, 67, 0.3);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 180, 67, 0.4), 0 0 30px rgba(20, 241, 149, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 180, 67, 0.2),
    transparent
  );
  transition: left 0.5s;
}

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

.btn-secondary:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 180, 67, 0.3);
  border-color: transparent;
}

.btn-large {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.hero-visual {
  position: relative;
  height: 400px;
}

.floating-tokens {
  position: relative;
  width: 100%;
  height: 100%;
}

.token {
  position: absolute;
  font-size: 2.5rem;
  color: var(--primary-green);
  opacity: 0;
  animation: float-token 6s infinite ease-in-out,
    tokenFadeIn 1s ease-out forwards;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(0, 180, 67, 0.5));
  cursor: pointer;
}

@keyframes tokenFadeIn {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  100% {
    opacity: 0.8;
    transform: scale(1) rotate(360deg);
  }
}

.token:hover {
  transform: scale(1.3) rotate(15deg);
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(0, 180, 67, 0.8));
  animation-play-state: paused;
}

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

.token-2 {
  top: 30%;
  right: 20%;
  animation-delay: 1s;
}

.token-3 {
  bottom: 30%;
  left: 10%;
  animation-delay: 2s;
}

.token-4 {
  bottom: 10%;
  right: 30%;
  animation-delay: 3s;
}

.token-5 {
  top: 50%;
  left: 50%;
  animation-delay: 4s;
}

.token-6 {
  top: 15%;
  left: 60%;
  animation-delay: 5s;
}

.token-7 {
  top: 35%;
  left: 5%;
  animation-delay: 6s;
}

.token-8 {
  top: 55%;
  right: 5%;
  animation-delay: 7s;
}

.token-9 {
  top: 75%;
  left: 30%;
  animation-delay: 8s;
}

.token-10 {
  top: 25%;
  right: 40%;
  animation-delay: 9s;
}

.token-11 {
  top: 45%;
  left: 70%;
  animation-delay: 10s;
}

.token-12 {
  top: 65%;
  right: 25%;
  animation-delay: 11s;
}

.token-13 {
  top: 5%;
  left: 40%;
  animation-delay: 12s;
}

.token-14 {
  top: 85%;
  left: 15%;
  animation-delay: 13s;
}

.token-15 {
  top: 40%;
  right: 50%;
  animation-delay: 14s;
}

@keyframes float-token {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) rotate(5deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
  75% {
    transform: translateY(-30px) rotate(3deg);
  }
}

/* Slideshow Styles */
.slideshow-section {
  padding: 0;
  margin: 0;
  width: 100%;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  margin: auto;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70vh;
  min-height: 500px;
  opacity: 0;
  transform: translateX(100%) scale(0.95);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f0f0f0;
}

.slide.active {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: slideZoomIn 1s ease-out;
}

@keyframes slideZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slide.prev {
  transform: translateX(-100%) scale(0.95);
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.slide:hover img {
  transform: scale(1.05);
}

.slide.active img {
  animation: slideImagePan 20s ease-in-out infinite alternate;
}

@keyframes slideImagePan {
  0% {
    transform: scale(1.1) translateX(0);
  }
  100% {
    transform: scale(1.1) translateX(-5%);
  }
}

/* Powered by Solana Banner */
.solana-banner {
  background: linear-gradient(135deg, #9945ff 0%, #14f195 100%);
  padding: 0.75rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.solana-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 70%
  );
  animation: solanaShine 3s ease-in-out infinite;
}

@keyframes solanaShine {
  0%,
  100% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(100%);
  }
}

.solana-banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 2;
}

.solana-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: solanaPulse 2s ease-in-out infinite;
}

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

.solana-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Footer Solana Banner - Super Cool Animations */
.footer-solana-banner {
  background: linear-gradient(135deg, #9945ff 0%, #14f195 50%, #9945ff 100%);
  background-size: 200% 200%;
  padding: 1.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(153, 69, 255, 0.4),
    0 0 60px rgba(20, 241, 149, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  animation: footerSolanaGradientShift 6s ease infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.footer-solana-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 70%
  );
  animation: footerSolanaShine 3s linear infinite;
  transform-origin: center;
}

@keyframes footerSolanaShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(0deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(360deg);
  }
}

.footer-solana-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(153, 69, 255, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(20, 241, 149, 0.3) 0%,
      transparent 50%
    );
  animation: footerSolanaPulseBackground 4s ease-in-out infinite;
}

@keyframes footerSolanaPulseBackground {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.footer-solana-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.footer-solana-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(153, 69, 255, 0.5), inset 0 0 10px rgba(255, 255, 255, 0.2);
  animation: footerSolanaIcon3D 4s ease-in-out infinite;
  transform-style: preserve-3d;
}

.footer-solana-icon svg {
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  animation: footerSolanaIconRotate 8s linear infinite;
}

@keyframes footerSolanaIcon3D {
  0%,
  100% {
    transform: perspective(500px) rotateY(0deg) scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
      0 0 40px rgba(153, 69, 255, 0.5);
  }
  25% {
    transform: perspective(500px) rotateY(180deg) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
      0 0 60px rgba(20, 241, 149, 0.7);
  }
  50% {
    transform: perspective(500px) rotateY(360deg) scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3),
      0 0 40px rgba(153, 69, 255, 0.5);
  }
  75% {
    transform: perspective(500px) rotateY(540deg) scale(1.15);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
      0 0 60px rgba(20, 241, 149, 0.7);
  }
}

@keyframes footerSolanaIconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.footer-solana-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #14f195 25%,
    #9945ff 50%,
    #14f195 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footerSolanaTextShimmer 3s linear infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5))
    drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

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

.footer-solana-text::before {
  content: "⚡";
  position: absolute;
  left: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  animation: footerSolanaLightning 1.5s ease-in-out infinite;
}

.footer-solana-text::after {
  content: "⚡";
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  animation: footerSolanaLightning 1.5s ease-in-out infinite 0.75s;
}

@keyframes footerSolanaLightning {
  0%,
  100% {
    opacity: 0.3;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
  }
}

/* Hero Structure Section */
.hero-structure-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.hero-structure-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-structure-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  min-height: 400px;
}

.hero-structure-left {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
}

.hero-structure-background {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

.farm-landscape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #28a745 0%, #20c997 50%, #17a2b8 100%);
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.05) 50%,
      transparent 70%
    );
}

.blockchain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(138, 43, 226, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(0, 180, 67, 0.4) 0%,
      transparent 50%
    ),
    linear-gradient(
      45deg,
      transparent 40%,
      rgba(138, 43, 226, 0.1) 50%,
      transparent 60%
    );
  animation: blockchainPulse 4s ease-in-out infinite;
}

@keyframes blockchainPulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

.hero-structure-right {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
}

.hero-structure-coin {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), 0 0 100px rgba(255, 215, 0, 0.3),
    inset 0 0 20px rgba(255, 255, 255, 0.3);
  animation: coinGlow 3s ease-in-out infinite;
}

.coin-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.3) 0%,
    transparent 70%
  );
  animation: coinGlow 3s ease-in-out infinite;
}

.coin-symbol {
  font-size: 4rem;
  z-index: 2;
  position: relative;
  animation: coinRotate 6s linear infinite;
}

@keyframes coinGlow {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 80px rgba(255, 215, 0, 0.8);
  }
}

@keyframes coinRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.hero-structure-text {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-structure-headline {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-green) 0%, #8a2be2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-structure-subheadline {
  font-size: 1.3rem;
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-structure-value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.value-prop {
  text-align: center;
  padding: 2rem 1.5rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-prop:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-green);
}

.value-prop-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  transition: all 0.3s ease;
}

.value-prop:hover .value-prop-icon {
  color: #8a2be2;
  transform: scale(1.1);
}

.value-prop h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin: 0;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
  margin-top: 2rem;
}

.about-text h3:first-child {
  margin-top: 0;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.whitepaper-section {
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  margin-top: 2rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 1)
  );
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  animation: featureCardSlideUp 0.6s ease-out backwards;
  animation-delay: calc(var(--feature-index, 0) * 0.15s);
}

@keyframes featureCardSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 180, 67, 0.05) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  transition: all 0.5s;
}

.feature-card:hover::before {
  animation: featureCardShine 1s linear;
}

@keyframes featureCardShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 180, 67, 0.15),
    0 0 30px rgba(20, 241, 149, 0.1);
  border-color: rgba(0, 180, 67, 0.2);
}

.features-grid .feature-card:nth-child(1) {
  --feature-index: 0;
}
.features-grid .feature-card:nth-child(2) {
  --feature-index: 1;
}
.features-grid .feature-card:nth-child(3) {
  --feature-index: 2;
}

.feature-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: inline-block;
  animation: featureIconBounce 2s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

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

.feature-card:hover i {
  animation: featureIconSpin 0.6s ease-in-out;
  transform: scale(1.2);
}

@keyframes featureIconSpin {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.2);
  }
  100% {
    transform: rotate(360deg) scale(1.2);
  }
}

.feature-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.feature-card p {
  color: var(--gray-600);
  position: relative;
  z-index: 2;
}

/* Tokenomics Section */
.tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chart-container {
  position: relative;
  height: 400px;
  width: 100%;
}

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

.token-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.95)
  );
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-left: 3px solid transparent;
  animation: tokenDetailSlideIn 0.6s ease-out backwards;
  animation-delay: calc(var(--token-index, 0) * 0.1s);
}

@keyframes tokenDetailSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.token-detail::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(0, 180, 67, 0.1), transparent);
  transition: width 0.4s ease;
}

.token-detail:hover {
  transform: translateX(15px) scale(1.02);
  box-shadow: -5px 8px 25px rgba(0, 180, 67, 0.15),
    0 0 20px rgba(20, 241, 149, 0.1);
  border-left-color: var(--primary-green);
}

.token-detail:hover::before {
  width: 100%;
}

.token-detail:nth-child(1) {
  --token-index: 0;
}
.token-detail:nth-child(2) {
  --token-index: 1;
}
.token-detail:nth-child(3) {
  --token-index: 2;
}
.token-detail:nth-child(4) {
  --token-index: 3;
}
.token-detail:nth-child(5) {
  --token-index: 4;
}
.token-detail:nth-child(6) {
  --token-index: 5;
}

.token-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  animation: tokenColorPulse 3s ease-in-out infinite;
  box-shadow: 0 0 15px currentColor;
  transition: all 0.3s ease;
}

@keyframes tokenColorPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 15px currentColor;
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 25px currentColor, 0 0 40px currentColor;
  }
}

.token-detail:hover .token-color {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 0 30px currentColor, 0 0 50px currentColor;
}

.token-info h4 {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.25rem;
}

.token-info p {
  font-weight: 700;
  color: var(--primary-green);
  font-size: 1.1rem;
}

.token-utility {
  margin-top: 4rem;
}

.token-utility h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  text-align: center;
  margin-bottom: 2rem;
}

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

.utility-item {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.utility-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.utility-item i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.utility-item h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.utility-item p {
  color: var(--gray-600);
}

/* How to Buy Section */
.buy-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contract-section {
  background-color: var(--gray-100);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
}

.contract-section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.contract-address {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contract-address input {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  background-color: var(--white);
  color: var(--black);
  font-family: monospace;
  font-size: 0.9rem;
}

.btn-copy {
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 1rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-copy:hover {
  background-color: var(--secondary-green);
}

.contract-warning {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-style: italic;
}

.buy-steps h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Roadmap Section */
.roadmap-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.roadmap-timeline {
  position: relative;
}

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gray-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 80px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 3px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}

.timeline-item.completed .timeline-marker {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}

.timeline-item.current .timeline-marker {
  background-color: var(--secondary-green);
  border-color: var(--secondary-green);
  color: var(--white);
  animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-marker {
  background-color: var(--white);
  border-color: var(--gray-400);
  color: var(--gray-400);
}

.timeline-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

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

.staking-card {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
}

.staking-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.staking-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.staking-card p {
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Partners Section */
.partners-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.current-partners h3,
.prospective-partners h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
  text-align: center;
}

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

.partner-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.partner-card h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.partner-card p {
  color: var(--gray-600);
}

.partners-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.prospective-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.prospective-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.prospective-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

/* Community Section */
.community-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--white);
  color: var(--black);
  text-decoration: none;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
  font-weight: 600;
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.social-link.twitter:hover {
  background-color: #1da1f2;
  color: var(--white);
}

.social-link.telegram:hover {
  background-color: #0088cc;
  color: var(--white);
}

.community-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.community-cta p {
  font-size: 1.1rem;
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Footer */
.footer {
  background-color: #1a1a1a;
  padding: 3rem 0 1rem;
  margin-top: 5rem;
  color: var(--white);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-section h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

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

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-green);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #333333;
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333333;
  color: #cccccc;
}

.terms-link {
  color: #666666;
  text-decoration: none;
  font-size: 0.7rem;
  margin-left: 1rem;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.terms-link:hover {
  opacity: 1;
  color: var(--primary-green);
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
}

/* Roadmap Page Styles */
.roadmap-header {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}

.roadmap-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.roadmap-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: white;
}

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

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(
    to bottom,
    var(--primary-green),
    var(--secondary-green)
  );
  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;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.timeline-item.completed .timeline-marker {
  background: var(--primary-green);
  color: white;
}

.timeline-item.current .timeline-marker {
  background: #ff6b35;
  color: white;
  animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-marker {
  background: var(--gray-300);
  color: var(--gray-600);
}

@keyframes pulse {
  0% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.1);
  }
  100% {
    transform: translateX(-50%) scale(1);
  }
}

.timeline-content {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  width: 45%;
  position: relative;
}

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

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

.timeline-content::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-content::before {
  right: -30px;
  border-left-color: var(--white);
  transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
  left: -30px;
  border-right-color: var(--white);
  transform: translateY(-50%);
}

.timeline-date {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.timeline-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.milestone-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature-tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.25rem 0.75rem;
  border-radius: var(--border-radius);
  font-size: 0.8rem;
  font-weight: 500;
}

.feature-tag.completed {
  background: var(--primary-green);
  color: white;
}

.feature-tag.current {
  background: #ff6b35;
  color: white;
}

.feature-tag.upcoming {
  background: var(--gray-300);
  color: var(--gray-600);
}

.staking-notice {
  background: linear-gradient(
    135deg,
    #00b443 0%,
    #14f195 30%,
    #9945ff 60%,
    #00b443 100%
  );
  background-size: 300% 300%;
  padding: 4rem;
  border-radius: 24px;
  color: white;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 180, 67, 0.3),
    0 0 100px rgba(20, 241, 149, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  margin: 4rem 0;
  animation: stakingGradientShift 8s ease infinite;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

/* Animated Border Light */
.staking-notice::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  animation: stakingBorderLight 4s linear infinite;
  z-index: 1;
}

@keyframes stakingBorderLight {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.staking-notice::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(20, 241, 149, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(153, 69, 255, 0.1) 0%,
      transparent 70%
    );
  animation: stakingPulseBackground 6s ease-in-out infinite;
  z-index: 1;
}

@keyframes stakingPulseBackground {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Animated Background Elements */
.staking-animations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-coin {
  position: absolute;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.6);
  animation: stakingCoinFloat 8s ease-in-out infinite;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-coin:hover {
  transform: scale(1.5) rotate(360deg);
  color: rgba(255, 255, 255, 1);
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
}

@keyframes stakingCoinFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }
  25% {
    transform: translateY(-30px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translateY(-20px) rotate(180deg) scale(0.9);
  }
  75% {
    transform: translateY(-40px) rotate(270deg) scale(1.2);
  }
}

.coin-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.coin-2 {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.coin-3 {
  top: 60%;
  left: 20%;
  animation-delay: 4s;
}

.coin-4 {
  top: 40%;
  right: 25%;
  animation-delay: 6s;
}

.coin-5 {
  top: 70%;
  right: 10%;
  animation-delay: 8s;
}

.pulse-ring {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  animation: pulseExpand 3s ease-out infinite;
}

.ring-1 {
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  margin: -50px 0 0 -50px;
  animation-delay: 0s;
}

.ring-2 {
  top: 50%;
  left: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  animation-delay: 1s;
}

.ring-3 {
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin: -100px 0 0 -100px;
  animation-delay: 2s;
}

/* Coin Spinner */
.coin-spinner {
  position: relative;
  font-size: 4rem;
  animation: stakingCoinSpinner 3s linear infinite;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  padding: 1rem;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes stakingCoinSpinner {
  0% {
    transform: rotate(0deg) scale(1);
  }
  25% {
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    transform: rotate(180deg) scale(1);
  }
  75% {
    transform: rotate(270deg) scale(1.1);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

.sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: stakingSparkleFloat 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8));
  cursor: pointer;
}

.sparkle:hover {
  transform: scale(2) rotate(180deg);
  filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1));
}

@keyframes stakingSparkleFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-20px) rotate(180deg) scale(1.2);
    opacity: 1;
  }
}

.sparkle-1 {
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.sparkle-2 {
  top: -20px;
  right: -20px;
  animation-delay: 0.5s;
}

.sparkle-3 {
  bottom: -20px;
  left: -20px;
  animation-delay: 1s;
}

.sparkle-4 {
  bottom: -20px;
  right: -20px;
  animation-delay: 1.5s;
}

/* Title Animation */
.staking-title-animated {
  animation: stakingTitleGlow 3s ease-in-out infinite alternate;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #14f195 25%,
    #9945ff 50%,
    #14f195 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: stakingTitleShimmer 4s linear infinite,
    stakingTitleGlow 3s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

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

@keyframes stakingTitleGlow {
  0% {
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
  }
  100% {
    filter: drop-shadow(0 0 40px rgba(255, 255, 255, 0.8));
  }
}

.staking-title-animated::after {
  content: "⚡";
  animation: stakingTitleLightning 1.5s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 8px;
  font-size: 1.2em;
}

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

/* Typing Animation for Content */
.staking-content p {
  animation: typing 4s steps(40, end) 1s both;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid rgba(255, 255, 255, 0.8);
  width: 0;
}

.staking-content p.typing-complete {
  white-space: normal;
  border-right: none;
  width: 100%;
}

/* Feature Animations */
.staking-feature {
  animation: stakingFeatureFloat 4s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.staking-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s;
}

.staking-feature:hover::before {
  left: 100%;
}

.staking-feature:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

@keyframes stakingFeatureFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}

.feature-1 {
  animation-delay: 0s;
}

.feature-2 {
  animation-delay: 1.3s;
}

.feature-3 {
  animation-delay: 2.6s;
}

/* Keyframe Animations */
@keyframes floatAround {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translateY(-20px) rotate(90deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-10px) rotate(180deg);
    opacity: 0.4;
  }
  75% {
    transform: translateY(-30px) rotate(270deg);
    opacity: 0.7;
  }
}

@keyframes pulseExpand {
  0% {
    transform: scale(0.5);
    opacity: 0.8;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes coinSpin {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-15px) scale(1.2);
    opacity: 1;
  }
}

@keyframes titleGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
  }
  100% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8),
      0 0 30px rgba(255, 255, 255, 0.4);
  }
}

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

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

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

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

.staking-icon {
  font-size: 3rem;
  opacity: 0.9;
}

.staking-content h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
}

.staking-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
  color: white;
}

.staking-features {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.staking-feature {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: white;
}

/* Responsive roadmap */
@media (max-width: 768px) {
  /* Slideshow responsive styles */
  .slide {
    height: 60vh;
    min-height: 350px;
  }

  .slideshow-section {
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }

  /* Hero Structure responsive styles */
  .hero-structure-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-structure-left {
    height: 300px;
  }

  .hero-structure-right {
    height: 300px;
  }

  .hero-structure-coin {
    width: 150px;
    height: 150px;
  }

  .coin-symbol {
    font-size: 3rem;
  }

  .hero-structure-headline {
    font-size: 2.5rem;
  }

  .hero-structure-subheadline {
    font-size: 1.1rem;
  }

  .hero-structure-value-props {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .value-prop {
    padding: 1.5rem 1rem;
  }

  .roadmap-timeline::before {
    left: 30px;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 4rem;
  }

  .timeline-marker {
    left: 30px;
    transform: translateX(-50%);
  }

  .timeline-content {
    width: 100%;
    margin: 0 !important;
  }

  .timeline-content::before {
    display: none;
  }

  .staking-notice {
    flex-direction: column;
    text-align: center;
  }

  .staking-features {
    justify-content: center;
  }
}

/* Terms Page Styles */
.terms-header {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}

.terms-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.terms-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  color: white;
}

.terms-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
  line-height: 1.8;
}

.terms-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  text-align: center;
}

.terms-content h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-green);
  margin: 3rem 0 1.5rem 0;
  border-bottom: 2px solid var(--primary-green);
  padding-bottom: 0.5rem;
}

.terms-content h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin: 2rem 0 1rem 0;
}

.terms-content p {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
}

.terms-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.terms-content li {
  font-size: 1rem;
  color: var(--gray-700);
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.terms-content li strong {
  color: var(--black);
  font-weight: 600;
}

.last-updated {
  font-style: italic;
  color: var(--gray-600);
  text-align: center;
  margin-bottom: 2rem;
}

.terms-notice {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
}

.terms-notice p {
  margin: 0;
  color: #856404;
  font-weight: 500;
}

.terms-divider {
  text-align: center;
  font-size: 1.5rem;
  color: var(--primary-green);
  margin: 3rem 0;
  font-weight: 300;
}

.terms-acceptance {
  background: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.terms-acceptance p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--black);
}

.terms-footer {
  background: var(--gray-100);
  border-radius: var(--border-radius);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}

.terms-footer h4 {
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.terms-footer p {
  margin: 0.5rem 0;
  color: var(--gray-700);
}

.terms-footer p:last-child {
  font-weight: 600;
  color: var(--black);
}

/* Dark mode for terms */
[data-theme="dark"] .terms-content h2 {
  color: var(--white);
}

[data-theme="dark"] .terms-content h3 {
  color: var(--primary-green);
}

[data-theme="dark"] .terms-content h4 {
  color: var(--white);
}

[data-theme="dark"] .terms-content p {
  color: var(--gray-300);
}

[data-theme="dark"] .terms-content li {
  color: var(--gray-300);
}

[data-theme="dark"] .terms-content li strong {
  color: var(--white);
}

[data-theme="dark"] .terms-notice {
  background: #3d2f00;
  border-color: #6b4c00;
}

[data-theme="dark"] .terms-notice p {
  color: #ffd700;
}

[data-theme="dark"] .terms-acceptance {
  background: var(--gray-800);
}

[data-theme="dark"] .terms-acceptance p {
  color: var(--white);
}

[data-theme="dark"] .terms-footer {
  background: var(--gray-800);
}

[data-theme="dark"] .terms-footer p {
  color: var(--gray-300);
}

[data-theme="dark"] .terms-footer p:last-child {
  color: var(--white);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  background: linear-gradient(
    135deg,
    var(--secondary-green),
    var(--primary-green)
  );
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top i {
  transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
  transform: translateY(-2px);
}

/* Dark mode for scroll to top */
[data-theme="dark"] .scroll-to-top {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .scroll-to-top:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .tokenomics-content {
    grid-template-columns: 1fr;
  }

  .buy-content {
    grid-template-columns: 1fr;
  }

  .roadmap-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Tablet and Mobile Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

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

  .hero-structure-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

@media (max-width: 900px) {
  .nav-container {
    padding: 0.75rem 1rem;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: var(--shadow);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1004;
    opacity: 0;
    visibility: hidden;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
    text-align: center;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-toggle {
    display: flex;
    z-index: 1005;
    position: relative;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

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

  .section-header h2 {
    font-size: 2rem;
  }

  .timeline-item {
    padding-left: 60px;
  }

  .timeline-marker {
    width: 40px;
    height: 40px;
  }

  .roadmap-timeline::before {
    left: 20px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

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

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

  /* Slideshow responsive */
  .slideshow-container {
    height: 50vh;
  }

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

  /* Hero structure responsive */
  .hero-structure-section {
    padding: 3rem 0;
  }

  .hero-structure-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-structure-left {
    order: 2;
  }

  .hero-structure-right {
    order: 1;
  }

  .hero-structure-headline {
    font-size: 2rem;
  }

  .hero-structure-subheadline {
    font-size: 1.1rem;
  }

  .hero-structure-value-props {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* Features grid responsive */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  /* Community section responsive */
  .community-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  /* Whitepaper section responsive */
  .whitepaper-card {
    padding: 2rem;
  }

  .whitepaper-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .whitepaper-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  /* Image sizing for smaller screens */
  img {
    max-width: 100%;
    height: auto;
    width: 100%;
    object-fit: cover;
  }

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

  .contract-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }

  .hero-structure-background img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  /* Hero section text sizing for mobile */
  .hero-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .hero-structure-headline {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-structure-subheadline {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  /* Powered by Solana banner mobile fixes */
  .solana-banner {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    margin: 0.5rem auto;
    width: 90%;
    text-align: center;
  }

  .solana-banner-content {
    flex-direction: column;
    gap: 0.3rem;
  }

  .solana-icon {
    width: 16px;
    height: 16px;
  }

  .solana-text {
    font-size: 0.8rem;
    font-weight: 600;
  }

  /* Navigation */
  .nav-container {
    padding: 0.5rem 1rem;
  }

  .nav-brand h1 {
    font-size: 1.5rem;
  }

  .nav-logo img {
    width: 30px;
    height: 30px;
  }

  /* Hero section */
  .hero-section {
    padding: 2rem 0;
  }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 1rem;
    margin: 1rem 0;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Slideshow */
  .slideshow-container {
    height: 40vh;
  }

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

  /* Hero structure */
  .hero-structure-section {
    padding: 2rem 0;
  }

  .hero-structure-headline {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-structure-subheadline {
    font-size: 1rem;
    margin: 1rem 0;
  }

  .hero-structure-value-props {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .value-prop {
    padding: 1rem;
    text-align: center;
  }

  .value-prop-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .value-prop h3 {
    font-size: 1.1rem;
  }

  .value-prop p {
    font-size: 0.9rem;
  }

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

  .section-header h2 {
    font-size: 1.8rem;
  }

  .section-header p {
    font-size: 1rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

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

  .feature-card p {
    font-size: 0.9rem;
  }

  /* Community */
  .community-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

  .community-feature {
    padding: 1.5rem;
    text-align: center;
  }

  .community-feature h3 {
    font-size: 1.2rem;
  }

  .community-feature p {
    font-size: 0.9rem;
  }

  /* Social buttons */
  .social-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }

  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Whitepaper */
  .whitepaper-card {
    padding: 1.5rem;
  }

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

  .whitepaper-card p {
    font-size: 0.9rem;
  }

  .whitepaper-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .whitepaper-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .whitepaper-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

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

  .footer-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }

  /* Image sizing for extra small screens */
  img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  .slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .contract-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  .hero-structure-background img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  /* Extra small mobile adjustments */
  .hero-text h1 {
    font-size: 1.8rem;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .hero-structure-headline {
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .hero-structure-subheadline {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  /* Powered by Solana banner for small screens */
  .solana-banner {
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    margin: 0.3rem auto;
    width: 95%;
  }

  .solana-banner-content {
    flex-direction: row;
    gap: 0.2rem;
    justify-content: center;
  }

  .solana-icon {
    width: 14px;
    height: 14px;
  }

  .solana-text {
    font-size: 0.7rem;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .feature-card,
  .community-feature {
    padding: 1rem;
  }

  .whitepaper-card {
    padding: 1rem;
  }

  /* Navigation adjustments */
  .nav-container {
    padding: 0.5rem 0.75rem;
  }

  .nav-brand h1 {
    font-size: 1.3rem;
  }

  .nav-logo img {
    width: 28px;
    height: 28px;
  }

  /* Button adjustments */
  .btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  /* Text adjustments */
  .hero-text p,
  .section-header p {
    font-size: 0.9rem;
  }

  .feature-card p,
  .community-feature p,
  .whitepaper-card p {
    font-size: 0.85rem;
  }
}

/* Additional responsive improvements for better mobile experience */
@media (max-width: 600px) {
  /* Solana banner responsive */
  .solana-banner {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .solana-text {
    font-size: 0.8rem;
  }

  .solana-icon {
    width: 16px;
    height: 16px;
  }

  /* Footer solana banner responsive */
  .footer-solana-banner {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .footer-solana-text {
    font-size: 0.8rem;
  }

  .footer-solana-icon {
    width: 16px;
    height: 16px;
  }

  /* Contract section responsive */
  .contract-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contract-image {
    order: 2;
  }

  .contract-details {
    order: 1;
  }

  .contract-details h2 {
    font-size: 1.5rem;
  }

  .contract-details p {
    font-size: 0.9rem;
  }

  .contract-info {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .info-item {
    padding: 1rem;
  }

  .info-item i {
    font-size: 1.2rem;
  }

  .info-item span {
    font-size: 0.9rem;
  }
}

/* Landscape mobile orientation */
@media (max-width: 768px) and (orientation: landscape) {
  .slideshow-container {
    height: 60vh;
  }

  .hero-section {
    padding: 1.5rem 0;
  }

  .section {
    padding: 2rem 0;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Additional responsive utilities */
@media (max-width: 320px) {
  /* Extra small devices */
  .container {
    padding: 0 0.5rem;
  }

  /* Image sizing for smallest screens */
  img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
  }

  .slide img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .contract-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .hero-structure-background img {
    width: 100%;
    height: 120px;
    object-fit: cover;
  }

  .nav-brand h1 {
    font-size: 1.2rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    line-height: 1.1;
  }

  .hero-text p {
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .hero-structure-headline {
    font-size: 1.4rem;
    line-height: 1.1;
  }

  .hero-structure-subheadline {
    font-size: 0.7rem;
    line-height: 1.1;
  }

  /* Hero structure section mobile fixes */
  .hero-structure-section {
    padding: 1rem 0;
  }

  .hero-structure-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-structure-left {
    order: 2;
  }

  .hero-structure-right {
    order: 1;
  }

  .hero-structure-value-props {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .value-prop {
    padding: 0.5rem;
    text-align: center;
  }

  .value-prop h3 {
    font-size: 0.8rem;
  }

  /* Powered by Solana banner for extra small screens */
  .solana-banner {
    padding: 0.3rem 0.6rem;
    font-size: 0.6rem;
    margin: 0.2rem auto;
    width: 98%;
  }

  .solana-banner-content {
    flex-direction: row;
    gap: 0.1rem;
    justify-content: center;
  }

  .solana-icon {
    width: 12px;
    height: 12px;
  }

  .solana-text {
    font-size: 0.6rem;
  }

  .hero-structure-headline {
    font-size: 1.4rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }

  .feature-card,
  .community-feature,
  .whitepaper-card {
    padding: 0.75rem;
  }
}

/* Print styles */
@media print {
  .nav-container,
  .footer,
  .scroll-to-top,
  .solana-banner,
  .footer-solana-banner {
    display: none;
  }

  .hero-section,
  .section {
    page-break-inside: avoid;
  }
}

/* Loading animation for sections */
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Page Header */
.page-header {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #00b443 0%, #14f195 50%, #9945ff 100%);
  background-size: 200% 200%;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: tokenomicsHeaderGradient 8s ease infinite;
}

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

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(20, 241, 149, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(153, 69, 255, 0.15) 0%,
      transparent 50%
    );
  animation: tokenomicsHeaderOrbs 10s ease-in-out infinite;
}

@keyframes tokenomicsHeaderOrbs {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.8;
  }
}

.page-header::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: tokenomicsHeaderPulse 4s ease-in-out infinite;
}

@keyframes tokenomicsHeaderPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.8;
  }
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(20, 241, 149, 0.3), 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: tokenomicsHeaderTitleFloat 3s ease-in-out infinite;
}

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

.page-header p {
  font-size: 1.2rem;
  color: white;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0.95;
}

/* Highlight Section */
.highlight-section {
  background-color: var(--gray-100);
}

/* Button Styles */
.btn-outline {
  background-color: transparent;
  color: #000000; /* Black text */
  border: 2px solid var(--primary-green);
}

.btn-outline:hover {
  background-color: var(--primary-green);
  color: var(--white);
}

/* Dark mode for btn-outline */
[data-theme="dark"] .btn-outline {
  color: #ffffff; /* White text in dark mode */
}

/* Value proposition text styling */
.value-prop h3 {
  color: #000000; /* Black text in light mode */
}

/* Dark mode for value proposition text */
[data-theme="dark"] .value-prop h3 {
  color: #000000; /* Black text in dark mode */
}

/* Feature Highlights */
.feature-highlight {
  text-align: center;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-highlight:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-highlight i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.feature-highlight h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.feature-highlight p {
  color: var(--gray-600);
}

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

.feature-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Vision & Mission */
.vision-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.vision-section,
.mission-section {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.vision-section h2,
.mission-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.vision-section p,
.mission-section p {
  color: var(--gray-700);
  line-height: 1.7;
  font-size: 1.1rem;
}

/* Problem & Solution */
.problem-solution {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.problem-section,
.solution-section {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.problem-section h3,
.solution-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
}

.problem-list,
.solution-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.problem-item,
.solution-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.problem-item:hover,
.solution-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow);
}

.problem-item i,
.solution-item i {
  font-size: 1.5rem;
  color: var(--primary-green);
  margin-top: 0.25rem;
}

.problem-item h4,
.solution-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.problem-item p,
.solution-item p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Whitepaper Section */
.whitepaper-section {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 4rem 0;
  border-radius: var(--border-radius-lg);
  margin: 4rem 0;
}

.whitepaper-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.whitepaper-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.whitepaper-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.whitepaper-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.whitepaper-features .feature {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.whitepaper-features i {
  font-size: 1.2rem;
  color: var(--white);
}

.download-card {
  background-color: var(--white);
  color: var(--black);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.download-card i {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.download-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.download-card p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.team-member {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.member-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.member-avatar i {
  font-size: 2.5rem;
  color: var(--white);
}

.team-member h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.member-bio {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Tokenomics Chart */
.chart-container {
  position: relative;
  height: 400px;
  width: 100%;
}

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

.utility-item {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.utility-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.utility-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.utility-icon i {
  font-size: 2rem;
  color: var(--white);
}

.utility-item h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.utility-item p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.utility-benefits {
  list-style: none;
  padding: 0;
}

.utility-benefits li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: var(--gray-700);
}

.utility-benefits li::before {
  content: "✓";
  color: var(--primary-green);
  font-weight: bold;
}

/* Economics Grid */
.economics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.economics-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.economics-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.card-icon i {
  font-size: 2rem;
  color: var(--white);
}

.economics-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.economics-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.burn-details,
.growth-details,
.security-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.percentage {
  font-weight: 600;
  color: var(--primary-green);
}

.status {
  color: var(--primary-green);
  font-weight: bold;
}

/* Metrics Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  overflow: hidden;
}

.metric-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.98)
  );
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px rgba(0, 180, 67, 0.1), 0 0 0 1px rgba(0, 180, 67, 0.1);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  word-wrap: break-word;
  position: relative;
  animation: metricCardFloat 6s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.2s);
}

@keyframes metricCardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(0.5deg);
  }
  75% {
    transform: translateY(-5px) rotate(-0.5deg);
  }
}

.metric-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(0, 180, 67, 0.1) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: metricCardShine 3s linear infinite;
}

@keyframes metricCardShine {
  0% {
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, #00b443, #14f195, #9945ff);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.metric-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 180, 67, 0.3),
    0 0 40px rgba(20, 241, 149, 0.2), 0 0 0 2px rgba(0, 180, 67, 0.3);
}

.metric-card:hover::after {
  opacity: 1;
  animation: metricCardBorderGlow 2s linear infinite;
}

@keyframes metricCardBorderGlow {
  0%,
  100% {
    filter: hue-rotate(0deg) brightness(1);
  }
  50% {
    filter: hue-rotate(45deg) brightness(1.2);
  }
}

.metric-card:nth-child(1) {
  --card-index: 0;
}
.metric-card:nth-child(2) {
  --card-index: 1;
}
.metric-card:nth-child(3) {
  --card-index: 2;
}
.metric-card:nth-child(4) {
  --card-index: 3;
}

.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #00b443 0%, #14f195 50%, #00b443 100%);
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: metricValueShimmer 4s linear infinite;
  filter: drop-shadow(0 0 10px rgba(0, 180, 67, 0.3));
}

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

.metric-card:hover .metric-value {
  animation: metricValuePulse 0.6s ease-in-out,
    metricValueShimmer 2s linear infinite;
  transform: scale(1.1);
}

@keyframes metricValuePulse {
  0%,
  100% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1.15);
  }
}

.metric-label {
  color: var(--gray-600);
  font-weight: 500;
  position: relative;
  z-index: 2;
}

/* Responsive design for metrics */
@media (max-width: 768px) {
  .metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .metric-card {
    padding: 1.5rem;
  }

  .metric-value {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .metric-value {
    font-size: 1.8rem;
  }
}

/* Community Section */
.community-content {
  margin-top: 3rem;
}

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

.stat-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
}

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

.community-feature {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.community-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.community-feature .feature-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.community-feature h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.community-feature p {
  color: var(--gray-600);
  line-height: 1.6;
}

.social-links {
  text-align: center;
  margin-bottom: 4rem;
}

.social-links h3 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  min-width: 120px;
  justify-content: center;
}

.social-btn.twitter {
  background-color: var(--primary-green);
  color: white;
}

.social-btn.telegram {
  background-color: var(--secondary-green);
  color: white;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.community-cta {
  background: #ffffff; /* Pure white background */
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  color: #000000; /* Pure black text */
  border: 1px solid #e5e5e5;
}

.community-cta h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000000; /* Pure black text */
}

.community-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #333333; /* Dark gray text */
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 160px;
}

/* Responsive community section */
@media (max-width: 768px) {
  .community-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

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

  .community-features {
    grid-template-columns: 1fr;
  }

  .social-buttons {
    flex-direction: column;
    align-items: center;
  }

  .social-btn {
    width: 200px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 200px;
  }
}

/* Whitepaper Section */
.whitepaper-content {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.whitepaper-card {
  background-color: var(--white);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 600px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.whitepaper-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-green),
    var(--secondary-green)
  );
}

.whitepaper-icon {
  font-size: 3rem;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.whitepaper-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
}

.whitepaper-card p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.whitepaper-details {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.whitepaper-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-600);
  font-size: 0.9rem;
}

.whitepaper-details .detail-item i {
  color: var(--primary-green);
}

.whitepaper-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.whitepaper-buttons .btn {
  min-width: 180px;
}

.whitepaper-buttons .btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.whitepaper-notice {
  background-color: var(--gray-100);
  padding: 1rem;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--gray-600);
  font-size: 0.9rem;
  text-align: left;
}

.whitepaper-notice i {
  color: var(--primary-green);
  font-size: 1.1rem;
}

/* Responsive whitepaper section */
@media (max-width: 768px) {
  .whitepaper-card {
    padding: 2rem;
  }

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

  .whitepaper-buttons {
    flex-direction: column;
  }

  .whitepaper-buttons .btn {
    min-width: auto;
    width: 100%;
  }
}

/* Contract Section */
.contract-section {
  background-color: var(--gray-100);
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  margin-bottom: 3rem;
}

.contract-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contract-image {
  text-align: center;
}

.contract-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 768px) {
  .contract-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contract-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
  }
}

@media (max-width: 480px) {
  .contract-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
}

@media (max-width: 320px) {
  .contract-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
}

.contract-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.contract-section p {
  color: var(--gray-600);
  margin-bottom: 2rem;
}

.contract-address {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contract-address input {
  flex: 1;
  padding: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--border-radius);
  background-color: var(--white);
  color: var(--black);
  font-family: monospace;
  font-size: 0.9rem;
}

.btn-copy {
  background-color: var(--primary-green);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-copy:hover {
  background-color: var(--secondary-green);
}

.contract-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.info-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.info-item span {
  color: var(--gray-700);
  font-weight: 500;
}

/* Steps Container */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.step:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.step-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
}

.detail-item i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.detail-item span {
  color: var(--gray-700);
  font-weight: 500;
}

/* Exchanges Grid */
.exchanges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.exchange-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.exchange-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.exchange-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.exchange-logo i {
  font-size: 2rem;
  color: var(--white);
}

.exchange-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.exchange-card .exchange-type {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
}

.exchange-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.exchange-features span {
  background-color: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Security Tips */
.security-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.tip-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.tip-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.tip-icon i {
  font-size: 2rem;
  color: var(--white);
}

.tip-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.tip-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

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

.roadmap-timeline::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--gray-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 4rem;
  padding-left: 100px;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border: 3px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  z-index: 2;
}

.timeline-item.completed .timeline-marker {
  background-color: var(--primary-green);
  border-color: var(--primary-green);
  color: var(--white);
}

.timeline-item.current .timeline-marker {
  background-color: var(--secondary-green);
  border-color: var(--secondary-green);
  color: var(--white);
  animation: pulse 2s infinite;
}

.timeline-item.upcoming .timeline-marker {
  background-color: var(--white);
  border-color: var(--gray-400);
  color: var(--gray-400);
}

.timeline-content {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

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

.timeline-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
}

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

.timeline-status.completed {
  background-color: var(--light-green);
  color: var(--primary-green);
}

.timeline-status.current {
  background-color: var(--secondary-green);
  color: var(--white);
}

.timeline-status.upcoming {
  background-color: var(--gray-200);
  color: var(--gray-600);
}

.timeline-content p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.milestone-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.milestone-details .detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: var(--gray-100);
  border-radius: var(--border-radius);
}

.milestone-details .detail-item i {
  color: var(--primary-green);
  font-size: 1rem;
}

.milestone-details .detail-item span {
  color: var(--gray-700);
  font-weight: 500;
}

/* Staking Notice */
.staking-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
}

.staking-card {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 600px;
  width: 100%;
}

.staking-icon {
  width: 100px;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}

.staking-icon i {
  font-size: 3rem;
  color: var(--white);
}

.staking-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.staking-card p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.staking-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.staking-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
}

.staking-features .feature i {
  font-size: 1.2rem;
}

/* Future Plans */
.future-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.plan-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.plan-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.plan-icon i {
  font-size: 2rem;
  color: var(--white);
}

.plan-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.plan-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.plan-timeline {
  background-color: var(--primary-green);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
}

/* Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.partner-logo {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.partner-logo i {
  font-size: 3rem;
  color: var(--white);
}

.partner-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.partner-type {
  color: var(--primary-green);
  font-weight: 600;
  margin-bottom: 1rem;
}

.partner-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.partner-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.partner-features span {
  background-color: var(--gray-100);
  color: var(--gray-700);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.partner-website a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.partner-website a:hover {
  color: var(--secondary-green);
}

/* Prospective Partners */
.prospective-partners {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.prospective-category h3 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 2rem;
  text-align: center;
}

.prospective-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.prospective-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.prospective-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-lg);
}

.prospective-item i {
  color: var(--primary-green);
  font-size: 1.5rem;
  margin-top: 0.25rem;
}

.item-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.item-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Become Partner */
.become-partner {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.become-partner h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.become-partner p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.cta-features .feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
}

.cta-features .feature i {
  font-size: 1.2rem;
}

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

.stat-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 1.1rem;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--black);
  transition: var(--transition);
}

.social-link:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.social-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
}

.social-link.twitter .social-icon {
  background-color: #1da1f2;
}

.social-link.telegram .social-icon {
  background-color: #0088cc;
}

.social-content {
  flex: 1;
}

.social-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.social-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.social-stats {
  color: var(--primary-green);
  font-weight: 600;
}

.social-arrow {
  color: var(--gray-400);
  font-size: 1.2rem;
}

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

/* Guidelines */
.guidelines {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.guideline-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.guideline-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.guideline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guideline-icon i {
  font-size: 1.5rem;
  color: var(--white);
}

.guideline-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.guideline-content p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Community CTA */
.community-cta {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  padding: 4rem;
  border-radius: var(--border-radius-lg);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-green);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-green);
}

/* ========================================
   MOBILE RESPONSIVE STYLES FOR ANIMATIONS
   ======================================== */

/* Tablet and below */
@media (max-width: 768px) {
  /* Page Header Animations */
  .page-header {
    padding: 6rem 0 3rem;
  }

  .page-header h1 {
    font-size: 2rem;
  }

  .page-header p {
    font-size: 1rem;
  }

  .page-header::after {
    width: 300px;
    height: 300px;
  }

  /* Footer Solana Banner - Mobile Optimization */
  .footer-solana-banner {
    padding: 1.2rem 0;
    border-radius: 12px;
  }

  .footer-solana-content {
    gap: 0.8rem;
  }

  .footer-solana-icon {
    width: 35px;
    height: 35px;
  }

  .footer-solana-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-solana-text {
    font-size: 0.95rem;
    letter-spacing: 1px;
  }

  .footer-solana-text::before,
  .footer-solana-text::after {
    font-size: 1rem;
    left: -20px;
    right: -20px;
  }

  /* Reduce animation intensity on mobile for performance */
  .footer-solana-banner::before {
    animation-duration: 4s;
  }

  .footer-solana-icon {
    animation-duration: 5s;
  }

  /* Metric Cards - Mobile */
  .metrics-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .metric-card {
    padding: 1.5rem;
  }

  .metric-value {
    font-size: 2rem;
  }

  /* Reduce floating animation on mobile */
  @keyframes metricCardFloat {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-5px);
    }
  }

  .metric-card:hover {
    transform: translateY(-10px) scale(1.02);
  }

  /* Token Details - Mobile */
  .token-detail {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .token-detail:hover {
    transform: translateX(10px) scale(1.01);
  }

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

  .token-info h4 {
    font-size: 0.9rem;
  }

  .token-info small {
    font-size: 0.75rem;
  }

  /* Hero Section - Mobile */
  .hero-section {
    min-height: 70vh;
  }

  .hero-content {
    flex-direction: column;
    padding: 2rem 1rem;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  /* Hero Structure Section */
  .hero-structure-headline {
    font-size: 1.8rem;
  }

  .hero-structure-subheadline {
    font-size: 1rem;
  }

  /* Reduce complex animations on mobile for better performance */
  .footer-solana-banner::after {
    animation-duration: 5s;
  }

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

/* Mobile phones */
@media (max-width: 480px) {
  /* Page Header */
  .page-header {
    padding: 5rem 0 2.5rem;
  }

  .page-header h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .page-header p {
    font-size: 0.9rem;
  }

  .page-header::after {
    width: 200px;
    height: 200px;
  }

  /* Footer Solana Banner - Small Mobile */
  .footer-solana-banner {
    padding: 1rem 0;
    border-radius: 10px;
  }

  .footer-solana-content {
    gap: 0.6rem;
    flex-wrap: wrap;
  }

  .footer-solana-icon {
    width: 30px;
    height: 30px;
  }

  .footer-solana-icon svg {
    width: 16px;
    height: 16px;
  }

  .footer-solana-text {
    font-size: 0.85rem;
    letter-spacing: 0.8px;
  }

  .footer-solana-text::before,
  .footer-solana-text::after {
    display: none; /* Hide lightning on very small screens */
  }

  /* Simplify animations on small mobile */
  .footer-solana-icon {
    animation: footerSolanaPulseSimple 3s ease-in-out infinite;
  }

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

  /* Metric Cards */
  .metric-card {
    padding: 1.2rem;
  }

  .metric-value {
    font-size: 1.8rem;
  }

  .metric-label {
    font-size: 0.85rem;
  }

  /* Turn off complex hover effects on mobile */
  .metric-card:hover {
    transform: translateY(-5px);
  }

  /* Token Details */
  .token-detail {
    padding: 0.7rem;
    gap: 0.6rem;
    font-size: 0.85rem;
  }

  .token-detail:hover {
    transform: translateX(8px);
  }

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

  .token-info h4 {
    font-size: 0.85rem;
  }

  .token-info small {
    font-size: 0.7rem;
  }

  /* Hero buttons */
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Reduce animation complexity for better mobile performance */
  .metric-card::before {
    animation-duration: 4s;
  }

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

/* Extra small devices */
@media (max-width: 360px) {
  .page-header h1 {
    font-size: 1.4rem;
  }

  .footer-solana-text {
    font-size: 0.75rem;
  }

  .metric-value {
    font-size: 1.5rem;
  }

  .token-detail {
    padding: 0.6rem;
  }

  .token-info h4 {
    font-size: 0.8rem;
  }
}

/* Landscape mode optimization for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-section {
    min-height: 100vh;
  }

  .page-header {
    padding: 4rem 0 2rem;
  }

  .page-header h1 {
    font-size: 1.8rem;
  }
}

/* Performance optimization - Reduce animations on low-end devices */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .footer-solana-banner::before,
  .footer-solana-banner::after,
  .metric-card::before {
    animation: none !important;
  }
}
