/* RESET AND BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a0a1a 50%, #0a0a0f 100%);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  background-attachment: fixed;
}

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

/* NAVIGATION */
nav {
  padding: 25px 0;
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Oxanium", sans-serif;
  font-size: 42px;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #ff4500, #ff6b00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.ticker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  color: #ffd700;
  margin-left: 10px;
  letter-spacing: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s;
  position: relative;
  font-family: "Space Grotesk", sans-serif;
}

.nav-links a:hover {
  color: #ff4500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #ff4500, #ffd700);
  transition: width 0.3s;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

/* HERO SECTION */
.hero {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 69, 0, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-spark {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  filter: blur(40px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.hero h1 {
  font-family: "Oxanium", sans-serif;
  font-size: 120px;
  letter-spacing: 5px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff4500, #ff6b00, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255, 69, 0, 0.7);
  animation: pulseGlow 3s infinite alternate;
  font-weight: 800;
}

.hero-subtitle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 32px;
  color: #ffd700;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 600;
  letter-spacing: 1px;
}

.tagline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  color: #8a2be2;
  margin-bottom: 30px;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-description {
  font-size: 20px;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto 50px;
  line-height: 1.8;
  font-weight: 400;
}

/* BUTTON STYLES */
.btn {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(90deg, #ff4500, #ff6b00);
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #ff6b00, #ff4500);
  transition: all 0.6s;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.6);
}

.btn-spark {
  background: linear-gradient(90deg, #ffd700, #ff6b00);
  color: #000;
}

.btn-chart {
  background: linear-gradient(90deg, #8a2be2, #ff4500);
  color: #fff;
}

/* DIVIDER */
.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 69, 0, 0.3),
    transparent
  );
  margin: 80px 0;
}

/* SECTION STYLES */
.section {
  padding: 80px 0;
}

.section-title {
  font-family: "Oxanium", sans-serif;
  font-size: 60px;
  letter-spacing: 3px;
  margin-bottom: 40px;
  color: #fff;
  text-align: center;
  position: relative;
  font-weight: 700;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ff4500, #ffd700);
}

.section-content {
  font-size: 20px;
  color: #ccc;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

/* QUOTE SECTION */
.quote-section {
  background: linear-gradient(
    135deg,
    rgba(255, 69, 0, 0.05),
    rgba(255, 215, 0, 0.05)
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.quote-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.03) 1px,
    transparent 1px
  );
  background-size: 50px 50px;
  animation: float 20s linear infinite;
  z-index: 0;
}

.quote-text {
  font-family: "Space Grotesk", sans-serif;
  font-size: 36px;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 1;
  color: #ffd700;
  font-weight: 600;
  line-height: 1.4;
}

/* FEATURES SECTION */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

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

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

.feature:hover {
  transform: translateY(-10px);
  border-color: #ff4500;
  box-shadow: 0 15px 30px rgba(255, 69, 0, 0.2);
}

.feature-icon {
  font-size: 50px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff4500, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
}

.feature-description {
  color: #aaa;
  font-size: 16px;
  font-weight: 400;
}

/* DEXSCREENER CHART SECTION */
.chart-section {
  padding: 80px 0;
  background: linear-gradient(
    135deg,
    rgba(138, 43, 226, 0.05),
    rgba(255, 69, 0, 0.05)
  );
}

.chart-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 69, 0, 0.3);
  box-shadow: 0 15px 35px rgba(255, 69, 0, 0.15);
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(10px);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: rgba(255, 69, 0, 0.1);
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
}

.chart-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 24px;
  color: #ffd700;
  font-weight: 600;
}

.chart-subtitle {
  color: #aaa;
  font-size: 16px;
}

.chart-iframe-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.chart-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.chart-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* TOKENOMICS SECTION */
.tokenomics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.token-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(255, 69, 0, 0.2);
}

.token-title {
  font-size: 28px;
  color: #ffd700;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.token-detail {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 10px;
}

.token-label {
  color: #aaa;
  font-weight: 400;
}

.token-value {
  color: #fff;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
}

.supply-display {
  font-size: 48px;
  font-weight: 800;
  color: #ff4500;
  text-align: center;
  margin: 30px 0;
  font-family: "Oxanium", sans-serif;
}

/* STATISTICS */
.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  border: 1px solid rgba(255, 69, 0, 0.1);
  transition: all 0.3s;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: #ff4500;
  box-shadow: 0 10px 20px rgba(255, 69, 0, 0.1);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: #ff4500;
  margin-bottom: 10px;
  font-family: "Oxanium", sans-serif;
}

.stat-label {
  color: #ccc;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Space Grotesk", sans-serif;
}

/* ROADMAP SECTION */
.roadmap-container {
  position: relative;
  margin-top: 60px;
}

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

.roadmap-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, #ff4500, #ffd700, #8a2be2);
}

.roadmap-item {
  position: relative;
  margin-bottom: 50px;
  width: calc(50% - 30px);
}

.roadmap-item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: 70px;
}

.roadmap-item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: 70px;
}

.roadmap-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: #ff4500;
  border-radius: 50%;
  top: 10px;
  z-index: 1;
  box-shadow: 0 0 10px #ff4500;
}

.roadmap-item:nth-child(odd) .roadmap-dot {
  right: -48px;
}

.roadmap-item:nth-child(even) .roadmap-dot {
  left: -42px;
}

.roadmap-stage {
  color: #ffd700;
  font-family: "Space Grotesk", sans-serif;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
  letter-spacing: 1px;
}

.roadmap-title {
  font-size: 24px;
  color: #fff;
  margin-bottom: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.roadmap-description {
  color: #aaa;
  font-weight: 400;
}

/* UTILITY PHASES */
.utility-phases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.phase-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  padding: 30px;
  border: 1px solid rgba(138, 43, 226, 0.3);
  transition: all 0.3s;
}

.phase-card:hover {
  border-color: #8a2be2;
  box-shadow: 0 10px 20px rgba(138, 43, 226, 0.2);
}

.phase-title {
  font-size: 24px;
  color: #8a2be2;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
}

.phase-list {
  list-style-type: none;
}

.phase-list li {
  margin-bottom: 10px;
  color: #ccc;
  position: relative;
  padding-left: 20px;
  font-weight: 400;
}

.phase-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #ffd700;
}

/* FOOTER */
footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 69, 0, 0.2);
  text-align: center;
  background: rgba(10, 10, 15, 0.8);
}

.footer-logo {
  font-family: "Oxanium", sans-serif;
  font-size: 36px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, #ff4500, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.footer-text {
  color: #bbb;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.6;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: linear-gradient(90deg, #ff4500, #ffd700);
  transform: translateY(-5px);
}

.copyright {
  color: #888;
  font-size: 14px;
  font-weight: 400;
}

.risk-disclosure {
  color: #ff6b6b;
  font-size: 14px;
  margin-top: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
  line-height: 1.5;
}

/* ANIMATIONS */
@keyframes float {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 40px rgba(255, 69, 0, 0.7);
  }
  100% {
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.9);
  }
}

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

.pulse {
  animation: sparkPulse 2s infinite;
}

/* BACKGROUND ELEMENTS */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.floating-element {
  position: absolute;
  opacity: 0.1;
  font-size: 24px;
  animation: floatElement 20s linear infinite;
  color: #ff4500;
}

.floating-element:nth-child(2n) {
  color: #ffd700;
}

.floating-element:nth-child(3n) {
  color: #8a2be2;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 90px;
  }

  .section-title {
    font-size: 50px;
  }

  .chart-iframe-container {
    height: 450px;
  }
}

@media (max-width: 992px) {
  .features,
  .utility-phases,
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero h1 {
    font-size: 70px;
  }

  .hero-subtitle {
    font-size: 28px;
  }

  .roadmap-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 70px !important;
    padding-right: 20px !important;
  }

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

  .roadmap-item:nth-child(odd) .roadmap-dot,
  .roadmap-item:nth-child(even) .roadmap-dot {
    left: 20px;
  }

  .chart-iframe-container {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .tagline {
    font-size: 18px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-title {
    font-size: 36px;
  }

  .section-content {
    font-size: 18px;
  }

  .features,
  .utility-phases,
  .stats-container {
    grid-template-columns: 1fr;
  }

  .quote-text {
    font-size: 28px;
  }

  .logo {
    font-size: 32px;
  }

  .chart-iframe-container {
    height: 350px;
  }

  .chart-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .section-title {
    font-size: 30px;
  }

  .btn {
    padding: 15px 30px;
    font-size: 16px;
  }

  .chart-iframe-container {
    height: 300px;
  }
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100%;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: right 0.3s;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255, 69, 0, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  margin-bottom: 40px;
  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 69, 0, 0.2);
  transition: color 0.3s;
  font-family: "Space Grotesk", sans-serif;
}

.mobile-menu-links a:hover {
  color: #ff4500;
}

/* SPARK EFFECT */
.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #ffd700;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px #ff4500;
  pointer-events: none;
  z-index: 1;
}

/* LOADING STATE FOR CHART */
.chart-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 500px;
  background: rgba(10, 10, 15, 0.8);
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 69, 0, 0.3);
  border-top: 3px solid #ff4500;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

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

/* CHART THEME TOGGLE */
.chart-theme-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.theme-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 69, 0, 0.3);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  transition: all 0.3s;
}

.theme-btn.active {
  background: linear-gradient(90deg, #ff4500, #ff6b00);
  color: #000;
}

.theme-btn:hover:not(.active) {
  background: rgba(255, 69, 0, 0.2);
}
