.crypto-haven-section {
  background-color: #0f1021;
  /* background: linear-gradient(135deg, #0f1021 0%, #0f1021 100%); */
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.purpose-badge {
  background: linear-gradient(45deg, #2ec4b6, #239b92);
  color: var(--color-primary-black);
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
  padding: 0.5rem 0.5rem;
  border-radius: 3px;
  font-size: 1.5rem;
  font-weight: 500;
}

.main-title {
  color: #ffffff;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 2rem 0;
}

.description-text {
  padding-right: 4rem;
  color: #a0aec0;
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 3rem;
  max-width: 600px;
}

.btn-custom {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  transition: all 0.3s ease;
  margin-right: 1rem;
  margin-bottom: 1rem;
}

.btn-primary-custom {
  background: linear-gradient(45deg, #2ec4b6, #239b92);
  color: white;
  box-shadow: 0 4px 15px rgba(46, 196, 182, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 196, 182, 0.4);
  color: white;
}

.btn-secondary-custom {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

.commission-container {
  border: 2px solid var(--color-accent-teal);
  border-radius: 11px;
}

.commission-card {
  display: flex;
  align-items: center;
  justify-content: space-around;

  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.commission-percentage {
  font-size: 6rem;
  font-weight: 800;
  color: #2d3748;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.commission-type {
  color: #4a5568;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.promoter-commission {
  font-size: 6rem;
  font-weight: 800;
  color: #2d3748;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.promoter-type {
  color: #4a5568;
  font-weight: 600;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.action-buttons .help-center {
  font-size: 1.3rem;
  text-align: center;
}

.decorative-shapes {
  position: absolute;
  top: 18%;
  right: 5%;
  width: 100px;
  height: 100px;
  z-index: 9999;
}

.decorative-shapes::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background: #2ec4b6;
  border-radius: 50%;
  top: 0;
  right: 0;
}

.decorative-shapes::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: #239b92;
  border-radius: 15px;
  bottom: 0;
  left: 0;
  animation: pulse 4s ease-in-out infinite 2s;
}

/* DISCOVER  */

.page-title {
  margin-bottom: 6rem;
}

.discover-logo {
  font-size: 7rem;
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.discover {
  background-color: var(--color-surface);
  color: var(--color-accent-teal-dark);
  padding-bottom: 9.6rem;
}

.discover h1 {
  color: var(--color-primary);
  margin-bottom: 2rem;
}

.discover .rounded-circle {
  font-size: 2rem;
}

.discover p {
  font-size: 1.3rem;
  padding-right: 4.8rem;
  color: var(--color-primary);
}

.discover h5 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }

  .btn-custom {
    width: 100%;
    margin-right: 0;
  }

  .decorative-shapes {
    display: none;
  }

  .commission-container {
    margin-top: 6rem;
  }
}
