.insider-banner {
  background: #f5c542;
  width: 100%;
  color: #111;
  padding: 30px;
  font-family: 'Poppins', sans-serif;
}

.insider-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.insider-content h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 800;
}

.insider-content h4 {
  margin-top: 20px;
  font-size: 1.4rem;
  font-weight: bold;
}

.insider-content p {
  font-size: 1.05rem;
  max-width: 600px;
  margin-top: 10px;
  line-height: 1.6;
}

.social-icons {
  display: flex;
}

.social-icons li {
  margin-top: 8px;
  margin-right: 28px;
  background: #000;
  background: rgb(0, 0, 0, 0.8);
  width: 35px;
  height: 35px;
  padding: 10px;
  border-radius: 5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.social-icons i {
  font-size: 1.1rem;
  color: #f5c542;
}

.social-icons i:hover {
  font-size: 1.1rem;
  color: #fff;
}



.xverse-footer {
    background: #0d0d0d;
    color: #ccc;
    padding: 60px 30px 30px;
    font-family: 'Poppins', sans-serif;
  }
  
  .xverse-footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-brand {
    flex: 1 1 220px;
  }
  
  .footer-brand h2 {
    color: #f5c542;
    font-weight: 400;
    font-size: 1.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
  }
  
  .footer-tagline {
    font-family: 'Orbitron', sans-serif;
    color: #aaa;
    margin-bottom: 18px;
  }
  
  .footer-socials a {
    color: #f5c542;
    margin-right: 14px;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  .footer-socials a:hover {
    color: #fff;
  }
  
  .footer-links {
    display: flex;
    flex: 3 1 600px;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .footer-links h4 {
    color: #f5c542;
    margin-bottom: 12px;
    font-weight: 400;
  }
  
  .footer-links a {
    display: block;
    color: #bfbfbf;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  
  .footer-links a:hover {
    color: #fff;
  }

  .footer-payments {
    flex-basis: 100%;
    margin-top: 10px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  
  .footer-payments h4 {
    color: #f5c542;
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 1rem;
  }
  
  .payment-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  
  .payment-icons img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }
  
  .payment-icons img:hover {
    opacity: 1;
  }
  
  .footer-divider-wrap {
    position: relative;
    width: 100%;
    text-align: center;
    margin: 30px 0;
  }
  
  .footer-divider {
    border: none;
    border-top: 1px solid #222;
    width: 90%;
    margin: 0 auto;
  }
  
  .footer-divider-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0d0d0d; /* matches footer background to "cut" the line */
    padding: 0 10px;
    height: 42px; /* adjust as needed */
    z-index: 1;
  }
  
  .xverse-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 30px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-copy, .footer-credits {
    color: #aaa;
  }
  
  .gold {
    color: #f5c542;
    font-weight: 600;
  }
  
  .heart {
    color: red;
  }
  
  @media (max-width: 768px) {
    .xverse-footer {
      padding: 60px 30px 100px;
    }

    .xverse-footer-container, .insider-content {
      flex-direction: column;
      align-items: flex-start;
      gap: 30px;
    }
  
    .footer-links {
      flex-direction: column;
      gap: 24px;
    }
  
    .footer-links h4 {
      font-size: 1.1rem;
    }
  
    .footer-links a {
      font-size: 0.95rem;
    }
  
    .xverse-footer-bottom {
      flex-direction: column;
      text-align: center;
      padding: 0 15px;
    }
  
    .footer-copy, .footer-credits {
      width: 100%;
    }
  
    .footer-brand {
      text-align: center;
      width: 100%;
    }
  
    .footer-socials {
      text-align: center;
      margin-top: 10px;
      margin-left: 14px;
    }

    .footer-payments {
      text-align: center;
      margin-top: 16px;
    }
    
    .payment-icons {
      justify-content: center;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 12px;
    }
    
    .payment-icons img {
      width: 32px;
      height: 32px;
    }
  }
