/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple: #9945FF;
  --gold: #FFD700;
  --dark-green: #0d1f0d;
  --black: #050505;
  --white: #ffffff;
  --gold-dark: #b8860b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 
    sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

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

.gold-text {
  color: var(--gold);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: rgba(5,5,5,0.95);
  border-bottom: 1px solid 
    rgba(153,69,255,0.3);
  backdrop-filter: blur(10px);
}

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

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-logo span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-btn {
  background: linear-gradient(
    135deg, 
    var(--purple), 
    var(--gold-dark));
  color: white;
  padding: 10px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.3s,
    box-shadow 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px 
    rgba(153,69,255,0.5);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.hero-badge {
  display: inline-block;
  background: rgba(153,69,255,0.3);
  border: 1px solid var(--purple);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  color: var(--gold);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 2px 2px 20px 
    rgba(0,0,0,0.8);
}

.hero-subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 10px 
    rgba(0,0,0,0.8);
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-primary {
  background: linear-gradient(
    135deg, 
    var(--purple), 
    #6600cc);
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  transition: all 0.3s;
  box-shadow: 0 5px 25px 
    rgba(153,69,255,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px 
    rgba(153,69,255,0.6);
}

.btn-secondary {
  background: rgba(255,215,0,0.15);
  color: var(--gold);
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  border: 2px solid var(--gold);
  transition: all 0.3s;
}

.btn-secondary:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
}

.hero-contract {
  background: rgba(0,0,0,0.6);
  border: 1px solid 
    rgba(255,215,0,0.3);
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

.hero-mascot {
  flex-shrink: 0;
}

.hero-mascot img {
  width: 480px;
  max-width: 100%;
  filter: drop-shadow(0 0 40px 
    rgba(153,69,255,0.6));
  animation: float 3s ease-in-out 
    infinite;
}

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

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { 
    transform: translateX(-50%) 
    translateY(0); }
  50% { 
    transform: translateX(-50%) 
    translateY(8px); }
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  width: 100%;
  line-height: 0;
}

.section-divider img {
  width: 100%;
  display: block;
}

/* ===== ABOUT ===== */
.about {
  position: relative;
  padding: 100px 0;
  background: var(--dark-green);
  overflow: hidden;
}

.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.4;
}

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

.about .container {
  position: relative;
  z-index: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-mascot img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 30px 
    rgba(153,69,255,0.5));
  animation: float 4s ease-in-out 
    infinite;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 25px;
}

.section-title.center {
  text-align: center;
  margin-bottom: 50px;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 15px;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 35px;
}

.stat {
  text-align: center;
  background: rgba(153,69,255,0.15);
  border: 1px solid 
    rgba(153,69,255,0.4);
  padding: 20px 25px;
  border-radius: 15px;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--gold);
}

.stat-label {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* ===== TOKENOMICS ===== */
.tokenomics {
  padding: 100px 0;
  background: var(--black);
}

.tokenomics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tokenomics-mascot img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 30px 
    rgba(255,215,0,0.4));
  animation: float 3.5s ease-in-out 
    infinite;
}

.tokenomics-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.token-card {
  background: rgba(153,69,255,0.1);
  border: 1px solid 
    rgba(153,69,255,0.35);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s,
    border-color 0.3s;
}

.token-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}

.token-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 10px;
}

.token-card h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.token-value {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 5px;
}

.token-card p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== HOW TO BUY ===== */
.howtobuy {
  position: relative;
  padding: 100px 0;
  background: var(--dark-green);
  overflow: hidden;
}

.howtobuy .about-bg {
  opacity: 0.3;
}

.howtobuy .container {
  position: relative;
  z-index: 1;
}

.howtobuy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(0,0,0,0.4);
  border: 1px solid 
    rgba(153,69,255,0.3);
  border-radius: 15px;
  padding: 20px;
  transition: border-color 0.3s,
    transform 0.3s;
}

.step:hover {
  border-color: var(--gold);
  transform: translateX(5px);
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  min-width: 55px;
  line-height: 1;
}

.step-content h3 {
  color: var(--gold);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.step-content p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.6;
}

.howtobuy-mascot img {
  width: 100%;
  max-width: 430px;
  filter: drop-shadow(0 0 30px 
    rgba(153,69,255,0.5));
  animation: float 4s ease-in-out 
    infinite;
}

/* ===== ROADMAP ===== */
.roadmap {
  padding: 100px 0;
  background: var(--black);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.roadmap-mascot img {
  width: 100%;
  max-width: 420px;
  filter: drop-shadow(0 0 30px 
    rgba(153,69,255,0.5));
  animation: float 5s ease-in-out 
    infinite;
  position: sticky;
  top: 100px;
}

.roadmap-phases {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.phase {
  background: rgba(153,69,255,0.08);
  border: 1px solid 
    rgba(153,69,255,0.3);
  border-left: 4px solid var(--purple);
  border-radius: 15px;
  padding: 25px;
  transition: border-color 0.3s,
    background 0.3s;
}

.phase:hover {
  background: rgba(153,69,255,0.15);
  border-left-color: var(--gold);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.phase-num {
  color: var(--purple);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.phase-title {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

.phase ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phase ul li {
  font-size: 0.9rem;
  opacity: 0.85;
  padding-left: 20px;
  position: relative;
}

.phase ul li::before {
  content: "☕";
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* ===== COMMUNITY ===== */
.community {
  position: relative;
  padding: 100px 0;
  background: var(--dark-green);
  overflow: hidden;
}

.community .about-bg {
  opacity: 0.3;
}

.community .container {
  position: relative;
  z-index: 1;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.community-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.9;
  margin-bottom: 35px;
}

.community-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 300px;
}

.btn-twitter {
  background: #000000;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  border: 2px solid 
    rgba(255,255,255,0.2);
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-twitter:hover {
  background: #333;
  transform: translateY(-3px);
}

.btn-telegram {
  background: #229ED9;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-telegram:hover {
  background: #1a8abf;
  transform: translateY(-3px);
}

.btn-dexscreener {
  background: rgba(153,69,255,0.2);
  color: var(--purple);
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
  border: 2px solid var(--purple);
  transition: all 0.3s;
  font-size: 1rem;
}

.btn-dexscreener:hover {
  background: var(--purple);
  color: white;
  transform: translateY(-3px);
}

.community-mascot img {
  width: 100%;
  max-width: 450px;
  filter: drop-shadow(0 0 30px 
    rgba(153,69,255,0.5));
  animation: float 3s ease-in-out 
    infinite;
}

/* ===== FOOTER ===== */
.footer {
  background: #000000;
  border-top: 1px solid 
    rgba(153,69,255,0.3);
  padding: 50px 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
}

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

.footer-logo span {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--gold);
}

.footer-tagline {
  color: var(--purple);
  font-size: 1rem;
  margin-bottom: 20px;
  font-style: italic;
}

.footer-disclaimer {
  font-size: 0.8rem;
  opacity: 0.4;
  max-width: 600px;
  margin: 0 auto 15px;
  line-height: 1.6;
}

.footer-copy {
  font-size: 0.85rem;
  opacity: 0.5;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .navbar {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
  }
  .hero-content {
    flex-direction: column;
    padding: 20px;
    text-align: center;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-mascot img {
    width: 280px;
  }
  .hero-buttons {
    justify-content: center;
  }
  .about-grid,
  .tokenomics-grid,
  .howtobuy-grid,
  .roadmap-grid,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-mascot,
  .tokenomics-mascot,
  .howtobuy-mascot,
  .roadmap-mascot,
  .community-mascot {
    display: flex;
    justify-content: center;
  }
  .about-mascot img,
  .tokenomics-mascot img,
  .howtobuy-mascot img,
  .roadmap-mascot img,
  .community-mascot img {
    max-width: 300px;
  }
  .section-title {
    font-size: 2rem;
  }
  .about-stats {
    flex-direction: column;
  }
  .tokenomics-cards {
    grid-template-columns: 1fr 1fr;
  }
  .roadmap-mascot img {
    position: static;
  }
}
