body {
    margin: 0;
    background-color: #0d0f10;
    color: white;
    font-family: 'Poppins', sans-serif;
  }
  .heading {
      font-weight: 700;
      font-size: 3rem;
      text-align: center;
      margin-bottom: 10px;
    }

    .subheading {
      font-size: 2rem;
      font-weight: 600;
      color: #f4b400; /* Yellow from your image */
      text-align: center;
    }
    .register-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #ffcc00;
  text-decoration: underline;
  animation: fadeInUp 0.5s forwards;
  opacity: 0;
  transform: translateY(10px);
}

    .animate span {
      opacity: 0;
      display: inline-block;
      animation: fadeIn 0.5s forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
        transform: translateY(0);
      }
      from {
        opacity: 0;
        transform: translateY(10px);
      }
    }
  .logo {
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .logo img {
  height: 100px; /* Or use max-height for flexibility */
  max-width: 400px;
  object-fit: contain;
}



  .hero {
    text-align: left;
    padding: 20px;
  }
  
  .hero h1,
  .hero h2 {
    margin: 0;
    line-height: 1.2;
  }
  
  /* Text Animation */
  .text-animated span {
    display: inline-block;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.5s forwards;
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Example: You can dynamically generate these from JS instead of hardcoding */
  .text-animated span:nth-child(1) { animation-delay: 0s; }
  .text-animated span:nth-child(2) { animation-delay: 0.05s; }
  .text-animated span:nth-child(3) { animation-delay: 0.1s; }
  /* Add more via JS for better scalability */
  
  /* Crypto Prices */
  .crypto-prices {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    background: #1a1c1e;
    font-weight: bold;
  }
  
  .btc {
    color: #ff4d4d;
  }
  
  .eth {
    color: #00ff7f;
  }
  
  .sol {
    color: #dc143c;
  }
  
  /* Crypto Icons */
  .crypto-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  
  .crypto-icons img {
    height: 60px;
  }
  
  /* Bottom Navigation */
  .bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #1a1c1e;
    display: flex;
    justify-content: space-around;
    width: 90%;
    max-width: 500px;
    border-radius: 30px;
    padding: 10px 0;
    z-index: 100;
  }
  
  .bottom-nav a {
    text-align: center;
    color: white;
    text-decoration: none;
    font-size: 14px;
  }
  
  .bottom-nav a.active {
    color: gold;
  }
  
  .bottom-nav img {
    width: 30px;
    height: 30px;
    margin-bottom: 4px;
  }
  /* Mobile responsiveness */
@media (max-width: 576px) {
    .logo img {
    height: 100px;
    max-width: 400px;
    object-fit: contain;
    margin-left: 35px;
}
  .hero {
    margin-top: 100px;
    text-align: center;
    padding: 10px;
  }

  .heading {
    font-size: 44px;
    line-height: 1.5;
    word-break: break-word;
  }

  .subheading {
    margin-top: 100px;
    font-size: 26px;
    margin-top: 10px;
    word-break: break-word;
  }

  .register-link {
  margin-top: 10px;
  display: inline-block;
  font-size: 19px;
  text-decoration: none;
  text-align: center;
  color: gold;
  animation: pulse 1.5s infinite;
  transition: transform 0.3s ease;
}

.register-link:hover {
  transform: scale(1.05);
  color: #ffd700;
}

/* Keyframes for pulsing effect */
@keyframes pulse {
  0% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
  100% { opacity: 0.7; transform: scale(1); }
}

  .crypto-prices {
    margin-top: 50px;
    font-size: 14px;
    gap: 5px;
  }

  .crypto-icons {
    margin-top: 50px;
    gap: 10px;
  }

  .crypto-icons img {
    height: 40px;
  }

  .bottom-nav {
    width: 95%;
    padding: 8px 0;
  }

  .bottom-nav img {
    width: 24px;
    height: 24px;
  }

  .bottom-nav a {
    font-size: 12px;
  }
  
}
/* Tablet View */
@media (min-width: 577px) and (max-width: 991px) {
  .logo img {
    height: 80px;
    max-width: 300px;
    margin-left: 20px;
  }

  .hero {
    text-align: center;
    padding: 30px 20px;
  }

  .heading {
    font-size: 48px;
  }

  .subheading {
    font-size: 24px;
  }

  .register-link {
    font-size: 16px;
  }

  .crypto-prices {
    font-size: 16px;
    padding: 15px;
  }

  .crypto-icons img {
    height: 50px;
  }
}

/* Desktop View */
@media (min-width: 992px) and (max-width: 1199px) {
  .logo img {
    height: 90px;
    max-width: 350px;
    margin-left: 0;
  }

  .hero {
    text-align: center;
    padding: 40px;
  }

  .heading {
    font-size: 52px;
  }

  .subheading {
    font-size: 26px;
  }

  .register-link {
    font-size: 17px;
  }

  .crypto-prices {
    font-size: 18px;
    padding: 20px;
  }

  .crypto-icons img {
    height: 60px;
  }
}

/* Large Screens */
@media (min-width: 1200px) {
  .logo img {
    height: 100px;
    max-width: 400px;
    margin-left: 0;
  }

  .hero {
    text-align: center;
    padding: 50px;
  }

  .heading {
    font-size: 60px;
  }

  .subheading {
    font-size: 28px;
  }

  .register-link {
    font-size: 18px;
  }

  .crypto-prices {
    font-size: 20px;
    padding: 25px;
  }

  .crypto-icons img {
    height: 65px;
  }
}
.crypto-prices {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #111;
  padding: 20px;
  gap: 15px;
}

.crypto-prices div {
  background: #222;
  color: #f0b90b;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
}
