/* --- GLOBAL --- */
body{font-family:system-ui,-apple-system,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;background:#efe9d7;  padding-bottom: 100px; /* adjust if needed based on navbar height */}


/* --- FIXED NAVBAR CONTAINER --- */
.navbar-wrapper {
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.container{
  padding-top: 30px;
  padding-bottom: 30px;
}

/* --- LEFT LOGO --- */
.navbar-logo img {
  height: 48px;
}

/* --- CENTER MENU BOX --- */
.navbar-center {
  background: #f1ebd778;
  border: 2px solid #333;
  padding: 15px 30px;
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* --- MENU LINKS --- */
.navbar-center a {
  color: #333;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease-in-out;
}

.navbar-center a:hover {
  color: #d78877;
}

/* --- DAPP BUTTON STYLE --- */
.navbar-center .btn-dapp {
  background: #d78877;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  color: #333;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}

/* --- PRESALE BUTTON --- */
.navbar-cta {
  background: #333;
  color: #fff;
  border: 2px solid #333;
  padding: 0.5rem 1.5rem;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
  text-decoration: none;
  transition: background 0.2s;
}

.navbar-cta:hover {
  background: #444;
}

.text-sand{
  color:#efe9d7 !important;
}

/* --- TICKER BAR --- */
.ticker {
  background: #ffffff;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  overflow: hidden;
  white-space: nowrap;
  position: fixed;
  height: 60px;
  display: flex;
  align-items: center;
  bottom:0px;
  width: 100%;
  z-index: 9999;
}

/* --- TICKER CONTENT (Sliding) --- */
.ticker-content {
  display: inline-block;
  padding-left: 100%;
  animation: ticker-slide 20s linear infinite;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* --- TICKER TEXT --- */
.ticker a {
  color: #d78877;
  font-weight: 600;
  text-decoration: none;
  margin: 0 0.5rem;
}

.ticker span {
  color: #333;
  font-weight: 400;
}

/* --- ICON IMAGE --- */
.ticker img {
  height: 24px;
  margin: 0 1rem;
}


.text-orange{color:#d78877;}
.pixel-font{font-family:'Press Start 2P',cursive;letter-spacing:.5px;}

.bg-light{background:#efe9d7 !important;}
/* --- HERO --- */
.hero {
  position: relative;
  background: url('../assets/images/background.png') top left #efe9d7 repeat;
  background-size: 600px auto;
  overflow: hidden;
  padding-top: 200px;
}

/* --- Gradient Overlay for Bottom Fade --- */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, rgba(239, 233, 215, 0) 0%, rgba(239, 233, 215, 1) 100%);
  pointer-events: none;
  z-index: 1;
}

/* --- Content stays above the overlay --- */
.hero > * {
  position: relative;
  z-index: 2;
}

.hero-img{max-width:400px;}


/* --- PARTNERS --- */
.partners img{opacity:.8;transition:opacity .2s;}
.partners img:hover{opacity:1;}

/* --- BRICKLAYER CTA SECTION --- */
.bricklayer-cta {
  background: #d78877;
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  position: relative;
}

/* Parallax Grid Layer */
.bricklayer-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/grid1.png') repeat;
  background-size: cover;
  transform: translateZ(0);
  z-index: 0;
  will-change: transform;
}



/* Content stays above grid */
.bricklayer-cta .container,
.bricklayer-cta .walking-brick {
  position: relative;
  z-index: 1;
}

.bricklayer-cta h2 {
  font-size: 4rem;
  color: #fff;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: #000;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
  text-decoration: none;
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: translateY(-2px);
}

/* --- WALKING BRICK ANIMATION --- */
.walking-brick {
  position: absolute !important;
  bottom: -30px;
  left: -100px;
  height: 220px;
  animation: walk-right 15s linear infinite;
}

@keyframes walk-right {
  0% { left: -100px; }
  100% { left: 110%; }
}


.btn-danger{background:#d78877;border-color:#d78877;}
.btn-danger.shadow-sm,
.btn-light.shadow-sm{box-shadow:4px 4px 0 rgba(0,0,0,.4);}


/* ---------------- TOKENOMICS SECTION ---------------- */
.tokenomics-section {
  background: url('../assets/images/grid1.png') center / 480px repeat;
}

.tagline-banner {
  display: inline-block;
  background: #fff;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
}

.shadow-img {
  
  max-width: 100%;
}

/* --- FEATURES SECTION --- */
.features-section {
  background: #efe9d7;
}

.feature-card {
  background: #fff;
  border: 2px solid #333;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  padding: 2rem;
  background-image: url('../assets/images/noise.png'); /* speckled pattern */
  background-size: contain;
}

.feature-card h5 {
  font-size: 1rem;
  letter-spacing: 1px;
}

.feature-card p {
  font-size: 0.9rem;
  color: #333;
}

.feature-img {
  height: 80px;
}

.button-pixel {
  display: inline-block;
  background: #505050;
  color: #fff;
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.1s ease-in-out, box-shadow 0.1s ease-in-out;
}

.button-pixel:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.button-pixel:active {
  transform: translate(4px, 4px);
  box-shadow: none;
}

.button-pixel span {
  display: inline-block;
}


.footer-section {
  background: #efe9d7;
  border-top: 2px solid #333;
  margin-top: 5rem;
}

.footer-top {
  padding: 2rem 0;
}

.footer-copy {
  font-size: 0.9rem;
  color: #333;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* --- SOCIAL ICONS IN BRACKETS --- */
.footer-social a {
  color: #333;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  text-decoration: none;
}

.footer-social span {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.8rem;
}


/* --- BOTTOM BRAND NAME --- */
.footer-bottom {
  border-top: 2px solid #333;
  padding: 2rem 0;
}

.footer-brand {
  font-size: 3rem;
  color: #333;
  margin: 0;
}
.democratize {
  position: relative;
  padding: 7rem 0;
  background: #efe9d7;
  overflow: hidden;
}

/* Background image with opacity effect */
.democratize::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/Home-img-2.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}
.roadmap-section {
  position: relative;
  padding: 5rem 0;
  background: #efe9d7;
  overflow: hidden;
}

/* Background image with opacity effect */
.roadmap-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/Home-img-2.jpg') center/cover no-repeat;
  opacity: 0.1;
  z-index: 0;
  pointer-events: none;
}

/* Content stays above */
.roadmap-section .container {
  position: relative;
  z-index: 1;
}

/* The rest stays the same */
.roadmap-card {
  background: #fff;
  border: 2px solid #333;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  padding: 2rem;
  background-image: url('../assets/images/noise.png');
  background-size: contain;
  position: relative;
  min-height: 500px;
}

.roadmap-header {
  background: #333;
  color: #fff;
  font-family: 'Press Start 2P', cursive;
  font-size: 1.5rem;
  padding: 0.5rem 1rem;
  display: inline-block;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  margin-bottom: 1.5rem;
}

.roadmap-list {
  list-style: none;
  padding-left: 0;
  font-size: 0.9rem;
  color: #333;
}

.roadmap-list li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.5rem;
}

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

/* Walking Brick Character */
.roadmap-walker {
  position: absolute !important;
  bottom: 0;
  left: 1rem;
  height: 80px;
}

.hero-pattern-section {
  position: relative;
  background: url('../assets/images/background.png') top left #efe9d7 repeat;
  background-size: 600px auto;
  overflow: hidden;

}

/* Top gradient fade overlay */
.hero-pattern-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(239, 233, 215, 0) 0%, rgba(239, 233, 215, 1) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Content stays above the fade overlay */
.hero-pattern-section .container {
    padding-top: 0px;
    padding-bottom: 100px;
  position: relative;
  z-index: 1;
}


.accelerated-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.accelerated-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: slide-left 30s linear infinite;
}

.accelerated-track img {
  height: 40px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.accelerated-track img:hover {
  opacity: 1;
}

/* Animation Keyframes */
@keyframes slide-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


.brick-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.brick-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: slight delay for child elements */
.brick-animate.stagger .brick-child {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.brick-animate.stagger.visible .brick-child:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.brick-animate.stagger.visible .brick-child:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.brick-animate.stagger.visible .brick-child:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
/* Add more nth-child rules if needed */


.video-section {
  position: relative;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border: 2px solid #333;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
}

.video-blur {
  width: 100%;
  filter: blur(8px) brightness(0.8);
  transition: filter 0.5s ease;
}

.video-wrapper.playing .video-blur {
  filter: blur(0) brightness(1);
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border: 2px solid #fff;
  font-family: 'Press Start 2P', cursive;
  font-size: 2rem;
  padding: 1rem 2rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.5);
  transition: transform 0.2s ease;
}

.video-play-button:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.video-wrapper.playing .video-play-button {
  display: none;
}


.brick-vault-section {
  background: #d78877;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.brick-vault-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../assets/images/grid1.png') repeat;
  background-size: cover;
  opacity: 0.9;
  z-index: 0;
}

.brick-vault-section .container {
  position: relative;
  z-index: 1;
}

.vault-boxes .vault-box {
  background: #efe9d7;
  color: #333;
  border: 2px solid #333;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
  padding: 1rem;
  font-size: 0.9rem;
}


.brick-paragraph.card {
     background: #efe9d7;
    color: #333;
    border: 2px solid #333;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.4);
    padding: 1rem;
    font-size: 1.2rem;
}

.brick-paragraph.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}


.pixel-font {
  font-family: 'Press Start 2P', cursive;
}


/* --- FAQ SECTION --- */
.accordion-item {
  border: 2px solid #333;
  background-color: #fff;
  color: #333; /* ensure text is dark */
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.4);
  background-image: url('../assets/images/noise.png');
  background-size: contain;
}

.accordion-button {
  font-family: 'Press Start 2P', cursive;
  font-size: 0.7rem;
  color: #333;
  background-color: #efe9d7;
  text-transform: none;
}

.accordion-button:not(.collapsed) {
  background-color: #f7e8e0;
  color: #d78877;
}

.accordion-body {
  font-size: 0.9rem;
  color: #333;
  background-color: #fff;
  padding: 1.5rem;
}


.accordion-header {
  border-bottom: 1px solid #333;
}

@media (max-width: 576px) {
  .accordion-button {
    font-size: 0.6rem;
  }
}

