@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');

h1, h2, .meme-title {
  font-family: 'Bangers', cursive;
}


/* GLOBAL */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Bangers', cursive;
  background: linear-gradient(to top, #725EEF, #5EBCEF);
  color: #fff;
  text-align: center;
}
html { scroll-behavior: smooth; }
section {
  padding: 80px 20px;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

/* NAVBAR */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%);
  width: 90%;
  max-width: 90%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  z-index: 1000;
  margin: 5px;
  border-bottom-right-radius: 3px solid  #000;
  border-radius: 30px;
  gap: 30px;
  box-shadow: 5px 5px  #9F5C40;
  color: #f7f3f3;

}
.nav-logo img {
    height: 70px;
    width: auto;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}
 .nav-links .btn {
    color: #fff;
  }

/* Hamburger remains hidden on desktop */
/* Hamburger hidden by default (desktop), shown on mobile */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

/* Hamburger animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Show hamburger and slide menu on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    background: rgba(230, 204, 19, 0.95);
    height: calc(45vh - 60px);
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 30px;
    margin-top: 13px;
    width: 200px;    
    gap: 25px;
    transition: right 0.3s ease;
    z-index: 998;
  }

  .nav-links.active {
    right: 0;
  }
 .nav-links .btn {
    color: #fff;
  }
  .nav-links a {
    font-size: 1.2rem;
  }
}



/* HERO */
/* HERO */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('logo.png') center center / 120% no-repeat;
  filter: blur(10px);
  z-index: -1;
}

/* Rest of your styles stay the same */
.logo {
  width: 120px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 4rem;
  color: #fff;
  margin: 30px 0 10px;
  padding-top: 40px;
  text-shadow:
    -2px -2px 0 #9F5C40,
     2px -2px 0 #9F5C40,
    -2px  2px 0 #9F5C40,
     2px  2px 0 #9F5C40,
    -3px  0px 0 #9F5C40,
     3px  0px 0 #9F5C40,
     0px -3px 0 #9F5C40,
     0px  3px 0 #9F5C40;
}

.tagline {
  font-size: 1.5rem;
  max-width: 600px;
  margin: auto;
  color: #ffffff;
  margin-bottom: 60px;
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 40px;
}
.btn {
  background: #000;
  color: #ffffff;
  padding: 10px 30px;
  border-radius: 30px;
  font-weight: 6000;
  transition: background 0.3s;
  text-decoration: none;
  font-size: 1.5rem;
  border: 3px solid #9F5C40;
  margin-bottom: 30px;
}
.btn:hover {
  background: #ffe135;
  color: #000;
}


/* Button and image styles */
.btn-img-wrapper {
  text-align: center;
  margin-top: -50px;
  margin-bottom: 20px;
}

/* 🟡 Scroll-linked sliding image */
.scroll-slide-img {
  position: absolute;
  bottom: 0;
  left: 100%; /* Start off-screen right */
  transform: translateX(-50%);
  width: 200px; /* your desired width */
  pointer-events: none;
  z-index: 3;
  transition: transform 0.1s linear;
}




.scrolling-text-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #111;
  padding: 10px 0;
  margin-bottom: 30px;
}

.scrolling-text {
  font-family: 'Lilita One';
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 15s linear infinite;
}

.scrolling-text span {
  display: inline-block;
  padding-left: 100%;
  font-size: 1.2rem;
  color: #ffe135;
  letter-spacing: 1px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* SECTIONS */
/* SECTIONS (Centered & Responsive) */
.about, .gallery, .tokenomics, .how-to-buy, .contract {
  background: rgba(20, 20, 20, 0.9);
  margin: 40px auto;
  border-radius: 10px;
  padding: 60px 20px;
  max-width: 1000px;
  text-align: center;
  box-shadow: 5px 5px #000;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .about, .gallery, .tokenomics, .how-to-buy, .contract {
    padding: 40px 15px;
    margin: 30px 10px;
    max-width: 95%;
  }
}



/* ABOUT */
.about {
  padding: 40px; /* optional: adds spacing so content isn't glued to the edges */
  border-radius: 10px; /* optional: for rounded corners */
  box-shadow: 5px 5px  #9F5C40;
}

.about-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.about-text {
  background-color: rgba(66, 159, 20, 0.85); /* semi-transparent green */
  padding: 40px 20px;
  border-radius: 15px;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0.95;
}

.about-text:hover {
  transform: scale(1.02);
  opacity: 1;
}

.about-text h2 {
  color: #ffe135;
  margin-top: 0;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000,
    -3px  0px 0 #000,
     3px  0px 0 #000,
     0px -3px 0 #000,
     0px  3px 0 #000;
}

.about-text p {
  color: #000;
  line-height: 1.7;
  max-width: 700px;
  margin: 20px auto;
  text-align: center;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
}

.about-text p:nth-child(2) {
  animation-delay: 0.1s;
}
.about-text p:nth-child(3) {
  animation-delay: 0.2s;
}
.about-text p:nth-child(4) {
  animation-delay: 0.3s;
}
/* Add more if you have more <p> tags */

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alone {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: -50px;
}

.alone img {
  max-width: 300px;
  margin-bottom: 20px;
  animation: floaty 3s ease-in-out infinite;
}

@keyframes floaty {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.btn-cta {
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  color: #000;
  border: 3px solid #000;
  background: #ffe135;
  padding: 10px 30px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-cta:hover {
  background: #000;
  color: #ffe135;
  transform: translateY(-3px);
}



/* HOW TO BUY */
.how-to-buy {
  background: url('image12.jpg') center center / cover no-repeat;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 5px 5px #ffe135;
  position: relative;
  overflow: hidden;
}

.how-to-buy::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: -1;
}

.how-to-buy h2 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.how-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scroll-padding: 20px;
}

.how-step {
  flex: 0 0 90%;
  scroll-snap-align: center;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid #00ff88;
  box-shadow: 0 0 15px #00ff88;
  border-radius: 15px;
  padding: 30px;
  color: #fff;
  min-height: 200px;
  transition: transform 0.3s ease;
  text-align: left;
}

.how-step strong {
  display: block;
  font-size: 1.4rem;
  color: #000;
  margin-bottom: 10px;
  text-shadow: 0 0 8px #00ffcc;
}

.how-step p {
  font-size: 1.1rem;
  color: #fff;
  line-height: 1.6;
}

.how-step a {
  color: #ffe135;
  text-decoration: underline;
}

.how-carousel::-webkit-scrollbar {
  display: none;
}

.swipe-hint {
  text-align: center;
  color: #fff;
  font-size: 1.1rem;
  margin-top: 15px;
  text-shadow: 0 0 5px #000;
  animation: pulseArrow 1.5s infinite ease-in-out;
}

/* WHY TRUSTCOIN */
.why-trustcoin {
  background: url('image12.jpg') center center / cover no-repeat;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 5px 5px #ffe135;
  position: relative;
  overflow: hidden;
}

.why-trustcoin::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(5px);
  z-index: -1;
}

.why-trustcoin h2 {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  margin-bottom: 30px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.trust-card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid #00ff88;
  box-shadow: 0 0 15px #00ff88;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card strong {
  display: block;
  font-size: 1.4rem;
  color: #ffe135;
  text-shadow: 0 0 8px #000;
  margin-bottom: 10px;
}

.trust-card p {
  font-size: 1rem;
  line-height: 1.5;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px #000;
}


/* CONTRACT SECTION */
.contract {
  padding: 40px;
  border-radius: 10px;
  box-shadow: 5px 5px #000;
  position: relative;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

.contract::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: url('image7.jpg') center center / cover no-repeat;
  filter: blur(1px);
  opacity: 0.6;
  z-index: -1;
}


.contract h2 {
  color: #fff;
  font-size: 2.8rem;
  margin-bottom: 25px;
  text-shadow:
    -2px -2px 0 #000,
     2px -2px 0 #000,
    -2px  2px 0 #000,
     2px  2px 0 #000;
}

.ca-box {
  background: rgba(0, 0, 0, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  border: 2px solid #00ff88;
  border-radius: 10px;
  box-shadow: 0 0 12px #00ff88;
  font-family: monospace;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.ca-box:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px #00ff88;
}

.ca-box span {
  color: #fff;
  font-size: 1.1rem;
  text-shadow: 0 0 6px #00ffcc;
}

.ca-box button {
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease;
}

.ca-box button:hover {
  color: #00ffcc;
}

#copy-status {
  color: #00FF88;
  margin-top: 12px;
  font-size: 0.95rem;
}



/* FOOTER */
footer {
  background: #000;
  color: #888;
  padding: 25px 20px;
  margin-top: 40px;
  border-top: 1px solid #333;
}
footer p {
  margin-bottom: 15px;
}
