/* ============================================
   REFER-EARN.CSS - Refer & Earn Banner
   ============================================ */

.refEarnBanner {
  background: linear-gradient(135deg, #0A1931 0%, #030F3F 50%, #1a0a40 100%);
  padding: 40px 20px;
  margin: 20px 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}
.refEarnBanner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0,209,178,0.12) 0%, transparent 70%);
  top: -80px;
  right: 100px;
  border-radius: 50%;
  pointer-events: none;
}

.refEarnContent {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.refEarnLeft { flex: 1; min-width: 260px; }
.refEarnRight {
  flex-shrink: 0;
  width: 200px;
}
.refEarnRight img {
  width: 100%;
  object-fit: contain;
}

.refEarnPill {
  display: inline-block;
  background: rgba(0,209,178,0.2);
  color: #00d1b2;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(0,209,178,0.35);
  letter-spacing: 0.5px;
}
.refEarnHeadline {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.refEarnSub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}
.refEarnCtaRow { display: flex; gap: 12px; flex-wrap: wrap; }
.refEarnBtn {
  background: linear-gradient(135deg, #00d1b2, #00a896);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(0,209,178,0.35);
}
.refEarnBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,209,178,0.5);
}

@media (max-width: 767px) {
  .refEarnHeadline  { font-size: 1.4rem; }
  .refEarnRight     { display: none; }
  .refEarnBanner    { padding: 30px 16px; }
}
