/* fintech-wave-video.css — Hero NFT promo panel for fintechwave.stream landing page */

.hero-video-section {
  position: absolute;
  top: 50%;
  right: 72px;
  transform: translateY(-60%);
  z-index: 3;
  width: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.video-container {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1e3050;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 32px rgba(0, 212, 232, 0.12);
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Claim NFT Button */
.claim-nft-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 0;
  background: linear-gradient(135deg, #a259ff 0%, #7c3aed 100%);
  color: #fff;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid rgba(162, 89, 255, 0.5);
  box-shadow: 0 4px 24px rgba(162, 89, 255, 0.35), 0 0 12px rgba(162, 89, 255, 0.2);
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

.claim-nft-btn:hover {
  box-shadow: 0 6px 32px rgba(162, 89, 255, 0.55), 0 0 20px rgba(162, 89, 255, 0.35);
  transform: translateY(-1px);
}
