/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0e1a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #00d4ff;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 10px #00d4ff;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.particle:nth-child(2) {
  top: 80%;
  left: 80%;
  animation-delay: 1s;
}
.particle:nth-child(3) {
  top: 40%;
  left: 40%;
  animation-delay: 2s;
}
.particle:nth-child(4) {
  top: 60%;
  left: 10%;
  animation-delay: 3s;
}
.particle:nth-child(5) {
  top: 10%;
  left: 90%;
  animation-delay: 4s;
}
.particle:nth-child(6) {
  top: 90%;
  left: 30%;
  animation-delay: 5s;
}
.particle:nth-child(7) {
  top: 30%;
  left: 70%;
  animation-delay: 1.5s;
}
.particle:nth-child(8) {
  top: 70%;
  left: 50%;
  animation-delay: 2.5s;
}
.particle:nth-child(9) {
  top: 50%;
  left: 15%;
  animation-delay: 3.5s;
}
.particle:nth-child(10) {
  top: 15%;
  left: 60%;
  animation-delay: 4.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 1;
  }
  33% {
    transform: translateY(-30px) rotate(120deg);
    opacity: 0.8;
  }
  66% {
    transform: translateY(30px) rotate(240deg);
    opacity: 0.6;
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.1);
  z-index: 1000;
  padding: 1rem 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-icon {
  position: relative;
}

.logo-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  color: white;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
  }
  to {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
  }
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1rem;
}

.nav-menu a {
  color: #b0b8c8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #00d4ff;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #00d4ff, #0099cc);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.login-btn {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 92, 231, 0.3);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(108, 92, 231, 0.3);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #00d4ff;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.gradient-text {
  background: linear-gradient(135deg, #00d4ff, #0099cc, #6c5ce7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.2rem;
  color: #b0b8c8;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.token-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00d4ff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b0b8c8;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-info {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 0.5rem;
  margin-bottom: 2rem;
}

.contract-label {
  display: block;
  color: #b0b8c8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-address {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contract-address span {
  font-family: "Courier New", monospace;
  color: #00d4ff;
  font-weight: 600;
  word-break: break-all;
  flex: 1;
}

.copy-btn {
  background: rgba(0, 212, 255, 0.2);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: #00d4ff;
  padding: 0.5rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(0, 212, 255, 0.3);
  transform: scale(1.1);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

.btn-secondary {
  background: #4cc8ab;
  color: #ffffff;
  border: 2px solid rgba(0, 212, 255, 0.5);
}

.btn-secondary:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b8c8;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.social-icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.2);
}

.social-icon.telegram:hover {
  color: #0088cc;
  border-color: #0088cc;
}
.social-icon.twitter:hover {
  color: #1da1f2;
  border-color: #1da1f2;
}
.social-icon.discord:hover {
  color: #7289da;
  border-color: #7289da;
}
.social-icon.reddit:hover {
  color: #ff4500;
  border-color: #ff4500;
}
.social-icon.medium:hover {
  color: #00ab6c;
  border-color: #00ab6c;
}
.social-icon.github:hover {
  color: #ffffff;
  border-color: #ffffff;
}

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
  position: relative;
}

.cube-container {
  position: relative;
  transform-style: preserve-3d;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotateX(0deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}

.main-cube {
  width: 120px;
  height: 120px;
  position: relative;
  transform-style: preserve-3d;
}

.cube-face {
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(0, 153, 204, 0.8));
  border: 2px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 800;
  color: white;
  backdrop-filter: blur(10px);
}

.cube-face.front {
  transform: rotateY(0deg) translateZ(60px);
}
.cube-face.back {
  transform: rotateY(180deg) translateZ(60px);
}
.cube-face.right {
  transform: rotateY(90deg) translateZ(60px);
}
.cube-face.left {
  transform: rotateY(-90deg) translateZ(60px);
}
.cube-face.top {
  transform: rotateX(90deg) translateZ(60px);
}
.cube-face.bottom {
  transform: rotateX(-90deg) translateZ(60px);
}

.floating-cube {
  position: absolute;
  animation: float-cube 4s ease-in-out infinite;
}

.mini-cube {
  position: absolute;
  animation: float-cube 4s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.cube-1 {
  top: -80px;
  left: -100px;
  animation-delay: 0s;
}
.cube-2 {
  top: -60px;
  right: -120px;
  animation-delay: 1s;
}
.cube-3 {
  bottom: -80px;
  left: -80px;
  animation-delay: 2s;
}
.cube-4 {
  bottom: -60px;
  right: -100px;
  animation-delay: 3s;
}
.cube-5 {
  top: 50px;
  left: -150px;
  animation-delay: 0.5s;
}
.cube-6 {
  top: 80px;
  right: -140px;
  animation-delay: 1.5s;
}

@keyframes float-cube {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #b0b8c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #b0b8c8;
}

/* About Section */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(108, 92, 231, 0.05));
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.about-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.about-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.about-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.about-card p {
  color: #b0b8c8;
  line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics {
  padding: 100px 0;
  background: #0a0e1a;
}

.tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chart-section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chart-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.chart-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.center-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.center-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 2px;
}

.tokenomics-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tokenomics-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.tokenomics-item:hover {
  transform: translateX(10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.token-color {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
}

.token-info {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.token-label {
  font-weight: 600;
  color: #ffffff;
}

.token-percentage {
  font-weight: 800;
  font-size: 1.1rem;
  color: #00d4ff;
}

.token-amount {
  font-size: 0.9rem;
  color: #b0b8c8;
  font-family: "Courier New", monospace;
}

/* Roadmap Section */
.roadmap {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 212, 255, 0.05));
}

.roadmap-timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #00d4ff, #6c5ce7);
  transform: translateX(-50%);
}

.roadmap-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.roadmap-item:nth-child(even) {
  flex-direction: row-reverse;
}

.roadmap-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.roadmap-item.active .roadmap-icon {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 30px rgba(108, 92, 231, 0.4);
  }
  50% {
    box-shadow: 0 0 50px rgba(108, 92, 231, 0.8);
  }
}

.roadmap-content {
  width: 45%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.roadmap-content:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
}

.roadmap-item:nth-child(odd) .roadmap-content {
  margin-right: auto;
}

.roadmap-item:nth-child(even) .roadmap-content {
  margin-left: auto;
}

.roadmap-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.roadmap-content p {
  color: #b0b8c8;
  line-height: 1.6;
}

/* Team Section */
.team {
  padding: 100px 0;
  background: #0a0e1a;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.team-member {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.team-member:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.member-avatar {
  margin-bottom: 1.5rem;
}

.avatar-placeholder {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.team-member h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.member-role {
  color: #00d4ff;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.member-bio {
  color: #b0b8c8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.member-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.member-socials a {
  width: 35px;
  height: 35px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b0b8c8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.member-socials a:hover {
  color: #00d4ff;
  border-color: #00d4ff;
  transform: translateY(-2px);
}

/* Community Section */
.community {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(108, 92, 231, 0.05));
}

.community-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.stat-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.stat-icon {
  font-size: 3rem;
  color: #00d4ff;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #b0b8c8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: #050810;
  border-top: 1px solid rgba(0, 212, 255, 0.1);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.footer-text p {
  color: #b0b8c8;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-section h4 {
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.footer-section a {
  display: block;
  color: #b0b8c8;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00d4ff;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #b0b8c8;
  margin-bottom: 0.5rem;
}

.footer-quote {
  font-style: italic;
  color: #6c5ce7;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .tokenomics-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .chart-container {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .token-stats {
    justify-content: center;
    gap: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .chart-container {
    width: 300px;
    height: 300px;
  }

  .roadmap-timeline .timeline-line {
    left: 40px;
  }

  .roadmap-icon {
    left: 40px !important;
  }

  .roadmap-content {
    width: calc(100% - 100px);
    margin-left: 100px !important;
  }

  .roadmap-item {
    flex-direction: row !important;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.8rem;
  }

  .chart-container {
    width: 400px;
    height: 431px;
  }

  .center-logo {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .social-icons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile Navigation */
.nav-menu.active {
  display: flex;
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100vh - 80px);
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 999;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.logo-image {
  height: 100%;
  max-height: 40px;
}
/* Mission Section */
.mission {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 212, 255, 0.05));
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-text {
  color: #b0b8c8;
  line-height: 1.8;
}

.mission-list {
  margin: 1.5rem 0;
  list-style: none;
}

.mission-list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}

.mission-list li i {
  position: absolute;
  left: 0;
  top: 4px;
  color: #00d4ff;
}

.mission-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Token Sale Section */
.tokensale {
  padding: 100px 0;
  background: #0a0e1a;
}

.sale-phases {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.phase-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.phase-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
}

.phase-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
}

.phase-details {
  margin-bottom: 1.5rem;
}

.phase-details p {
  margin-bottom: 0.8rem;
  color: #b0b8c8;
}

.phase-details span {
  color: #00d4ff;
  font-weight: 600;
  display: inline-block;
  width: 60px;
}

.sale-progress {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.sale-progress h4 {
  color: #ffffff;
  margin-bottom: 1rem;
  text-align: center;
}

.progress-bar {
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #6c5ce7);
  border-radius: 5px;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  color: #b0b8c8;
  font-size: 0.9rem;
}

/* Partners Section */
.partners {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(108, 92, 231, 0.05));
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.partner-logo:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 15px 35px rgba(0, 212, 255, 0.1);
}

.partner-logo img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(100%) brightness(1.5);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: grayscale(0%) brightness(1);
}

/* Burn Section */
.burn {
  padding: 100px 0;
  background: #0a0e1a;
}

.burn-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.burn-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.burn-stats .stat-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.burn-stats .stat-card:hover {
  transform: translateY(-5px);
  border-color: #ff6b6b;
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.1);
}

.burn-stats .stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ff6b6b;
  margin-bottom: 0.5rem;
}

.burn-stats .stat-label {
  color: #b0b8c8;
  font-size: 0.9rem;
}

.burn-details {
  color: #b0b8c8;
  line-height: 1.8;
}

.burn-details ul {
  margin: 1.5rem 0;
  list-style: none;
}

.burn-details ul li {
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.5rem;
}

.burn-details ul li:before {
  content: "•";
  color: #ff6b6b;
  position: absolute;
  left: 0;
}

/* Ecosystem Section */
.ecosystem {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.05), rgba(0, 212, 255, 0.05));
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ecosystem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.ecosystem-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.1);
}

.ecosystem-card .card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.ecosystem-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.ecosystem-card p {
  color: #b0b8c8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.status {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status.live {
  background: rgba(76, 209, 55, 0.1);
  color: #4cd137;
  border: 1px solid #4cd137;
}

.status.coming-soon {
  background: rgba(253, 203, 110, 0.1);
  color: #fdca6e;
  border: 1px solid #fdca6e;
}

.status.development {
  background: rgba(85, 230, 193, 0.1);
  color: #55e6c1;
  border: 1px solid #55e6c1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .mission-content,
  .burn-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .sale-phases {
    grid-template-columns: 1fr;
  }

  .burn-stats {
    grid-template-columns: 1fr;
  }
}
/* Community Section Updates */
.community-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  text-align: center;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #b0b8c8;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-success {
  background: rgba(76, 209, 55, 0.1);
  border: 1px solid #4cd137;
  color: #4cd137;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .community-content {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Network Stats */
.network-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.network-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.network-item {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 1rem;
}

.network-label {
  display: block;
  color: #b0b8c8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.network-address {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.network-address span {
  font-family: "Courier New", monospace;
  color: #00d4ff;
  font-weight: 600;
  word-break: break-all;
  flex: 1;
  font-size: 0.9rem;
}

/* MetaMask Button */
.metamask-btn {
  background: linear-gradient(135deg, #f6851b, #e2761b);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(246, 133, 27, 0.3);
}

.metamask-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(246, 133, 27, 0.4);
}

/* Enhanced Button Styles */
.btn-accent {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  color: white;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.4);
}

.btn-outline {
  background: #f4639f;
  color: #ffffff;
  border: 2px solid rgba(0, 212, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

.btn-disabled {
  background: rgba(255, 255, 255, 0.1);
  color: #666;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Enhanced Ecosystem Section */
.ecosystem {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(108, 92, 231, 0.05));
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.ecosystem-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  padding: 2.5rem;
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.ecosystem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff, #6c5ce7, #00d4ff);
  background-size: 200% 100%;
  animation: gradient-flow 3s ease-in-out infinite;
}

@keyframes gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.ecosystem-card.featured {
  border: 2px solid rgba(0, 212, 255, 0.3);
  transform: scale(1.02);
}

.ecosystem-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.15);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  position: relative;
}

.card-icon.mining {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
}

.card-icon.wallet {
  background: linear-gradient(135deg, #6c5ce7, #a29bfe);
  box-shadow: 0 0 30px rgba(108, 92, 231, 0.4);
}

.card-icon.seedround {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  box-shadow: 0 0 30px rgba(78, 205, 196, 0.4);
}

.card-icon.explorer {
  background: linear-gradient(135deg, #fd79a8, #e84393);
  box-shadow: 0 0 30px rgba(253, 121, 168, 0.4);
}

.card-icon.defi {
  background: linear-gradient(135deg, #fdcb6e, #e17055);
  box-shadow: 0 0 30px rgba(253, 203, 110, 0.4);
}

.card-icon.nft {
  background: linear-gradient(135deg, #a29bfe, #6c5ce7);
  box-shadow: 0 0 30px rgba(162, 155, 254, 0.4);
}

.status-badge {
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.status-badge.live {
  background: rgba(76, 209, 55, 0.2);
  color: #4cd137;
  border: 1px solid #4cd137;
  animation: pulse-live 2s ease-in-out infinite;
}

.status-badge.exclusive {
  background: rgba(253, 121, 168, 0.2);
  color: #fd79a8;
  border: 1px solid #fd79a8;
  animation: pulse-exclusive 2s ease-in-out infinite;
}

.status-badge.coming-soon {
  background: rgba(253, 203, 110, 0.2);
  color: #fdcb6e;
  border: 1px solid #fdcb6e;
}

.status-badge.development {
  background: rgba(85, 230, 193, 0.2);
  color: #55e6c1;
  border: 1px solid #55e6c1;
}

@keyframes pulse-live {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(76, 209, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(76, 209, 55, 0.6);
  }
}

@keyframes pulse-exclusive {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(253, 121, 168, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(253, 121, 168, 0.6);
  }
}

.ecosystem-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #b0b8c8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ecosystem-card p {
  color: #b0b8c8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.card-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.card-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #b0b8c8;
  font-size: 0.9rem;
}

.card-features span i {
  color: #00d4ff;
  font-size: 0.8rem;
}

.card-btn {
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Enhanced Tokenomics */
.center-supply {
  font-size: 0.9rem;
  color: #b0b8c8;
  margin-top: 0.5rem;
  font-weight: 500;
}

.supply-info {
  margin-bottom: 2rem;
}

.supply-info h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.total-supply {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.supply-label {
  color: #b0b8c8;
  font-weight: 500;
}

.supply-amount {
  color: #00d4ff;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: "Courier New", monospace;
}

/* Enhanced Roadmap */
.roadmap-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.roadmap-features span {
  font-size: 0.9rem;
  color: #b0b8c8;
  padding: 0.3rem 0;
}

/* Notification System */
.notification {
  position: fixed;
  top: 100px;
  right: 20px;
  background: rgba(10, 14, 26, 0.95);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 15px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10000;
  backdrop-filter: blur(20px);
  animation: slideIn 0.3s ease-out;
  max-width: 400px;
}

.notification.success {
  border-color: rgba(76, 209, 55, 0.5);
}

.notification.error {
  border-color: rgba(255, 107, 107, 0.5);
}

.notification.warning {
  border-color: rgba(253, 203, 110, 0.5);
}

.notification i:first-child {
  color: #00d4ff;
  font-size: 1.2rem;
}

.notification.success i:first-child {
  color: #4cd137;
}

.notification.error i:first-child {
  color: #ff6b6b;
}

.notification.warning i:first-child {
  color: #fdcb6e;
}

.notification span {
  color: #ffffff;
  flex: 1;
}

.notification button {
  background: none;
  border: none;
  color: #b0b8c8;
  cursor: pointer;
  padding: 0.2rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.notification button:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Enhanced Form Styles */
.form-description {
  color: #b0b8c8;
  margin-bottom: 2rem;
  text-align: center;
  line-height: 1.6;
}

.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.form-group select option {
  background: #0a0e1a;
  color: #ffffff;
}

/* Enhanced Footer */
.footer-tagline {
  font-size: 0.9rem;
  color: #00d4ff;
  font-weight: 600;
  margin-top: 0.5rem;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.network-info {
  font-size: 0.9rem;
  color: #6c5ce7;
  font-family: "Courier New", monospace;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
  .network-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .network-stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .card-features {
    grid-template-columns: 1fr;
  }

  .roadmap-features {
    grid-template-columns: 1fr;
  }

  .metamask-btn {
    display: none;
  }

  .notification {
    right: 10px;
    left: 10px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .ecosystem-card {
    padding: 2rem;
  }

  .card-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .network-address span {
    font-size: 0.8rem;
  }
}

/* Enhanced Animations */
.mini-cube {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.cube-logo {
  font-size: 2.5rem;
  font-weight: 900;
}

/* Additional particle effects */
.particle:nth-child(11) {
  top: 25%;
  left: 85%;
  animation-delay: 0.8s;
}
.particle:nth-child(12) {
  top: 75%;
  left: 25%;
  animation-delay: 1.2s;
}
.particle:nth-child(13) {
  top: 45%;
  left: 75%;
  animation-delay: 1.8s;
}
.particle:nth-child(14) {
  top: 65%;
  left: 5%;
  animation-delay: 2.2s;
}
.particle:nth-child(15) {
  top: 5%;
  left: 45%;
  animation-delay: 2.8s;
}
