/* === Reset and Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #0d1117, #1e2026);
    color: #f0f0f0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }
  
  /* === Logo and Header === */
  .logo {
    width: 320px;
    max-width: 90vw;
    height: auto;
    margin-top: -55px;
    margin-bottom: 5px;
    animation: pulseLogo 6s infinite;
  }
  
  h1 {
    font-size: 2.8rem;
    text-align: center;
    background: linear-gradient(90deg, #f3ba2f, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: -55px;
    margin-bottom: 20px;
    animation: slideFadeIn 1.5s ease-out forwards;
  }
  
  p {
    font-size: 1.1rem;
    color: #a3a3a3;
    text-align: center;
    max-width: 600px;
    margin-bottom: 40px;
  }
  
  /* === Buttons === */
  .launch-btn {
    background: #f3ba2f;
    color: #111;
    padding: 15px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(243, 186, 47, 0.4);
  }
  
  .launch-btn:hover {
    background: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
  }
  
  /* === Features Section === */
  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
    color: #c5c5c5;
  }
  
  .feature {
    background: #1e2026;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
    min-width: 240px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  }
  
  /* === Network & Partner Sections === */
  .networks, .partners, .disclaimer, .testimonials {
    margin-top: 60px;
    text-align: center;
  }
  
  .networks h2, .partners h2, .testimonials h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #f3ba2f;
  }
  
  .network-logos, .partner-cards, .testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    align-items: center;
  }
  
  .network-logos img,
  .partner-card img {
    height: 50px;
    transition: transform 0.3s ease;
  }
  
  .network-logos img:hover,
  .partner-card img:hover {
    transform: scale(1.1);
  }
  
  .partner-card, .testimonial-card {
    background: #1a1d23;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    text-align: center;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
    transition: 0.3s ease;
  }
  
  .partner-card:hover, .testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(243, 186, 47, 0.3);
  }
  
  /* === Testimonials === */
  .testimonial-card img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-bottom: 10px;
  }
  
  .testimonial-card p {
    font-size: 0.95rem;
    color: #ccc;
    margin: 10px 0;
  }
  
  .testimonial-card strong {
    color: #f0b90b;
  }
  
  /* === Disclaimer === */
  .disclaimer {
    max-width: 800px;
    font-size: 0.9rem;
    color: #888;
    background: #1a1a1a;
    border: 1px solid #333;
    padding: 20px;
    border-radius: 12px;
  }
  
  /* === Floating Icons === */
  .button-floating-icons {
    position: relative;
    width: 100%;
    height: 0;
    margin-left: -800px;
    opacity: 0.5;
  }
  
  .button-icon {
    position: absolute;
    width: 90px;
    height: 90px;
    opacity: 0.9;
    animation: floatButtonIcon 4s ease-in-out infinite;
    z-index: 1;
  }
  
  .button-icon.bnb {
    left: calc(50% - 120px);
    top: -55px;
  }
  
  .button-icon.eth {
    left: calc(120% - 150px);
    top: -175px;
  }
  
  .button-icon.base {
    left: calc(120% - 70px);
    margin-right: 300px;
    top: -125px;
  }
  
  .button-icon.matic {
    left: calc(50% - 20px);
    top: -45px;
  }
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 20px 0 10px;
  }
  
  .social-icons a {
    color: #9ca3af;
    font-size: 20px;
    transition: color 0.3s ease;
  }
  
  .social-icons a:hover {
    color: #374151;
  }
  
  .footer-note {
    color: #9ca3af;
    font-size: 13px;
    padding: 0 24px 16px;
  }
  
  .footer-note.center {
    text-align: center;
  }
  
  /* === Animations === */
  @keyframes pulseLogo {
    0%, 100% {
      transform: scale(1);
      filter: drop-shadow(0 0 5px #f3ba2f);
    }
    50% {
      transform: scale(1.05);
      filter: drop-shadow(0 0 15px #ffd700);
    }
  }
  
  @keyframes slideFadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes floatButtonIcon {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
  
  .animated-bg {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, #f3ba2f22, transparent 70%);
    animation: rotateBg 40s linear infinite;
    z-index: -1;
  }
  
  @keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  /* === Media Queries === */
  @media (max-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  
    .feature,
    .partner-card,
    .testimonial-card {
      min-width: 90%;
    }
  }
  
  
  
  
  
  
    