/* ========================
   Global Reset & Base
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: rgb(24, 28, 29);
  color: #fff;
  transition: padding-top 0.3s ease;
}

body.menu-open {
  padding-top: 250px;
}

/* ========================
   Navbar Styles
=========================== */
.navbar {
  font-family: 'Fredoka One', cursive;
  background-color: #26262679;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  box-shadow: 0 4px 12px #000;
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 999;
}

.logo {
  font-size: 2rem;
  color: white;
  text-shadow: 2px 2px #000;
  animation: wiggle 2s infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-family: 'Fredoka One', cursive;
  text-decoration: none;
  font-size: 1.1rem;
  padding: 10px 20px;
  border-radius: 25px;
  background: #005771a7;
  color: #fff;
  box-shadow: 2px 2px 10px #000;
  transition: all 0.4s ease;
  display: inline-block;
}

.nav-links a:hover {
  background: #ffe53b;
  color: #000;
  transform: scale(1.1) rotate(-4deg);
  padding: 10px 20px;
}

.nav-links a:active {
  transform: rotate(360deg);
}

/* ========================
   Hamburger Menu
=========================== */
.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
}

.bar {
  background-color: #fff;
  height: 4px;
  width: 100%;
  border-radius: 2px;
  position: absolute;
  transition: 0.4s ease;
}

.bar.top { top: 0; }
.bar.middle { top: 9px; }
.bar.bottom { bottom: 0; }

.hamburger.open .bar.top {
  transform: rotate(45deg);
  top: 9px;
}
.hamburger.open .bar.middle {
  opacity: 0;
}
.hamburger.open .bar.bottom {
  transform: rotate(-45deg);
  bottom: 9px;
}

/* ========================
   Responsive Navbar
=========================== */
@media (max-width: 768px) {
  .navbar {
    padding: 20px 30px;
  }
  .logo {
  font-size: 1.5rem;
}
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgb(24, 27, 28);
    flex-direction: column;
    align-items: center;
    gap: 20px;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    z-index: 998;
  }

  .nav-links.active {
    height: 270px;
    padding: 20px;
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger {
    display: block;
  }

  body.menu-open .section {
    margin-top: 30px;
  }
}

/* ========================
   Hero Section
=========================== */
.section {
  margin-top: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  gap: 50px;
  text-align: left;
}

.text-content {
  font-family: 'Bangers', cursive;
  max-width: 600px;
  margin-left: -10px;
}

.head,
.text-content h3,
.text-content p {
  opacity: 0;
  transform: translateY(20px);
  animation: textIn 0.5s ease-out forwards;
}

.head {
  font-size: 38px;
  color: white;
  animation-delay: 0.2s;
  text-shadow: 2px 2px 3px black;
  margin-bottom: 10px;
}

.text-content h3 {
  font-size: 27px;
  color: #fdb734;
  animation-delay: 0.6s;
  margin-bottom: 10px;

}

.text-content p {
  font-size: 18px;
  color: #fdb734;
  text-shadow: 1px 1px 2px #000;
  margin: 8px 0;
  margin-bottom: 10px;

}

.text-content span {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;

}

/* ========================
   Emoji Image Animation
=========================== */
.emoji-img img {
  width: 350px;
  margin-left: 180px;
  filter: drop-shadow(0 0 10px #c6c301);
  animation: emojiEntrance 1.2s ease-out forwards, emojiBounce 3s ease-in-out infinite, emojiPulse 4s ease-in-out infinite;
  /* Removed opacity: 0 */
  transform: translateY(30px) scale(0.95); /* Still apply entrance offset */
}

/* Entrance Animation */
@keyframes emojiEntrance {
  0% {
    transform: translateY(30px) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Subtle Bounce Loop */
@keyframes emojiBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Glow + Pulse Effect */
@keyframes emojiPulse {
  0%, 100% {
    filter: drop-shadow(0 0 5px #c6c301);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 10px #c6c301);
    transform: scale(1.05);
  }
}

.salute-text{
  display: none;
}

@media (max-width: 768px) {
  .section {
    flex-direction: column-reverse; /* ✅ Moves logo above text */
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .emoji-img img {
    width: 300px;
    margin: auto;
    margin-top: 10;
    margin-bottom: 20px;
    position: top;
  }
  .salute-text { 
    display: block;
  font-family: 'Fredoka One', cursive;
  font-weight: lighter;
  font-size: 14px;
  text-align: center;
  color: #dddddd;
  margin: auto ;
  background: #1c1c1c;
  border-radius: 12px;
  text-shadow: 10 10px 12px rgba(255, 229, 59, 0.783);
  max-width: fit-content;
}

.salute-underline {
  width: 80%;
  height: 3px;
  background: #8c8c8c;
  margin: 8px auto 30px;
  border-radius: 2px;
}
  .head {
    font-size: 25px;
   
  }

  .text-content h3 {
    font-size: 17px;
    
  }

  .text-content p {
    font-size: 15px;
    
  }

  .text-content span {
    font-size: 17px;
  }
}


/* ========================
   Divider Line Animation
=========================== */
.line-wrapper {
  width: 100%;
  height: 3px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

.dashed-line {
  width: 200%;
  height: 3px;
  background-image: repeating-linear-gradient(to right, #fce658 0, #f9e97d 10px, transparent 10px, transparent 20px);
  animation: moveDash 9s linear infinite;
}

@keyframes moveDash {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
/* ========================
   Contract Card Section
=========================== */
.contract-section {
  padding: 3rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #fff;
}

.contract-card {
  position: relative;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  font-family: 'Bangers', cursive;
  overflow: hidden;
  z-index: 1;
}

.contract-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: conic-gradient(from 0deg, rgb(0, 62, 65), #0ff, rgb(248, 248, 55), rgb(122, 104, 1));
  z-index: -1;
  border-radius: 20px;
  animation: rotateBorder 4s linear infinite;
}

.contract-card::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: rgba(0, 40, 45, 0.95);
  border-radius: 16px;
  z-index: -1;
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.contract-box {
  background-color: rgba(255, 255, 255, 0.233);
  border: 1px solid #444;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  word-break: break-word;
  font-size: 1rem;
  color: #fff;
}

.contract-box img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.contract-box img:hover {
  transform: scale(1.1);
}

.copy-alert {
  position: fixed;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  background: #22c55e;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: 999;
}

.copy-alert.show {
  opacity: 1;
}

@media (max-width: 600px) {
  #address {
    font-size: 14px;
    margin-left: 0;
  }
}

/* ========================
   Animation Utility Classes
=========================== */
@keyframes textIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

.animate {
  animation-fill-mode: both;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }
.delay-4 { animation-delay: 1.2s; }
.delay-5 { animation-delay: 1.5s; }
.delay-6 { animation-delay: 1.8s; }
/* ========================
   How To Buy Section
=========================== */
/* 🔸 BOX STYLING */
.box {
  background: linear-gradient(135deg, #ffe642, #ad9916);
  padding: 2rem;
  border-radius: 25px;
  border: 2px dashed #fff;
  max-width: 350px;
  height: 65vh;
  margin: 2rem auto;
  flex-wrap: wrap;
  text-align: center;
  font-family: 'Fredoka One', cursive;
  color: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.box:hover {
  transform: scale(1.03) rotate(-1deg);
  box-shadow: 0 0 25px #ffde59;
}

.box h2 {
  font-size: 28px;
  margin-bottom: 12px;
  color: #000;
  text-shadow: 2px 2px #fff;
}

.box p {
  font-size: 20px;
  line-height: 1.6;
  color: #222;
  text-shadow: 1px 1px #ffecb3;
}

/* 🔸 BUY BUTTON STYLING */
.buy-btn {
  position: relative;
  background: linear-gradient(135deg, #e4d01e, #9e9401);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px #a99e00, 0 0 30px #ffea2c;
  overflow: hidden;
  display: inline-block;
}

a .buy-btn {
  text-decoration: none;
  color: #ffffff;
  font-family: 'Fredoka One', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

.buy-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px #a99e00, 0 0 50px #ffea2c;
}

.buy-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: pulse 2s infinite;
  z-index: 0;
}

/* 🔸 ANIMATION */
@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* 🔸 RESPONSIVENESS */
@media (max-width: 768px) {
  #howtobuy {
    font-size: 30px;
    text-align: center;
    margin-top: 30px;
  }

  .box {
    height: auto;
    margin: 1.5rem 1rem;
  }

  div[style*="display: flex"] {
    flex-direction: column !important;
    align-items: center;
  }
  .box h2 {
  font-size: 22px;
  margin-bottom: 12px;
}

.box p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  text-shadow: 1px 1px #ffecb3;
}
}

/* ========================
   Roadmap Timeline
=========================== */
.h1 {
  font-size: 42px;
  color: #ebebeb;
  font-family: 'Fredoka One', cursive;
  text-align: center;
  font-weight: lighter;
  margin-top: 90px;
  margin-bottom: 30px;
  text-shadow: 2px 2px #000;
}

.pppp {
  font-family: 'Fredoka One', cursive;  
  text-align: center;
  font-size: 18px;
  color: #ffeaa7;
  margin: 0 auto 30px;
  max-width: 700px;
  text-shadow: 1px 1px #000;
}

/* ========================
   Slider Container
=========================== */
.slider-container {
  margin: auto;
  overflow: hidden;
  max-width: 90%;
  height: 110vh;
  position: relative;
  border: 4px solid #ffe53b;
  border-radius: 20px;
  box-shadow: 0 0 20px #ffe53b80;
  background: #111;
}

/* ========================
   Track & Slide
=========================== */
.slider-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  flex: 0 0 100%;
  padding: 40px 20px;
  height: 110vh;

  color: #fff;
  font-family: 'Fredoka One', cursive;
  text-align: center;
  font-weight: lighter;
  background: linear-gradient(145deg, rgb(24, 28, 29), rgb(24, 28, 29));
}

/* ========================
   Roadmap Box
=========================== */
.roadmap-container {
  max-width: 40%;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: rgb(21, 23, 23);
  border-radius: 20px;
  box-shadow: 0 0 15px #ffe53b99;
}

/* ========================
   Phase Header
=========================== */
.phase-heading {
  font-size: 18px;
  background: #3a3737;
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-shadow: 2px 2px 0 #000;
}

.phase-sub {
  font-size: 19px;
  margin-top: 8px;
  font-weight: lighter;
  color: #ffe53b;
}

/* ========================
   Roadmap Step
=========================== */
.roadmap-step {
  background: #014e54;
  color: white;
  border-radius: 20px;
  padding: 13px;
  width: 100%;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: lighter;
  position: relative;
  box-shadow: 0 0 12px #000;
  transition: transform 0.3s ease;
}

.roadmap-step:hover {
  transform: scale(1.03);
  background: #01666f;
}

.roadmap-step .icon {
  font-size: 24px;
  margin-bottom: 8px;
  display: block;
}

/* Line between steps */
.roadmap-step:not(:last-child)::after {
  content: "\22EE";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  color: #ffe53b;
}

/* ========================
   Arrows
=========================== */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #ffe53b;
  background-color: #1a1a1a;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  cursor: pointer;
  user-select: none;
  z-index: 10;
  box-shadow: 0 0 15px #ffe53b80;
  transition: transform 0.3s ease, background 0.3s ease;
}

.arrow:hover {
  transform: translateY(-50%) scale(1.1);
  background-color: #333;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

/* ========================
   Dots
=========================== */
.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #555;
  border: 2px solid #ffe53b;
  cursor: pointer;
  transition: background 0.3s ease;
}

.dot.active {
  background-color: #ffe53b;
}

/* ========================
   Telegram Icon
=========================== */
.iinks {
  margin-top: 2px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.iinks:hover {
  transform: scale(1.2);
}

/* ========================
   Mobile View
=========================== */
@media (max-width: 768px) {
  .pppp{
    font-size: 15px;
    width: 80%;
  }
  .slider-container {
    height: 100vh;
    width: 120%;
    border-radius: 0;
    box-shadow: none;
    border: none;
  }

  .slider-track {
    height: 100vh;
  }

  .slide {
    width: 120%;
    height: 100vh;
    padding: 30px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
  }

  .roadmap-container {
    max-width: 110%;
    width: 110%;
    padding: 15px;
    gap: 15px;
    box-shadow: 0 0 10px #ffe53b70;
  }
  .roadmap-step{
    font-size: 15px;
    margin-bottom: 13px;
  }
  .phase-sub{
    font-size: 16px;
  }
  .arrow {
    top: auto;
    bottom: 30px;
    transform: none;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 24px;
    box-shadow: 0 0 10px #ffe53b50;
  }

  .left-arrow {
    left: 15px;
  }

  .right-arrow {
    right: 15px;
  }

  .dots {
    position: absolute;
    width: 100%;
  }
  .iinks {
    margin-top: 5px;
  }
}


.link-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(145deg, #f7d17f, #f3b841);
  border-radius: 50px;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.social-btn img {
  width: 22px;
  height: 22px;
}

.social-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, #fbdc9d, #f5c657);
}
html {
  scroll-behavior: smooth;
}

    .IineIast{
    width: 35%;
    margin: auto;
    margin-top: 40px;
    background-color: #cfd728;
    height: 2px;
    border: none;
}
.Iast{
  width: 40%;
  height: 50px;
  margin: auto;
  text-align: center;
  padding-top: 6px;
  font-family: 'Fredoka One', cursive;
  font-weight: lighter;
}
@media (max-width: 786px) {
  .IineIast{
        width: 80%;
      }
      .Iast{
        width: 80%;
        font-size: 15px;
        font-weight: lighter;
      }
      
}
.exx{
    width: 90%;
    background-color: rgb(0, 67, 67);
    border-radius: 20px;
    height: 43vh;
    margin: 10px auto;
    padding: 1px;
    box-shadow: 0 0 15px #ffe53b80;
}
@media (max-width: 786px) {
  .exx{
        height: 50vh;

      }
}