/* ==========================================================================
   BUY BITCOIN PAGE STYLES
   ========================================================================== */

/* Bitcoin Hero Section */
.bitcoin-hero {
  position: relative;
  background-image: url('../images/bitcoin-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 566px;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* border-bottom: 1px solid var(--border-color); */
}

.bitcoin-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.2); */
  z-index: 1;
}

.bitcoin-hero::after {
  content: '';
  position: absolute;
  top: 20%;
  right: -250px;
  width: 600px;
  height: 600px;
  background-color: #D40E37;
  opacity: 0.28;
  filter: blur(110px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.bitcoin-hero .container {
  position: relative;
  z-index: 2;
}

.bitcoin-hero-content {
  max-width: 600px;
  text-align: left;
}

.bitcoin-hero-title {
  font-family: var(--font-heading);
  font-size: 4.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -1px;
}

.bitcoin-hero-title .red-text {
  color: #FF154B;
  display: inline-block;
  font-weight: 700;
}

/* Buy Bitcoin Content Section */
.bitcoin-section {
  padding: 100px 0;
  background-color: #000000;
  position: relative;
  overflow: hidden;
}

.bitcoin-section-container {
  /* max-width: 1050px; */
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header Row: Title & Action */
.bitcoin-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  gap: 20px;
}

.bitcoin-title {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.bitcoin-title .red-text {
  color: #FF154B;
}

.bitcoin-btn-deposit {
  background: linear-gradient(135deg, var(--accent-orange), #B00927);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all var(--transition-normal);
  font-family: var(--font-body);
  white-space: nowrap;
}

.bitcoin-btn-deposit:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--accent-orange-glow);
}

/* Video Wrapper */
/* .bitcoin-video-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  cursor: pointer;
  aspect-ratio: 16 / 9;
} */

.bitcoin-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bitcoin-video-container:hover .bitcoin-video-img {
  transform: scale(1.02);
}

/* Play Button Overlay */
/* .bitcoin-play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  border: 3px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  z-index: 3;
} */

/* Play Icon Triangle */
/* .bitcoin-play-overlay::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 6px;
  transition: border-color 0.3s ease;
} */

/* Hover effects for video container */
/* .bitcoin-video-container:hover .bitcoin-play-overlay {
  background-color: rgba(255, 21, 75, 0.8);
  border-color: #FF154B;
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 30px rgba(255, 21, 75, 0.5);
} */

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 992px) {
  .bitcoin-hero-title {
    font-size: 3.2rem;
  }

  .bitcoin-section {
    padding: 60px 0;
  }

  .bitcoin-title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .bitcoin-hero {
    height: 320px;
  }

  .bitcoin-hero-title {
    font-size: 2.5rem;
  }

  .bitcoin-header-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    margin-bottom: 25px;
  }

  .bitcoin-title {
    font-size: 28px;
  }

  .bitcoin-btn-deposit {
    width: 100%;
  }

  .bitcoin-play-overlay {
    width: 70px;
    height: 70px;
    border-width: 2px;
  }

  .bitcoin-play-overlay::after {
    border-width: 10px 0 10px 18px;
    margin-left: 4px;
  }
}