/* Removes all padding from Bulma .box when needed */
.box.no-pad {
  padding: 0 !important;
}

/* Main video container */
.video-banner {
  width: 100%;
  height: 120px; /* change this to any thin slice you want */
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

/* Make video touch the edges */
.video-banner video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}


.video-banner-main {
  width: 100%;
  height: 320px; /* change this to any thin slice you want */
  overflow: hidden;
  border-radius: 15px;
  position: relative;
}

/* Make video touch the edges */
.video-banner-main video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
}

/* Fade at the bottom */
.fade-mask {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1), rgba(0,0,0,0));
}


.token-card {
    background: rgba(25, 20, 35, 0.3);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 25px;
    color: #e6e0ff;
    box-shadow: 0 0 25px rgba(120, 80, 200, 0.25);
  }

  .section-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #caaaff;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding:5px;
  }

  .stat-tag {
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    margin-bottom: 5px;
  }


  .info-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Desktop: volver a columnas */
@media (min-width: 100%) {
  .info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
  .metric-block {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 15px;
    width:100%;
  }

  .copy-address {
    cursor: pointer;
    color: #8fb0ff;
    font-size: 0.8rem;
  }

