:root {
  --neon-purple: #8a2be2;
  --electric-blue: #00bfff;
  --emerald-green: #00ff7f;
  --dark-bg: #0a0e17;
  --darker-bg: #050811;
  --card-bg: rgba(15, 25, 45, 0.7);
  --text-light: #f0f8ff;
  --text-glow: 0 0 10px currentColor, 0 0 20px currentColor;
}
:root {
  --neon-purple: #8a2be2;
  --electric-blue: #00bfff;
  --emerald-green: #00ff7f;
  --dark-bg: #0a0e17;
  --darker-bg: #050811;
  --card-bg: rgba(15, 25, 45, 0.7);
  --text-light: #f0f8ff;
  --text-glow: 0 0 10px currentColor, 0 0 20px currentColor;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Exo 2", sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.2s ease, visibility 1s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--text-glow);
  margin-bottom: 10px;
  letter-spacing: 1px;
  margin-bottom: 2rem;
  transition: opacity 0.2s ease, visibility 1s ease;
}

.loading-particles {
  position: relative;
  width: 300px;
  height: 300px;
}

.loading-text {
  margin-top: 2rem;
  font-family: "Orbitron", sans-serif;
  color: var(--electric-blue);
  text-shadow: 0 0 10px var(--electric-blue);
  font-size: large;
  transition: opacity 0.2s ease, visibility 1s ease;
}

.loading-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 10px var(--electric-blue), 0 0 20px var(--electric-blue);
  transform: translate(-50%, -50%);
  opacity: 0;
}

/* Responsive additions */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .roadmap-item {
    padding: 1.5rem;
  }

  .tokenomics-chart {
    width: 250px;
    height: 250px;
  }

  .chart-center {
    width: 100px;
    height: 100px;
    font-size: 0.9rem;
  }

  .contact-container {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-card {
    width: 100%;
  }

  .footer-links {
    gap: 1rem;
  }

  .social-links {
    gap: 1rem;
  }

  .loading-logo {
    font-size: 2rem;
    margin-bottom: 3px;
  }

  .loading-particles {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 360px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .team-container {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .stats-container {
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .loading-logo {
    font-size: 1.8rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Exo 2", sans-serif;
  background: var(--dark-bg);
  color: var(--text-light);
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.3;
}

.stars {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.star {
  position: absolute;
  background: white;
  border-radius: 50%;
  animation: twinkle var(--duration, 5s) infinite ease-in-out;
  opacity: var(--opacity, 0.7);
}

.floating-coins {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.coin {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7));
  animation: float 15s infinite ease-in-out;
  opacity: 0.7;
}

.corner-coins {
  position: fixed;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: -1;
}

.corner-coins.left {
  top: 50px;
  left: 50px;
}

.corner-coins.right {
  bottom: 50px;
  right: 50px;
}

.corner-coin {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: rotate 20s linear infinite;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(10, 14, 23, 0.8);
  border-bottom: 1px solid rgba(138, 43, 226, 0.3);
  transition: all 0.3s ease;
}

nav.scrolled {
  padding: 0.8rem 5%;
  background: rgba(5, 8, 17, 0.95);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
  font-family: "Orbitron", sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: var(--text-glow);
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 0.4rem 0.4rem;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  transition: width 0.3s ease;
}
#buy {
  background-color: rgb(91, 52, 219);
  border-radius: 10px;
}
#buy:hover {
  filter: blur(2px);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: rotate(90deg);
}

/* Page sections */
.page {
  min-height: 100vh;
  padding: 7rem 5% 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
}

.page:hover {
  background: rgba(10, 14, 23, 0.1);
}

.section-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease;
}

.page:hover .section-title::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Homepage */
.hero {
  text-align: center;
  padding-top: 5rem;
  transform: translateY(0);
  transition: transform 0.5s ease;
}

.hero:hover {
  transform: translateY(-10px);
}

.hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    90deg,
    var(--neon-purple),
    var(--electric-blue),
    var(--emerald-green)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 15px rgba(138, 43, 226, 0.5), 0 0 30px rgba(0, 191, 255, 0.5);
  letter-spacing: 2px;
  line-height: 1.2;
  transition: all 0.3s ease;
}

.hero-title:hover {
  text-shadow: 0 0 20px rgba(138, 43, 226, 0.7), 0 0 40px rgba(0, 191, 255, 0.7);
}

.hero-subtitle {
  font-size: 1.5rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: rgba(240, 248, 255, 0.8);
  line-height: 1.6;
  transition: all 0.3s ease;
}

.hero-subtitle:hover {
  color: var(--text-light);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  color: white;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

.btn-primary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 5px 25px rgba(138, 43, 226, 0.7);
}

.btn-secondary {
  background: transparent;
  color: var(--emerald-green);
  border: 2px solid var(--emerald-green);
  box-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(0, 255, 127, 0.1);
  box-shadow: 0 5px 25px rgba(0, 255, 127, 0.5);
}

/* Stats Section */
.stats-section {
  margin: 3rem 0;
}

.stats-container {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  text-align: center;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
}

.stat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(138, 43, 226, 0.4);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  transform: scale(1.2);
  color: var(--emerald-green);
}

.stat-value {
  font-family: "Orbitron", sans-serif;
  font-size: 2.5rem;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
  text-shadow: var(--text-glow);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-value {
  color: var(--emerald-green);
}

.stat-label {
  color: rgba(240, 248, 255, 0.8);
  transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
  color: var(--text-light);
}

/* Roadmap Section */
.roadmap-section {
  margin: 5rem 0;
}

.roadmap-container {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  padding: 0 2rem;
}

.roadmap-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--neon-purple),
    var(--electric-blue)
  );
}

.roadmap-item {
  position: relative;
  margin-bottom: 3rem;
  width: calc(120% - 4rem);
  padding: 2rem;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
}

.roadmap-item:nth-child(odd) {
  margin-left: auto;
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.roadmap-item:nth-child(even) {
  margin-right: auto;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.roadmap-item::before {
  content: "";
  position: absolute;
  top: 2rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--electric-blue);
  box-shadow: 0 0 10px var(--electric-blue);
}

.roadmap-item:nth-child(odd)::before {
  left: -38px;
}

.roadmap-item:nth-child(even)::before {
  right: -38px;
}

.roadmap-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.roadmap-phase {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--electric-blue);
}

.roadmap-title {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.roadmap-desc {
  color: rgba(240, 248, 255, 0.8);
  line-height: 1.6;
}

/* Tokenomics Section */
.tokenomics-section {
  margin: 5rem 0;
}
.section-title {
  font-size: 2rem;
}
.tokenomics-container {
  max-width: 90%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.tokenomics-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
}

.tokenomics-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

.tokenomics-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.tokenomics-icon {
  font-size: 1.2rem;
  margin-right: 1rem;
  color: var(--electric-blue);
}

.tokenomics-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  color: var(--text-light);
}

.tokenomics-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.tokenomics-item {
  margin-bottom: 1rem;
}

.tokenomics-label {
  font-weight: 600;
  color: var(--electric-blue);
  margin-bottom: 0.5rem;
}

.tokenomics-value {
  color: rgba(240, 248, 255, 0.9);
}

.tokenomics-chart {
  width: 280px;
  height: 280px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(
    var(--neon-purple) 0% 40%,
    var(--electric-blue) 40% 50%,
    var(--emerald-green) 50% 70%,
    #ff6b6b 70% 85%,
    #feca57 85% 100%
  );
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.tokenomics-chart:hover {
  transform: scale(1.05) rotate(5deg);
}

.chart-center {
  width: 120px;
  height: 120px;
  background: var(--darker-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  color: var(--text-light);
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.chart-legend {
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.legend-item {
  display: flex;
  align-items: center;
  margin-right: 1rem;
  font-size: 0.8rem;
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  margin-right: 0.5rem;
}

/* Team Section */
.team-section {
  margin: 5rem 0;
}

.team-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
}

.team-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0, 255, 127, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--emerald-green),
    var(--electric-blue)
  );
}

.team-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 255, 127, 0.3);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--electric-blue);
  box-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
  background-size: cover;
  background-position: center;
  transition: all 0.5s ease;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(0, 191, 255, 0.7);
}

.team-name {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

.team-role {
  color: var(--electric-blue);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.team-desc {
  color: rgba(240, 248, 255, 0.8);
  line-height: 1.6;
}

/* Contact Section */
.contact-section {
  margin: 5rem 0;
}

.contact-container {
  max-width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.contact-card {
  background: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(138, 43, 226, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.5s ease;
  cursor: pointer;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(138, 43, 226, 0.3);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--emerald-green);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
  transform: rotate(15deg) scale(1.2);
  color: var(--electric-blue);
}

.contact-title {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.contact-info {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--electric-blue);
  word-break: break-all;
}

.btn-copy {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: rgba(0, 191, 255, 0.2);
  color: var(--electric-blue);
  border: 1px solid var(--electric-blue);
  border-radius: 8px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 10px;
}

.btn-copy:hover {
  background: rgba(0, 191, 255, 0.4);
  transform: translateY(-3px);
}

/* Footer */
footer {
  background: rgba(5, 8, 17, 0.95);
  padding: 3rem 5%;
  text-align: center;
  border-top: 1px solid rgba(138, 43, 226, 0.3);
  background-attachment: fixed;
  width: 100%;
}

.footer-logo {
  font-family: "Orbitron", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(90deg, var(--neon-purple), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer-link {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--electric-blue);
  transform: translateY(-3px);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.social-link {
  color: var(--text-light);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--electric-blue);
  transform: translateY(-5px) scale(1.2);
}

.copyright {
  color: rgba(240, 248, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -15px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, -25px) rotate(-5deg);
  }
  75% {
    transform: translate(15px, -15px) rotate(3deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .tokenomics-container {
    grid-template-columns: 1fr;
  }
  .tokenomics-chart {
    margin-bottom: 3rem;
  }
  .team-container {
    flex-wrap: wrap;
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }
  .team-container {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 23, 0.95);
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.4s ease;
  }

  .nav-links.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .btn {
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
  }
  .roadmap-item {
    width: 100%;
    margin-left: 0 !important;
  }
  .roadmap-container::before {
    left: 20px;
  }
  .roadmap-item::before {
    left: -8px !important;
    right: auto !important;
  }
  .corner-coins {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .team-container {
    flex-wrap: wrap;
    flex-direction: column;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .stats-container {
    grid-template-columns: 1fr;
  }
  .tokenomics-details {
    grid-template-columns: 1fr;
  }
}
