/* === RESET & BACKGROUND === */
@import url('https://fonts.cdnfonts.com/css/burger-free');

 
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline
 
}


body {
  margin: 0;
  font-family: 'Burger Free', sans-serif;
  position: relative;
  min-height: 100vh;
  background: #f7f7f7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:  url("/assets/wizardbear.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(1.4);
  z-index: -1;
  opacity: 0.8;
}



/* === HEADER === */
.header {
  padding: 50px 0;
  animation: fadeInDown 0.8s ease-out;
}

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

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* === LOGO === */
.header__logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.header__logo img:hover {
  transform: scale(1.1) rotate(3deg);
}

/* === NAVIGATION === */
.header__nav {
  display: flex;
  gap: 40px;
  background: white;
  padding: 20px 60px;
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.header__nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(to right, #fefefe, #f3f3f3);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header__nav a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* === BUY BUTTON === */
.header__btn {
  background: linear-gradient(145deg,  #3e389a, #0000ff);
  color: white;
  padding: 18px 30px;
  border-radius: 40px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.header__btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  background: black;
  border-radius: 3px;
  transition: all 0.4s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === RESPONSIVE STYLES === */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .header__nav,
  .header__btn {
    position: absolute;
    top: 100%;
    left: 30px;
    right: 30px;
    background: white;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0px;
    transform: translateY(-200%);
    opacity: 0;
    visibility: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    z-index: 999;
  }

  .header__nav.show,
  .header__btn.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .header__btn {
    width: 80%;
    margin-top: 10px;
    color:#3e389a;
  }

  .header__container {
    flex-direction: row;
    justify-content: space-between;
  }
}





  .hero {
    padding: 4rem 2rem;
  }

 
  .hero {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .hero-img {
    flex: 1 1 300px;
    animation: slideInLeft 1s ease forwards;
    display: flex;
    justify-content: center;
  }

  .hero-img img {
    max-width: 100%;
    width: 100%;
    max-width: 450px;
    animation: float 3s ease-in-out infinite;
    transform: perspective(800px) rotateY(-8deg);
    transition: transform 0.5s ease;
  }
  

  .hero-img img:hover {
    transform: scale(1.05);
  }

  .hero-text {
    flex: 1 1 450px;
    text-align: center;
    animation: slideInRight 1s ease forwards;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 3rem;
    margin-bottom: 0px;
    color: #3e389a;
  }

  .hero-text h1 span {
    color: #3e389a;
  }

  .hero-text p {
    font-size: 1.2rem;
    color: black;
    margin-bottom: 30px;
  }

  .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
  }

  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(145deg, #202020, #2a2a2a);
    color: white;
    font-size: 1.2rem;
    box-shadow: 4px 4px 10px #101010, -4px -4px 10px #303030;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .social-links a:hover {
    transform: translateY(-5px) scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.6);
  }

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

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

  @media (max-width: 768px) {
    .hero-container {
      flex-direction: column;
      text-align: center;
    }


    .hero-text h1 {
      font-size: 2rem;
    }

    .hero-text p {
      font-size: 1rem;
    }

    .hero-img img {
      max-width: 300px;
      transform: none;
    }

    .social-links {
      justify-content: center;
    }
  }

/*     hero end    */

.about {
  padding: 80px 20px;
   /* Light neutral background */
  color: #333;
}

.about__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease-in-out forwards;
}

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

.about__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  color: #3e389a;
  text-transform: uppercase;
}

.about__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #444;
}

/* Animation */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about {
    padding: 60px 15px;
  }

  .about__title {
    font-size: 2rem;
    text-align: center;
  }

  .about__text {
    font-size: 1rem;
    text-align: center;
  }
}


.tokenomics {
  padding: 80px 20px;
  
}

.tokenomics__container {
  max-width: 1100px;
  margin: 0 auto;
}

.tokenomics__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  padding: 40px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease;
}

.tokenomics__inner:hover {
  transform: scale(1.01);
}

.tokenomics__title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #3e389a;
  text-transform: uppercase;
}

.tokenomics__row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.tokenomics__item {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 20px 30px;
  min-width: 150px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-size: 1.1rem;
  font-weight: 500;
  color: #333;
}

.tokenomics__item span {
  display: block;
  font-size: 0.95rem;
  color: #777;
  margin-bottom: 5px;
}

.tokenomics__contract {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.contract__contract {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 10px 15px;
  font-family: monospace;
  word-break: break-all;
  flex: 1;
}

.contract__btn {
  background: #3e389a;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.contract__btn:hover {
  background: #3e389a;
}

.tokenomics__illustration {
  max-width: 300px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .tokenomics__inner {
    flex-direction: column;
    align-items: center;
    padding: 30px;
  }

  .tokenomics__row {
    justify-content: center;
  }

  .tokenomics__title {
    text-align: center;
  }

  .tokenomics__illustration {
    max-width: 100%;
  }

  .contract__contract {
    width: 100%;
  }

  .contract__btn {
    width: 100%;
  }
}

.buy {
  padding: 80px 20px;
  
}

.buy__container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.buy__title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #3e389a;
  text-transform: uppercase;
}

.buy__items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.buy__item {
  position: relative;
  padding: 30px 20px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.buy__number {
  position: absolute;
  top: -25px;
  left: 20px;
  width: 50px;
  height: 50px;
  background: #3e389a;
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: float 2s infinite ease-in-out;
}

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

.buy__text {
  font-size: 1rem;
  color: #333;
  text-align: left;
  margin-top: 30px;
  line-height: 1.6;
}

.buy__text a {
  color: #3e389a;
  font-weight: bold;
  text-decoration: underline;
}

@media (max-width: 500px) {
  .buy__number {
    left: 15px;
    top: -20px;
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .buy__text {
    font-size: 0.95rem;
  }
}

.footer {
  padding: 40px 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  color: #fff;
  
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.footer__disclaimer {
  max-width: 250px;
  font-size: 14px;
  text-align: left;
  color:#3e389a;
}

.footer__disclaimer a {
  color: #3e389a;
  text-decoration: none;
}

.footer__socials {
  display: flex;
  gap: 20px;
 
}

.footer__social-btn img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.footer__social-btn:hover img {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.footer__btn {
  background: linear-gradient(145deg, #3e389a, #0000ff);
  padding: 18px 30px;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  

  /* 👇 Add spacing between socials and button */

}


.footer__btn:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 32px rgba(255, 181, 128, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer__disclaimer {
    text-align: center;
  }
}
