/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0a0a;
  color: #f1f1f1;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Particles canvas background */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at center, #0f0f0f, #000000);
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 6rem 1rem 4rem;

  position: relative;
  z-index: 1; /* Ensure content stays above SVG */
}
.hero h1 {
  font-size: 3.5rem; /* Match PDF's bold header feel */
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5); /* Add depth */
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cfcfcf;
}

.cta {
  background: #D4A017;
  color: #000;
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.cta:hover {
  background: #B8860B;
}

.cta-dark {
  background: #8A4B4B;
}

.cta-dark:hover {
  background: #7A3B3B;
}

/* Cards Section */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 4rem auto;
  padding: 0 1rem;
}


.card {
  background: rgba(15, 15, 15, 0.8); /* semi-transparent */ /* Optional light texture image */
  border: 2px solid #D4A017;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card ul,
.card ol {
  padding-left: 1.25rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 30px;
  font-size: 0.85rem;
  color: #aaa;
  background: #111;
}


/* Responsive adjustment for Tokenomics */
@media (max-width: 768px) {
  .tokenomics-grid {
    grid-template-columns: 1fr; /* Stack vertically on smaller screens */
  }
}

/* Roadmap Section */
.roadmap {
  background: rgba(15, 15, 15, 0.8); /* semi-transparent */
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.roadmap-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* Header */
.roadmap-header .badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.1);
  color: #f0a500;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.roadmap-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

.roadmap-header h2 span {
  color: #f0a500;
}

/* Timeline */
.timeline {
  display: flex;
  justify-content: space-between;
  margin-top: 4rem;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #333;
  z-index: 1;
}

/* Items */
.timeline-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  opacity: 0; /* hidden initially */
  transform: translateY(40px) scale(0.95);
  transition: all 0.7s ease;
}

.timeline-item.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.timeline-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.15), rgba(0, 0, 0, 0.6));
  box-shadow: inset 2px 2px 6px rgba(0,0,0,0.5),
              inset -2px -2px 6px rgba(255,215,0,0.3),
              0 4px 12px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.timeline-icon img {
  width: 60%;
  height: auto;
  object-fit: contain;
}

/* Bling Effect for Active (Launch) */
.timeline-icon.active {
  animation: bling 1.5s infinite;
}

@keyframes bling {
  0% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px rgba(255, 215, 0, 1), 0 0 30px rgba(255, 215, 0, 0.8);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
    transform: scale(1);
  }
}

.timeline-item h3 {
  color: #f0a500;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  color: #aaa;
  font-size: 1rem;
  max-width: 220px;
  margin: 0 auto;
}

/* FAQ Section */
.faq {
  background: rgba(15, 15, 15, 0.8); /* semi-transparent */
  padding: 6rem 2rem;
  display: flex;
  justify-content: center;
}

.faq-container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Left Image */
.faq-image img {
  max-width: 420px;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.5));
}

/* Right Content */
.faq-content {
  flex: 1;
}

.faq-content .badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.1);
  color: #f0a500;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.faq-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
}

.faq-content h2 span {
  color: #aaa;
}

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(20, 20, 20, 0.5); /* same transparency as roadmap */
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Gradient line effect */
.faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), transparent 70%);
  pointer-events: none;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.faq-question .icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: #f0a500;
  transition: transform 0.3s;
}

.faq-item.active .faq-question .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: #aaa;
  font-size: 0.95rem;
  line-height: 1.6;
  transition: max-height 0.4s ease, padding 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 1rem 1.5rem 1.5rem;
}

/* FAQ Item Hover Glow */
.faq-item:hover {
  border-color: rgba(240, 165, 0, 0.6);
  box-shadow: 0 0 15px rgba(240, 165, 0, 0.25);
  transform: translateY(-2px);
}

/* AboutMe classes */
.about {
  max-width: 800px;
  margin: 4rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), transparent 70%);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.15);
  color: #e5e7eb;
  line-height: 1.6;
}
.about h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #facc15;
}
.about p {
  margin-bottom: 1rem;
}

/* Vault */
.vault-header {
  text-align: center;
  margin-bottom: 3rem;
}
.vault-header .badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.1);
  color: #f0a500;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.vault-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}
.vault-header h2 span {
  color: #f0a500;
}

/* -------------------------------
   VAULTS SECTION
--------------------------------- */
.vaults {
/*  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), transparent 70%);
  max-width: 1400px;*/
  border-radius: 16px;
  padding: 3rem 1rem;
    background: rgba(15, 15, 15, 0.8); /* semi-transparent */
  margin: 2rem auto;
}

/* Section Header */
.vault-header {
  text-align: center;
  margin-bottom: 2rem;
}

.vault-header .badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
  background: rgba(255, 204, 0, 0.1);
  color: #f0a500;
  font-size: 0.85rem;
  font-weight: bold;
}

.vault-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.vault-header h2 span {
  color: #facc15;
}

/* Container (3 columns) */
.vaults-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start; /* keep left/right natural height */
  gap: 2rem;
}

/* Columns */
.vaults-left,
.vaults-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.vaults-left h2,
.vaults-right h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

/* Coin grid fixed 5x4 */
.coin-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Coin card (with flip effect) */
.coin-card {
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), transparent 70%);
  border-radius: 0.5rem;
  padding: 0.5rem;
  box-shadow: 0 0 10px rgba(250, 204, 21, 0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  text-align: center;
  height: 90px;                  /* 🔥 smaller fixed height */
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;           /* enable flip */
}

.coin-card img {
 width: 26px;
  height: 26px;
  margin-bottom: 0.25rem;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255,255,255,0.15);
}

.coin-card span {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  color: #f9fafb;
  line-height: 1.1;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.coin-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back */
.flip-card-front,
.flip-card-back {
 position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  box-sizing: border-box;
}

.flip-card-front {
  z-index: 2;
}

.flip-card-back {
   background: rgba(250, 204, 21, 0.1);
  font-size: 0.65rem;          /* 🔥 smaller text */
  line-height: 1.2;
  transform: rotateY(180deg);
}

/* Coin image */
.flip-card-front img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.15);
}

.flip-card-front span {
  font-weight: 600;
  font-size: 0.8rem;
  color: #fff;
}

/* Middle Coin Image */
.vaults-center {
 flex: 0 0 280px;       /* keeps fixed width */
  display: flex;
  justify-content: center;
  align-items: center;
}

.vaults-center img {
  max-height: 100%;      /* will fill parent height if parent gets height from JS */
  width: auto;           /* maintain aspect ratio */
  object-fit: contain;
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}




/* Responsive */
@media (max-width: 1024px) {
  .vaults-container {
    flex-direction: column;
    align-items: center;
  }

  .vaults-left,
  .vaults-right {
    width: 100%;
  }

  .vaults-center {
     flex: 0 0 280px;        /* keeps its width */
  display: flex;
  justify-content: center;
  align-items: center;     /* center the image vertically */
  height: 100%;         
  }
}

/*COIN HEADER */
.promo-wrapper {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.promo-wrapper img {
  max-width: 400px;   /* cap on desktops */
  width: 90%;         /* responsive scaling */
  height: auto;
  display: block;
  border-radius: 1rem; /* optional: rounded edges */
}
/* TEAM */
.team {
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.team h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

/* Trading card style */
.team-member {
  /* use FAQ accordion gradient */
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.08), transparent 70%); /* replace with your exact FAQ gradient */
  
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.card-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 2px solid #facc15; /* gold border */
  margin-bottom: 1rem;
}

.card-frame img {
  width: 100%;
   /*height: 280px;         portrait card size */
  object-fit: cover;
  border-radius: inherit;
  display: block;
  height: auto;
  aspect-ratio: 3 / 4;

}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0));
  color: #fff;
}

.card-overlay h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
}

.card-overlay .role {
  color: #facc15;
  font-size: 0.9rem;
  margin: 0.25rem 0 0;
}

.team-member .bio {
  font-size: 0.9rem;
  color: #d1d5db;
  margin-top: 0.5rem;
}




/*NAVBAR */
/* Navbar Container */
.navbar {
  width: 100%;
  position: fixed;
  top: 20px;
  left: 0;
  display: flex;
  justify-content: center;
  z-index: 1000;
  font-family: 'Arial', sans-serif;
}

/* Pill Background */
.nav-container {
  background: #1a1a1a;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
}

.logo img {
  width: 35px;
  height: 35px;
}

.logo .accent {
  color: #f0a500;
}

/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: #f0a500;
}

.nav-links li a.active::after {
  content: '';
  height: 2px;
  width: 100%;
  background: #f0a500;
  display: block;
  margin-top: 4px;
  border-radius: 2px;
}

/* CTA Button */
.cta-btn {
  background: #f0a500;
  color: #111;
  font-weight: bold;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #d18f00;
}

/*VAULT SPINNING COIN */
:root{
      --ring-size: 400px;   /* big coin diameter */
      --core-size: 260px;   /* inner static disc (optional) */
      --cell-size: 32px;    /* small coin diameter */
      --rim-gap: 64px;      /* distance from big coin edge to small-coin outer edge */
    }

    /* Stage */
    .vault-wheel{
      position: relative;
      width: var(--ring-size);
      height: var(--ring-size);
      margin: 3rem auto;
      display: grid;
      place-items: center;
      user-select: none;
      touch-action: none; /* better touch-drag */
      box-sizing: border-box;
    }

    /* Big coin (image background) */
    .vault-coin-big{
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      overflow: hidden;
      background: url("images/basecoin.png") center/cover no-repeat;
    }

    /* Rotatable inner ring (parent of small coins) */
    .coin-ring{
      position:absolute;
      inset:0;
      border-radius:50%;
      transform-origin: 50% 50%;
      cursor: grab;
      z-index:1;
      will-change: transform;
    }
    .coin-ring:active{ cursor: grabbing; }

    /* Small coins */
    .vault-coin{
      position:absolute;
      width: var(--cell-size);
      height: var(--cell-size);
      border-radius:50%;
      overflow:hidden;
    }
    .vault-coin img{
      width:100%; height:100%;
      object-fit: cover;
      border-radius:50%;
      display:block;
    }

    /* Optional: responsive toggle */
    @media (max-width: 640px){
      :root{
        --ring-size: 360px;
        --core-size: 200px;
        --cell-size: 52px;
        --rim-gap: 48px; /* tweak if you want slightly tighter ring on small screens */
      }
    }

/* SOCIALS */
.socials {
  padding: 4rem 2rem;
  text-align: center;
  color: #fff;
}

.socials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

/* Icon base (engraved coin style) */
.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(145deg, rgba(255, 204, 0, 0.08), rgba(0,0,0,0.4));
  box-shadow:
    inset 4px 4px 8px rgba(0,0,0,0.6),
    inset -4px -4px 8px rgba(255, 215, 0, 0.2),
    0 2px 6px rgba(0,0,0,0.4);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden; /* keeps images inside the circle */
}

/* Image inside the icon */
.social-icon img {
  width: 80%;       /* scales image inside the coin */
  height: auto;
  object-fit: contain;
  filter: brightness(1) contrast(1.1); /* optional polish */
  transition: transform 0.3s ease;
}

/* Hover effect */
.social-icon:hover {
  transform: translateY(-6px) scale(1.1);
  box-shadow:
    0 0 15px rgba(255, 215, 0, 0.9),   /* strong golden glow */
    0 0 30px rgba(255, 215, 0, 0.6),
    0 0 45px rgba(255, 215, 0, 0.4),
    inset 0 0 10px rgba(255, 255, 255, 0.2);
  background: radial-gradient(circle, rgba(255,255,255,0.15), rgba(0,0,0,0.6));
}

.social-icon:hover img {
  transform: scale(1.15);
  filter: brightness(1.6) contrast(1.2) saturate(1.3);
}

/* EVENT & MERCH */
.merch {
  /*background: rgba(15, 15, 15, 0.8); /* semi-transparent */ */
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.merch-container {
  max-width: 1100px;
  width: 100%;
  text-align: center;
}

/* Header */
.merch-header .badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.1);
  color: #f0a500;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.merch-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
}

.merch-header h2 span {
  color: #f0a500;
}

/* */
/* Merch Grid */
.merch-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.merch-card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 1rem;
  text-align: center;
  width: 180px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.merch-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 0.5rem;
}

.merch-card span {
  color: #f0a500;
  font-weight: 600;
}

.merch-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}



/* TOKENOMICS */
/* TOKENOMICS */
.tokenomics {
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

.tokenomics-container {
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

/* Header */
.tokenomics-header .badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 204, 0, 0.1);
  color: #f0a500;
  font-size: 0.85rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.tokenomics-header h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.tokenomics-header h2 span {
  color: #f0a500;
}

.tokenomics-header p {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 3rem;
}

/* Chart + distribution row */
.chart-center {
  display: grid;
  grid-template-columns: 1fr 1fr; /* chart on left, distribution cards on right */
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: center;
}

.chart-container {
  background: #111;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  width: 100%;
  height: 100%;
}

#tokenomicsChart {
  width: 100% !important;
  height: 100% !important;
  max-width: 400px;
  max-height: 400px;
}

.tokenomics-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tokenomics-card {
  background: #1f2937;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}

.tokenomics-card:hover {
  transform: translateX(4px);
  box-shadow: 0 0 15px rgba(96,165,250,0.6), 0 0 30px rgba(96,165,250,0.2);
}

.tokenomics-card span:first-child {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tokenomics-card span:first-child::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Match chart colors */
.tokenomics-card:nth-child(1) span:first-child::before { background-color: #d4a017; }
.tokenomics-card:nth-child(2) span:first-child::before { background-color: #4b5e7a; }
.tokenomics-card:nth-child(3) span:first-child::before { background-color: #8a4b4b; }
.tokenomics-card:nth-child(4) span:first-child::before { background-color: #4a7b5d; }
.tokenomics-card:nth-child(5) span:first-child::before { background-color: #6b4b8a; }

/* Bottom 3 cards */
.tokenomics-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch; /* forces equal height */
}

.tokencard {
  background: rgba(15, 15, 15, 0.8);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tokencard:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.tokencard h2 {
  color: #f0a500;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.tokencard ul,
.tokencard ol {
  padding-left: 1.2rem;
}

.tokencard li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1000px) {
  .chart-center {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .tokenomics-bottom {
    grid-template-columns: 1fr;
  }
}


/* Call to Action Buttons */
.cta-container {
  text-align: center;
  margin: 3rem 0;
}

.cta-dark {
  background: #000;
  color: #fff;
  padding: 0.75rem 2.5rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 1.5rem;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.cta, .cta-dark {
  position: relative;
}

.cta:hover, .cta-dark:hover {
  box-shadow: 0 0 20px rgba(250, 204, 21, 0.8), 0 0 40px rgba(250, 204, 21, 0.3);
}

.cta-dark:hover {
  background: #222;
}

/* Smooth auto scrolling */
html {
  scroll-behavior: smooth;
}

/*Responsive Navbar */
/* Hamburger button - hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #f0a500;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Responsive menu for mobile */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #111;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 2rem;
    display: none;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
  }

  /* Optional: hide CTA button on mobile or stack below nav-links */
  .cta-btn {
    display: none; /* or adjust: display:block; width:100%; margin-top:1rem; */
  }

  /* Reduce nav-container spacing on mobile */
  .nav-container {
    padding: 0.5rem 1rem;
    justify-content: space-between;
  }

  /* Nav links full-width */
  .nav-links li a {
    width: 100%;
    text-align: left;
  }
}




/*Responsive Timeline */
@media (max-width: 768px) {
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
  }
  .timeline-item {
    margin-bottom: 3rem;
  }
}

/*Responsive FAQ */
@media (max-width: 900px) {
  .faq-container {
    flex-direction: column;
    text-align: center;
  }
  .faq-image img {
    max-width: 80%;
  }
}

/*Responsive VAULT */
@media (max-width: 768px) {
  .coin-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .coin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .vaults { padding: 6rem 3rem; }
}
@media (min-width: 1200px) {
  .vaults { padding: 10rem; }
}

/* ============================
   MOBILE RESPONSIVE FIXES
   ============================ */

/* General container centering */
section, .about, .tokenomics, .roadmap, .faq, .vaults, .merch, .team, .socials {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Small screens (tablets & below) */
@media (max-width: 768px) {
  /* Hero */
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }

  /* Tokenomics */
  .chart-center {
    grid-template-columns: 1fr;
  }
  .tokenomics-bottom {
    grid-template-columns: 1fr;
  }

  /* Roadmap */
  .timeline {
    flex-direction: column;
    align-items: center;
  }
  .timeline::before {
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    height: 100%;
  }

  /* FAQ */
  .faq-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .faq-image img {
    max-width: 80%;
    margin: 0 auto;
  }

  /* Vaults */
  .vaults-container {
    flex-direction: column;
    align-items: center;
  }
  .coin-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Team */
  .team-grid {
    grid-template-columns: 1fr;
  }

  /* Merch */
  .merch-grid {
    justify-content: center;
  }

  /* Socials */
  .social-icons {
    gap: 1rem;
  }
}

/* Extra small (phones) */
@media (max-width: 480px) {
  .coin-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 1.75rem;
  }
  .hero p {
    font-size: 0.95rem;
  }
}

/* Reset nav-links so they don't push layout */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    background: #111;
    padding: 1rem;
    display: none; /* hidden by default */
  }
  .nav-links.active {
    display: flex;
  }

  /* Hamburger shows properly inside nav-container */
  .hamburger {
    display: flex;
    margin-left: 1rem;
  }

  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }
}

/*NAV FIX MOBILE */
/* Mobile navbar fix */
@media (max-width: 768px) {
  .nav-container {
    max-width: 100% !important;  /* stop overflow */
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0; /* optional, keeps it flat on edges */
  }

  .navbar {
    top: 0;
    left: 0;
    padding: 0;
    width: 100%;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .cta-btn {
    display: none;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
  }
}



@media (max-width: 768px) {
  .coin {
    max-width: 90vw;
    height: auto;
  }
}