/* --- Variables (PURE GOLD) --- */
:root {
  --gold-primary: #f0b90b; /* BNB Official Yellow */
  --gold-bright: #ffd700; /* Bright Gold for highlights */
  --gold-dark: #b8860b; /* Dark Gold for depth */

  --bg-black: #000000; /* Pure Black */
  --bg-dark: #050505; /* Off-Black */

  --text-white: #ffffff;
  --text-gold: #fff8d6; /* Very pale gold for text */

  --glass-bg: rgba(10, 10, 10, 0.9);
  --glass-border: rgba(240, 185, 11, 0.4);

  --font-main: "Poppins", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-black);
  color: var(--text-white);
  overflow-x: hidden;
}

/* --- Background (Gold Dust Effect) --- */
#magic-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  /* Deep Gold Center to Black edges */
  background: radial-gradient(circle at center, #1a1400, #000000 80%);
}

/* --- Glassmorphism --- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 0 15px rgba(240, 185, 11, 0.1);
}

/* --- Navbar --- */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  position: fixed;
  width: 90%;
  left: 5%;
  top: 20px;
  z-index: 1000;
  border-radius: 20px;
  border: 1px solid var(--gold-primary);
  background: rgba(0, 0, 0, 0.95);
  box-shadow: 0 0 10px rgba(240, 185, 11, 0.2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold-primary);
  text-transform: uppercase;
}
.logo img {
  border-radius: 50%;
  height: 40px;
  border: 2px solid var(--gold-primary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}
.nav-links a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  font-size: 0.9rem;
}
.nav-links a:hover {
  color: var(--gold-primary);
  text-shadow: 0 0 10px var(--gold-primary);
}

.btn-nav {
  background: var(--gold-primary);
  padding: 8px 25px;
  border-radius: 20px;
  color: black !important;
  font-weight: 800;
}
.btn-nav:hover {
  background: var(--gold-bright);
  box-shadow: 0 0 20px var(--gold-primary);
}

.hamburger {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gold-primary);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 150px 10% 100px;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
}

/* Pure Gold Glow */
.glow-text {
  text-shadow: 0 0 10px var(--gold-dark), 0 0 30px var(--gold-primary);
}

.hero-desc {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #ccc;
  max-width: 500px;
}

/* Contract Address Box */
.ca-box {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 15px 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  cursor: pointer;
  transition: 0.3s;
  user-select: none;
  border: 1px solid var(--gold-primary);
  background: rgba(240, 185, 11, 0.05);
}
.ca-box:hover {
  background: var(--gold-primary);
  box-shadow: 0 0 25px var(--gold-primary);
}
.ca-box:hover #ca-text,
.ca-box:hover i {
  color: black;
}

.ca-box i {
  color: var(--gold-primary);
}
#ca-text {
  color: var(--gold-primary);
  font-weight: bold;
  font-family: monospace;
  letter-spacing: 1px;
  transition: 0.3s;
}

#copy-feedback {
  color: var(--gold-primary);
  font-size: 0.9rem;
  margin-top: -20px;
  margin-bottom: 20px;
  opacity: 0;
  transition: 0.3s;
  height: 20px;
}

.hero-image img {
  width: 500px;
  filter: drop-shadow(0 0 25px rgba(240, 185, 11, 0.3));
}
.float-anim {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* --- Buttons --- */
.btn {
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  transition: 0.3s;
  display: inline-block;
  margin-right: 15px;
}

.btn-primary {
  background: linear-gradient(
    45deg,
    var(--gold-dark),
    var(--gold-primary),
    var(--gold-bright)
  );
  color: black;
  box-shadow: 0 0 15px rgba(240, 185, 11, 0.4);
  border: none;
}

.btn-secondary {
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--gold-primary);
  color: black;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 30px var(--gold-primary);
}

/* --- Sections --- */
.section {
  padding: 100px 10%;
  position: relative;
}
.section h2 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 15px rgba(240, 185, 11, 0.3);
}

/* Utility Grid */
.split-layout {
  display: flex;
  align-items: center;
  gap: 50px;
}
.split-layout.reverse {
  flex-direction: row-reverse;
}
.text-content {
  flex: 1;
}
.image-content {
  flex: 1;
  text-align: center;
}
.image-content img {
  border-radius: 20px;
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.2);
  max-width: 100%;
}

.stats-grid {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.stat-box {
  padding: 20px;
  border-radius: 15px;
  flex: 1;
  text-align: center;
  transition: 0.3s;
  border: 1px solid #333;
  background: rgba(10, 10, 10, 0.5);
}
.stat-box:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 0 15px rgba(240, 185, 11, 0.2);
}
.stat-box h3 {
  color: var(--gold-primary);
  margin-bottom: 5px;
}

/* Tokenomics */
.token-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.token-card {
  padding: 30px;
  border-radius: 20px;
  width: 250px;
  text-align: center;
  transition: 0.3s;
  border: 1px solid var(--gold-dark);
  background: rgba(5, 5, 5, 0.8);
}
.token-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(240, 185, 11, 0.3);
  border-color: var(--gold-bright);
}
.token-card h3 {
  color: white;
  margin-bottom: 10px;
}
.token-card .big-num {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gold-primary);
}

/* Roadmap */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card {
  padding: 40px 30px;
  border-radius: 20px;
  width: 320px;
  position: relative;
  transition: 0.3s;
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid var(--gold-dark);
}
.card:hover {
  border-color: var(--gold-bright);
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(240, 185, 11, 0.2);
}

.phase-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: black;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: bold;
  box-shadow: 0 0 15px var(--gold-primary);
}
.card h3 {
  margin: 15px 0 20px;
  font-size: 1.8rem;
  text-align: center;
  color: var(--gold-primary);
}
.card ul {
  list-style: none;
}
.card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #222;
  color: #ccc;
}
.card ul li i {
  color: var(--gold-primary);
  margin-right: 10px;
}

/* Socials */
.socials {
  text-align: center;
  padding-bottom: 50px;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 40px;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 40px;
  font-size: 1.5rem;
  text-decoration: none;
  color: white;
  border-radius: 15px;
  transition: 0.3s;
  background: #111;
  border: 1px solid #333;
}

.telegram:hover {
  background: #0088cc;
  border-color: #0088cc;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.5);
}
.twitter:hover {
  background: #000;
  border-color: white;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.final-cta {
  margin-top: 20px;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  background: black;
  color: #555;
  border-top: 1px solid #111;
}

/* Scroll Animation Classes */
.scroll-element {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}
.scroll-element.scrolled {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 768px) {
  .navbar {
    top: 0;
    width: 100%;
    left: 0;
    border-radius: 0;
    padding: 20px;
    border: none;
    border-bottom: 1px solid var(--gold-primary);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: black;
    flex-direction: column;
    padding: 40px 0;
    border-bottom: 2px solid var(--gold-primary);
  }
  .nav-links.active {
    display: flex;
  }
  .hero {
    flex-direction: column-reverse;
    padding-top: 120px;
    text-align: center;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero-image img {
    width: 80%;
  }
  .split-layout,
  .split-layout.reverse {
    flex-direction: column;
  }
}
