* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #111;
  color: white;
}

.hero {
  background-image: url('ChatGPT Image Jun 27, 2025, 03_55_02 PM.png'); /* use your uploaded image */
  background-size: 100%;
  background-repeat: no repeat;
  background-position: realtive;
  height: 134vh;
}
.slogan {
  position: relative;
  top: -70px; /* move up — adjust value as needed */
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
}


.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  height:0%;
  padding-top: 9%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: 4rem;
  color: #ffcc00;
  position: relative;
  top: -50px; /* Move up */
}


.hero p {
  margin: 1rem 0;
  font-size: 2rem;
}

.telegram-icon {
  position: fixed;
  bottom: 70px;
  left: 500px;
  z-index: 1000;
}

.x-icon {
  position: fixed;
  bottom: 85px;
  right: 500px;
  z-index: 1000;
}

.x-icon img {
  width: 60px;
  height: 60px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.telegram-icon img {
 width: 100px;
  height: 100px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.dex-icon img {
  width: 70px;
  height: 70px;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.dex-icon {
  position: fixed;
  bottom: 77px;
  right: 700px;
  z-index: 1000;
}
.telegram-icon img:hover,
.x-icon img:hover {
  transform: scale(1.2);
}




.contract.bottom-center {
  position: absolute;
  bottom: -250px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 12px;
  border-radius: 6px;
  font-family: monospace;
  text-align: center;
}

.token.bottom-right {
  position: absolute;
  bottom: -220px;
  left: 1100px;
  font-size: 4rem;
  color: #00ffcc;
  font-weight: bold;
}
.floating-emojis {
  position: fixed;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  animation: float 4s infinite ease-in-out alternate;
  z-index: 1;
  pointer-events: none;
}

@keyframes float {
  from {
    transform: translate(-50%, 0);
  }
  to {
    transform: translate(-50%, -20px);
  }
}
.tokenomics {
  padding: 60px 20px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
}

.tokenomics h2 {
  font-size: 2.5rem;
  color: #ffcc00;
  margin-bottom: 40px;
}

.token-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.token-card {
  background: #222;
  border: 1px solid #444;
  border-radius: 15px;
  padding: 20px;
  transition: transform 0.3s;
}

.token-card:hover {
  transform: scale(1.05);
  border-color: #ffcc00;
}

.token-card h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}
