/* Sección Bitcoin-Man personalizada */
.bitcoinman-section {
  background: linear-gradient(90deg, #050505 60%, #f7931a22 100%);
  padding: 60px 0 40px 0;
  position: relative;
  z-index: 1;
}

.bitcoinman-section .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.bitcoinman-section h2 {
  color: #f7931a;
  font-family: 'Press Start 2P', cursive;
  font-size: 2rem;
  margin-bottom: 18px;
  text-shadow: 0 0 8px #f7931a;
}

.bitcoinman-section p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
  max-width: 400px;
}

.bitcoinman-section .btn-primary {
  background: #f7931a;
  color: #fff;
  font-family: 'Press Start 2P', cursive;
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 0 12px #f7931a;
  transition: transform .2s;
  display: inline-block;
}

.bitcoinman-section .btn-primary:hover {
  transform: scale(1.05);
  background: #fff;
  color: #f7931a;
}

.bitcoinman-section .bitcoin-symbol {
  font-size: 7rem;
  color: #f7931a;
  font-family: 'Press Start 2P', cursive;
  text-shadow: 0 0 24px #f7931a, 0 0 8px #fff;
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .bitcoinman-section {
    padding-bottom: 70px !important;
  }
  .bitcoinman-section .container {
    flex-direction: column;
    gap: 24px;
  }
  .bitcoinman-section h2 {
    font-size: 1.3rem;
  }
  .bitcoinman-section .bitcoin-symbol {
    font-size: 4rem;
  }
}
