:root {
  --gold: #FFD700;
  --red: red;
  --dark: #111;
  --blackish: rgba(0, 0, 0, 0.8);
}
/* === Reset & Base === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}

body {
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  position: relative;
  z-index: 1;
}

#bg-video {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1;
  filter: brightness(0.4);
}

/* === Header & Navigation === */
header {
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid gold;
  backdrop-filter: blur(5px);
  animation: fadeDown 1s ease-in-out;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: gold;
  text-shadow: 0 0 15px red;
}

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

#menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

#menu li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

#menu li a:hover {
  color: gold;
  text-shadow: 0 0 10px red;
}

#menu-toggle {
  display: none;
  background: none;
  color: white;
  border: none;
  font-size: 2rem;
}

/* === Hero Section === */
.hero {
  text-align: center;
  padding: 10rem 2rem 5rem;
  animation: slideUp 1s ease;
}

.hero h1 {
  font-size: 3rem;
  color: gold;
  text-shadow: 0 0 20px red;
  animation: glow 2s infinite alternate;
}

.hero p {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #ccc;
}

.hero h3 {
  margin-top: 2rem;
  font-size: 1.5rem;
  color: white;
  animation: fadePulse 2s infinite;
}

/* === Panels === */
.panel {
  padding: 5rem 2rem;
  background: rgba(10, 10, 10, 0.8);
  border-top: 1px solid #444;
  border-bottom: 1px solid #444;
  animation: fadeIn 2s ease;
}

.panel h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: gold;
  text-align: center;
  text-shadow: 0 0 10px red;
}

.panel p, .panel ol, .panel li {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  margin: 0.5rem 0;
}

/* === Buttons === */
.buy-buttons button {
  background: linear-gradient(45deg, red, gold);
  color: black;
  border: none;
  padding: 0.75rem 1.5rem;
  margin: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 0 15px gold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-buttons button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px red;
}

/* === Progress Bar === */
.progress-bar {
  width: 100%;
  height: 20px;
  background: #222;
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0;
}

.progress {
  height: 100%;
  background: gold;
  width: 25%;
  animation: progressGrow 2s ease forwards;
}

/* === Bhiku GIF Animations === */
.bhikx-gif {
  width: 100px;
  height: auto;
  position: absolute;
  z-index: 5;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
}

.bhikx-gif.top {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.bhikx-gif.right {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.bhikx-gif.left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.bhikx-gif.bottom {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

#whitepaper .bhikx-gif.whitepaper-gif-style {
  width: 120px;
  animation: rotate 6s linear infinite;
}

/* === Golden Panel === */
.golden-panel {
  border: 4px solid gold;
  border-radius: 20px;
  padding: 20px;
  margin: 20px auto;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}

.golden-panel::before {
  content: "👑";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: gold;
  padding: 0 10px;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
}

/* === Footer === */
footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.8);
  color: #aaa;
  font-size: 0.9rem;
}

.social-links a {
  color: gold;
  margin: 0 1rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: red;
}

/* === Contact Form === */
form {
  max-width: 500px;
  margin: 2rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.75rem;
  border-radius: 10px;
  border: none;
  outline: none;
  font-size: 1rem;
}

form button {
  background: red;
  color: white;
  padding: 0.75rem;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background: gold;
  color: black;
}

/* === Animations === */
@keyframes glow {
  from { text-shadow: 0 0 10px gold; }
  to { text-shadow: 0 0 25px red; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes progressGrow {
  from { width: 0%; }
  to { width: 25%; }
}

@keyframes fadePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

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

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* === Responsive === */
@media (max-width: 768px) {
  #menu {
    display: none;
    flex-direction: column;
    background: #111;
    padding: 1rem;
    position: absolute;
    top: 60px;
    right: 0;
    z-index: 999;
  }

  .menu-icon {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: white;
  }

  #menu.show {
    display: flex;
  }
}
/* Navbar base */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #000; /* adjust to your theme */
  position: relative;
  z-index: 1000;
}

/* ===== Navbar Menu Styling ===== */
.navbar-menu {
  display: none;
  flex-direction: column;
  background: #111;
  position: absolute;
  top: 60px;
  right: 0;
  width: 200px;
  z-index: 99;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.navbar-menu.active {
  display: flex;
}

.menu-toggle {
  display: block;
  cursor: pointer;
  padding: 10px;
  font-size: 1.5rem;
  color: #FFD700;
}

/* ===== Menu Icons with Text ===== */
.navbar-menu a {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease;
}

.navbar-menu a:hover {
  background: #222;
}

.navbar-menu a i {
  margin-right: 10px;
  font-size: 1.2rem;
}

/* ===== Responsive Slide Section (Whitepaper Slider) ===== */
.slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.slider {
  display: flex;
  flex-direction: column;
}
.slide {
  display: none;
  text-align: center;
  padding: 20px;
}
.slide h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.slide p {
  font-size: 16px;
  margin-bottom: 15px;
}
.slide-img, .slide-video {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
.slider-controls {
  margin-top: 10px;
  text-align: center;
}
.slider-controls button {
  margin: 0 5px;
  padding: 8px 16px;
  background: #FFD700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
}
/* Navigation Buttons */
.slider-btn {
  background: #FFD700;
  color: #000;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  margin: 10px;
  border-radius: 6px;
  font-weight: bold;
}

.slider-btn:hover {
  background: #e6c200;
}

/* ===== Bhikx GIF Positioning Classes ===== */
.bhikx-gif {
  position: absolute;
  max-width: 100px;
  z-index: 1;
  opacity: 0.9;
}

.top {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.bottom {
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.left {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.right {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* ===== Referral Input ===== */
.referral-box {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.navbar-menu a {
  color: #FFD700;
  text-decoration: none;
  transition: 0.3s;
}

.navbar-menu a:hover {
  color: red;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #FFD700;
  border-radius: 2px;
}

/* Show on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .navbar-menu.active {
    display: flex;
  }
}
#whitepaper {
  text-align: center;
  padding: 50px 20px;
  background: #111;
  color: #fff;
  position: relative;
}

.whitepaper-heading {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: gold;
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.slider {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}

.slide h3 {
  font-size: 1.8rem;
  color: #FFD700;
  margin-bottom: 10px;
}

.typing-text {
  font-size: 1.1rem;
  color: #ccc;
  animation: typing 3s steps(40, end);
  white-space: normal;
  overflow: hidden;
  border-right: 2px solid #FFD700;
}

@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

.slide-image, .slide-video {
  margin-top: 20px;
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(255, 215, 0, 0.4);
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(255, 215, 0, 0.3);
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.arrow:hover {
  background-color: gold;
  color: #111;
}

.arrow.left {
  left: -10px;
}

.arrow.right {
  right: -10px;
}

.whitepaper-slide:hover {
  transform: scale(1.05);
}
/* Button Styling */
.button-animated {
  padding: 12px 25px;
  background: linear-gradient(45deg, red, #FFD700);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-animated:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

/* Section fade-in */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease-in forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide-in effects */
.slide-in-left {
  opacity: 0;
  animation: slideInLeft 1s forwards;
}

@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-100px); }
  100% { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
  opacity: 0;
  animation: slideInRight 1s forwards;
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(100px); }
  100% { opacity: 1; transform: translateX(0); }
}

<style>
/* Shared Button Base */
.button-base {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: bold;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: scale(1);
}
.button-base:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

/* Hero Buttons */
.btn-hero {
  background: linear-gradient(to right, #ffcc00, #ff8800);
  color: #000;
}
.btn-hero-secondary {
  background: transparent;
  border: 2px solid #ffcc00;
  color: #ffcc00;
}
.btn-hero-secondary:hover {
  background-color: #ffcc00;
  color: #000;
}

/* Superhero Button */
.btn-superhero {
  background: linear-gradient(45deg, #8e2de2, #4a00e0);
  color: #fff;
}

/* Staking & Redeem */
.btn-stake {
  background: linear-gradient(45deg, #00c9a7, #92fe9d);
  color: #000;
}
.btn-redeem {
  background: linear-gradient(45deg, #3a7bd5, #00d2ff);
  color: #fff;
}

/* Bot Buttons */
.btn-bot-access {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
}
.btn-download-bot {
  background: #fff;
  color: #ff4b2b;
  border: 2px solid #ff4b2b;
}
.btn-download-bot:hover {
  background: #ff4b2b;
  color: #fff;
}

/* Referral */
.btn-referral {
  background: linear-gradient(to right, #1c92d2, #f2fcfe);
  color: #000;
}
</style><!-- Example Buttons --><div class="flex flex-wrap gap-4 mt-6 justify-center">
  <a href="#presale" class="button-base btn-hero">Join the Presale</a>
  <a href="#metaverse" class="button-base btn-hero-secondary">Enter the Metaverse</a>
  <a href="#superhero" class="button-base btn-superhero">Join as Superhero</a>
  <button class="button-base btn-stake">Stake BHIKX</button>
  <button class="button-base btn-redeem">Redeem Rewards</button>
  <button class="button-base btn-bot-access">Launch Bot</button>
  <button class="button-base btn-download-bot">Download Bot</button>
  <button class="button-base btn-referral">Copy My Referral Link</button>
</div>

.theme-button {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-size: 200% auto;
  background-image: linear-gradient(to right, var(--from-color), var(--to-color));
  animation: pulseGlow 2s infinite alternate;
}

.theme-button:hover {
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 8px rgba(255,255,255,0.3);
  }
  100% {
    box-shadow: 0 0 16px rgba(255,255,255,0.8);
  }
}
.presale-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.presale-image img {
  max-width: 300px;
  height: auto;
  animation: floatGlow 4s ease-in-out infinite;
}

.presale-content {
  flex: 1;
  min-width: 300px;
}

@keyframes floatGlow {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 0 5px gold); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 0 12px red); }
}

.with-bhikux-bg {
  position: relative;
  background-image: url('images/bhikux-presale.png'); /* Transparent PNG/WebP */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  background-color: rgba(10, 10, 20, 0.9);
  animation: floatBhikux 6s ease-in-out infinite;
  overflow: hidden;
}

@keyframes floatBhikux {
  0%, 100% {
    background-position: right 0px center;
  }
  50% {
    background-position: right 10px center;
  }
}

.with-bhikux-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 20, 0.95), rgba(10, 10, 20, 0.1));
  z-index: 0;
}

.presale-content {
  position: relative;
  z-index: 1;
  max-width: 60%;
  padding: 2rem;
}
.with-hero-bhikux-bg {
  position: relative;
  background-image: url('images/bhikux-hero.png'); /* Transparent PNG/WebP */
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  background-color: rgba(5, 10, 30, 0.95);
  overflow: hidden;
  animation: bhikuxFloatHero 7s ease-in-out infinite;
}

@keyframes bhikuxFloatHero {
  0%, 100% {
    background-position: right 0px bottom;
  }
  50% {
    background-position: right 10px bottom;
  }
}

.with-hero-bhikux-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(5, 10, 30, 0.95), rgba(5, 10, 30, 0.05));
  z-index: 0;
}
.hero-section {
  padding-top: 100px; /* Adjust to match navbar height */
  background: linear-gradient(to right, rgba(5, 10, 30, 0.95), rgba(5, 10, 30, 0.7));
}

.hero-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  flex-wrap: wrap;
}

.hero-content {
  flex: 1;
  color: #ffffff;
  max-width: 55%;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
  color: #FFD700; /* Gold */
}

.hero-content p {
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 400;
  color: #eee;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
  margin-top: 2rem;
}

.main-btn, .alt-btn {
  display: inline-block;       /* Ensures buttons sit side by side */
  padding: 0.9rem 2rem;
  margin-right: 1rem;
  margin-bottom: 0.5rem;       /* Add space in case they wrap */
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
}

.main-btn {
  background: linear-gradient(135deg, #FFB700, #FF6A00);
  color: #000;
  box-shadow: 0 4px 12px rgba(255, 183, 0, 0.5);
}

.alt-btn {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.main-btn:hover {
  transform: scale(1.05);
}

.alt-btn:hover {
  background: #FFD700;
  color: #000;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.hero-image img {
  width: 300px;         /* Increase or decrease as needed */
  max-width: 100%;
  height: 40%;
  position: absolute;
  right: 30px;          /* Positioning to the right */
  bottom: 150px;
  z-index: 0;
  animation: floatBhikux 6s ease-in-out infinite;
}

@keyframes floatBhikux {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.presale-status-banner {
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(to right, #FFD700, #FF4500);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  display: inline-block;
  animation: pulseGlow 2s infinite;
  text-align: center;
}

.presale-ended {
  color: #000;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(255, 69, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.3);
  }
}
.how-to-buy-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #000, #111);
  padding: 80px 40px;
  color: gold;
  position: relative;
  overflow: hidden;
  border-top: 2px solid gold;
  border-bottom: 2px solid gold;
}

.buy-text {
  flex: 1;
  max-width: 60%;
  animation: fadeInLeft 1.5s ease-in-out;
  z-index: 2;
}

.buy-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: #ffd700;
}

.buy-text p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ccc;
}

.buy-steps {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.buy-steps li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #eee;
}

.buy-now-btn {
  padding: 15px 30px;
  font-size: 18px;
  background: gold;
  color: black;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 20px gold;
  transition: all 0.3s ease;
  animation: pulse 1.5s infinite;
}

.buy-now-btn:hover {
  background: #ffcc00;
  color: black;
  box-shadow: 0 0 30px #ffcc00;
}

.buy-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  max-width: 100%;
  height: 75%;
  position: absolute;
  right: 30px;
  bottom: 150px;
  z-index: 1; /* Lower than text */
  animation: floatBhikux 6s ease-in-out infinite;
  opacity: 0.8; /* Optional for blending effect */
}
.animated-buy-img {
  width: 400px;
  max-width: 100%;
  animation: floatY 3s ease-in-out infinite;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 20px gold; }
  50% { transform: scale(1.05); box-shadow: 0 0 30px #ffd700; }
  100% { transform: scale(1); box-shadow: 0 0 20px gold; }
}

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
.roadmap-section {
  position: relative;
  padding: 80px 20px;
  color: gold;
  background: rgba(0, 0, 0, 0.8);
  background-image: url('/images/roadmap-bg.webp'); /* Optional bg */
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(2px);
  overflow: hidden;
  }
.roadmap-section .section-title {
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700;
  text-shadow: 1px 1px 5px #000;
  animation: glowTitle 3s ease-in-out infinite;
}

.roadmap-timeline {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.milestone {
  border-left: 4px solid #FFD700;
  padding-left: 20px;
  animation: slideUp 1s ease forwards;
}

.milestone h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #FFF;
}

.milestone p {
  font-size: 18px;
  color: #ccc;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes glowTitle {
  0% { text-shadow: 0 0 10px gold; }
  50% { text-shadow: 0 0 20px orange; }
  100% { text-shadow: 0 0 10px gold; }
}
.tokenomics-section {
  padding: 80px 20px;
  background: rgba(0, 0, 0, 0.85);
  background-image: url('/images/tokenomics-bg.webp');
  background-size: cover;
  background-position: center;
  color: gold;
  overflow: hidden;
}

.token-chart-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.token-chart {
  max-width: 400px;
  width: 100%;
  border: 2px solid #FFD700;
  border-radius: 10px;
  box-shadow: 0 0 15px gold;
  animation: fadeInChart 2s ease-in;
}

.token-distribution {
  list-style: none;
  padding: 0;
  font-size: 18px;
  color: #eee;
}

.token-distribution li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.token-distribution li::before {
  content: "●";
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 2px;
}

@keyframes fadeInChart {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.roadmap-image-container, .tokenomics-image-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  margin-top: 40px;
  text-align: center;
  width: 100%;
}

.roadmap-image {
  max-width: 100%;
  height: auto;
  
}

.roadmap-image, .tokenomics-image {

  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  display: block;
  animation: fadeInUp 2s ease;
  animation: fadeInImage 3s ease-in-out forwards;
}

@keyframes fadeInImage {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
/* Primary Red-Gold Action Button */
.btn-primary {
  background: linear-gradient(45deg, #ff0000, gold);
  color: #000;
  border: none;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px gold;
}

.btn-primary:hover {
  background: linear-gradient(45deg, gold, #ff0000);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 16px red;
}

/* Secondary Ghost Button (Outlined) */
.btn-secondary {
  background: transparent;
  color: gold;
  border: 2px solid gold;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.btn-secondary:hover {
  background: gold;
  color: #000;
}

/* Special Utility Button (e.g. Bot, Stake, Referral) */
.btn-utility {
  background: rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
  border: 1px solid #ff0000;
  padding: 10px 20px;
  border-radius: 6px;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.btn-utility:hover {
  background: #ff0000;
  color: black;
  box-shadow: 0 0 10px red;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
    line-height: 2.6rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .slide h3 {
    font-size: 1.2rem;
  }
  .panel {
    padding: 15px;
  }
  ::-webkit-scrollbar-thumb {
  background: linear-gradient(45deg, red, gold);
  border-radius: 6px;
}
body {
  scrollbar-width: thin;
  scrollbar-color: red gold;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 15px var(--gold); }
  50% { box-shadow: 0 0 30px var(--red); }
}

.buy-buttons button {
  animation: pulse-glow 2s infinite;
}
.navbar-menu {
  transition: max-height 0.4s ease-in-out;
  overflow: hidden;
  max-height: 0;
}

.navbar-menu.active {
  max-height: 500px; /* enough for full menu */
}
#menu li a.active {
  color: var(--gold);
  text-shadow: 0 0 15px var(--red);
}
button:focus, a:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 10px;
}
  ::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}
.tokenomics-section {
  background: #0c0c0c;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.tokenomics-section .section-title {
  font-size: 2.5em;
  color: #ffd700;
  text-align: center;
  margin-bottom: 10px;
}

.tokenomics-section .section-subtitle {
  text-align: center;
  color: #aaa;
  margin-bottom: 40px;
}
  .tokenomics-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 1000px;
  margin: 0 auto;
}

.tokenomics-row {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  padding: 15px 20px;
  border: 1px solid #222;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: 0.3s ease;
}

.tokenomics-row:hover {
  background: rgba(255, 215, 0, 0.1);
}

.tokenomics-row.header {
  background: #111;
  font-weight: bold;
  color: #ffd700;
  border-bottom: 2px solid #ffd700;
}
  
