  
:root{
    --g-dark:   #064e3b;
    --g-mid:    #059669;
    --g-light:  #10b981;
    --g-pale:   #d1fae5;
    --g-ghost:  #f0fdf4;
    --amber:    #f59e0b;
    --surface:  #f3faf5;
    --card:     #ffffff;
    --txt:      #0f172a;
    --muted:    #6b7280;
    --border:   rgba(5,150,105,.12);
    --r-lg:     20px;
    --r-md:     14px;
    --r-sm:     10px;
    --sh-sm:    0 2px 8px rgba(6,78,59,.06);
    --sh-md:    0 8px 28px rgba(6,78,59,.10);
    --sh-lg:    0 20px 56px rgba(6,78,59,.18);
}

/* ── PAGE HEADER ─────────────────────── */
.ref-pg-header{ margin-bottom:32px; }
.ref-pg-header h1{
    font-size:30px; font-weight:800;
    color:var(--g-dark); margin:0 0 4px;
}
.ref-pg-header p{ color:var(--muted); margin:0; font-size:14.5px; }

/* ── HERO CARD ───────────────────────── */
.ref-hero-card{
    background:linear-gradient(135deg,var(--g-dark) 0%,#065f46 55%,var(--g-mid) 100%);
    border-radius:var(--r-lg);
    padding:32px;
    color:#fff;
    position:relative;
    overflow:hidden;
    box-shadow:var(--sh-lg);
    height:100%;
    box-sizing:border-box;
}
.ref-hero-card::before{
    content:'';
    position:absolute;
    width:280px; height:280px;
    border-radius:50%;
    background:rgba(255,255,255,.07);
    top:-90px; right:-70px;
    pointer-events:none;
}
.ref-hero-card::after{
    content:'';
    position:absolute;
    width:160px; height:160px;
    border-radius:50%;
    background:rgba(52,211,153,.15);
    bottom:-55px; left:-30px;
    pointer-events:none;
}

.ref-hero-card .hero-label{
    font-size:11px; font-weight:600;
    letter-spacing:1.6px; text-transform:uppercase;
    opacity:.7; margin-bottom:8px;
}
.ref-hero-card .hero-title{
    font-size:22px; font-weight:800;
    margin:0 0 8px; position:relative; z-index:1;
}
.ref-hero-card .hero-sub{
    font-size:13.5px; line-height:1.65;
    opacity:.85; margin-bottom:24px;
    position:relative; z-index:1;
}

.ref-code-box{
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    border:1.5px solid rgba(255,255,255,.22);
    border-radius:var(--r-md);
    padding:14px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:relative; z-index:1;
}
.ref-code{
    font-size:26px; font-weight:800;
    letter-spacing:4px; color:#fff;
}
.copy-btn{
    background:var(--amber);
    color:#fff; border:0;
    padding:10px 22px;
    border-radius:var(--r-sm);
    
    font-weight:600; font-size:13px;
    cursor:pointer;
    display:inline-flex; align-items:center; gap:6px;
    transition:transform .15s, box-shadow .15s;
    white-space:nowrap;
}
.copy-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 6px 18px rgba(245,158,11,.45);
}
.copy-btn:active{ transform:translateY(0); }

.hero-pill{
    display:inline-flex; align-items:center; gap:6px;
    background:rgba(16,185,129,.2);
    border:1px solid rgba(16,185,129,.38);
    border-radius:30px;
    padding:5px 14px;
    font-size:12px; font-weight:600;
    color:#6effd6;
    margin-top:18px;
    position:relative; z-index:1;
}

/* ── STAT GRID ───────────────────────── */
.ref-stats-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
}
.ref-stat{
    background:var(--card);
    border-radius:var(--r-md);
    padding:20px 18px;
    box-shadow:var(--sh-sm);
    border:1px solid var(--border);
    position:relative; overflow:hidden;
    transition:transform .2s, box-shadow .2s;
}
.ref-stat:hover{ transform:translateY(-3px); box-shadow:var(--sh-md); }
.ref-stat::before{
    content:'';
    position:absolute;
    left:0; top:18%; bottom:18%;
    width:3px; border-radius:3px;
    background:var(--g-light);
}
.stat-icon{
    width:38px; height:38px; border-radius:10px;
    display:flex; align-items:center; justify-content:center;
    font-size:18px; margin-bottom:10px;
}
.si-a{ background:#d1fae5; }
.si-b{ background:#ccfbf1; }
.si-c{ background:#ecfdf5; }
.si-d{ background:#fef3c7; }

.ref-stat h3{
    
    font-size:28px; font-weight:800;
    color:var(--g-dark); margin:0 0 2px; line-height:1;
}
.ref-stat small{ font-size:12px; color:var(--muted); font-weight:500; }

/* ── PROGRESS CARD ───────────────────── */
.progress-card{
    background:var(--card);
    border-radius:var(--r-md);
    padding:18px 20px;
    box-shadow:var(--sh-sm);
    border:1px solid var(--border);
    margin-top:14px;
}
.prog-head{
    display:flex; justify-content:space-between; align-items:center;
    font-size:13px; font-weight:600; color:var(--txt); margin-bottom:10px;
}
.prog-head em{ font-style:normal; color:var(--g-mid); font-weight:700; }
.prog-track{
    background:#e5e7eb; border-radius:99px; height:8px; overflow:hidden;
}
.prog-fill{
    height:100%; border-radius:99px;
    background:linear-gradient(90deg,var(--g-mid),#34d399);
    transition:width .9s cubic-bezier(.25,.46,.45,.94);
}
.prog-note{ font-size:11.5px; color:var(--muted); margin-top:6px; }

/* ── TABLE CARD ──────────────────────── */
.ref-table-card{
    background:var(--card);
    border-radius:var(--r-lg);
    box-shadow:var(--sh-md);
    overflow:hidden;
    border:1px solid var(--border);
}
.table-card-header{
    padding:22px 26px 18px;
    display:flex; align-items:center; justify-content:space-between;
    border-bottom:1px solid #f1f5f9;
}
.table-card-header h4{
    
    font-size:18px; font-weight:800;
    color:var(--g-dark); margin:0;
}
.total-badge{
    background:var(--g-pale); color:var(--g-dark);
    border-radius:20px; padding:4px 12px;
    font-size:12px; font-weight:700;
}

.ref-table-card table{ width:100%; border-collapse:collapse; }
.ref-table-card thead th{
    padding:13px 16px;
    font-size:10.5px; font-weight:700;
    letter-spacing:1px; text-transform:uppercase;
    color:var(--muted);
    background:#f8fffe;
    border-bottom:1px solid #e5e7eb;
    white-space:nowrap;
}
.ref-table-card tbody tr{ border-bottom:1px solid #f1f5f9; transition:background .15s; }
.ref-table-card tbody tr:last-child{ border-bottom:none; }
.ref-table-card tbody tr:hover{ background:#f9fefe; }
.ref-table-card tbody td{ padding:15px 16px; font-size:13.5px; color:var(--txt); vertical-align:middle; }

.user-cell{ display:flex; align-items:center; gap:11px; }
.user-avatar{
    width:38px; height:38px; border-radius:50%;
    background:linear-gradient(135deg,var(--g-mid),#34d399);
    color:#fff; 
    font-size:14px; font-weight:700;
    display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.user-info strong{ font-size:13.5px; font-weight:600; display:block; line-height:1.3; }
.user-info small{ color:var(--muted); font-size:11.5px; }

.amt-chip{
    display:inline-block;
    background:var(--g-ghost); color:#065f46;
    border:1px solid #a7f3d0;
    border-radius:8px; padding:4px 10px;
    font-size:13px; font-weight:600;
}

.status-badge{
    padding:5px 12px; border-radius:20px;
    font-size:11px; font-weight:700; letter-spacing:.3px;
    display:inline-flex; align-items:center; gap:5px; white-space:nowrap;
}
.status-badge::before{ content:''; width:6px; height:6px; border-radius:50%; }
.status-pending  { background:#fef9c3; color:#92400e; }
.status-pending::before  { background:#f59e0b; }
.status-success  { background:#dcfce7; color:#166534; }
.status-success::before  { background:#22c55e; }
.status-rewarded { background:#d1fae5; color:#065f46; }
.status-rewarded::before { background:#10b981; }
.status-cancel   { background:#fee2e2; color:#991b1b; }
.status-cancel::before   { background:#ef4444; }

.reward-val{ font-weight:700; color:var(--g-dark); }
.date-val  { font-size:12.5px; color:var(--muted); }

/* empty state */
.empty-state{ text-align:center; padding:60px 20px; }
.empty-state .empty-ico{ font-size:52px; margin-bottom:16px; }
.empty-state h5{
     font-size:18px; font-weight:700;
    color:var(--g-dark); margin-bottom:6px;
}
.empty-state p{ color:var(--muted); font-size:14px; margin:0; }

/* toast */
.copy-toast{
    position:fixed; bottom:28px; left:50%; transform:translateX(-50%) translateY(80px);
    background:var(--g-dark); color:#fff;
    padding:12px 24px; border-radius:50px;
    font-size:14px; font-weight:600;
    box-shadow:0 8px 24px rgba(6,78,59,.35);
    z-index:9999; display:flex; align-items:center; gap:8px;
    opacity:0; transition:transform .3s cubic-bezier(.34,1.56,.64,1), opacity .3s;
    pointer-events:none;
}
.copy-toast.show{ opacity:1; transform:translateX(-50%) translateY(0); }

@media(max-width:768px){
    .ref-hero-card{ margin-bottom:20px; }
    .ref-pg-header h1{ font-size:24px; }
    .ref-code{ font-size:20px; letter-spacing:2px; }
}


    #telads {
        text-decoration: none;
    }

    .heroSection {
        background-color: #effff8;
    }

    .badge-custom {
      background: #e9f7ef;
      color: #198754;
      font-weight: 500;
    }
    .hero-title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #0f172a;
    }
    .hero-text {
      color: #64748b;
      font-size: 1rem;
    }
    .trusted img {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      border: 2px solid #fff;
      margin-left: -10px;
    }
    .trusted img:first-child {
      margin-left: 0;
    }
    .illustration-box {
      background: #ffffff;
      border-radius: 20px;
      padding: 20px;
    }

    .refer-works .btn {
      transition: transform 0.2s ease;
      font-size: 14px;
    }

    .steps-badge {
      width: 25px;
      height: 25px;
      font-size: 14px;
      right: 20px;
      top: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
    }

    .uniqe_coupon {
        background: #e9f7ef;
        color: #198754;
        font-weight: 500;
        padding: 10px 20px;
        border-radius: 15px 0 0 15px;
        position: relative;
        left: 10px;
    }

    .conditions-list li{
        margin-bottom: 1rem;
    }

   
  /* Section background */
  .faq-green {
    background: #f5fbf7; /* very light green */
  }

  /* Accordion items */
  .faq-green .accordion-item {
    background: transparent;
    border-color: #e3f3ea;
  }

  /* Question text */
  .faq-green .accordion-button {
    background: transparent;
    color: #0f172a;
    padding: 1.25rem 0;
  }

  /* Remove default focus */
  .faq-green .accordion-button:focus {
    box-shadow: none;
  }

  /* Active state */
  .faq-green .accordion-button:not(.collapsed) {
    color: #198754;
    background: transparent;
  }

  /* Arrow color */
  .faq-green .accordion-button::after {
    filter: hue-rotate(90deg);
    opacity: 0.7;
  }

  /* Answer text */
  .faq-green .accordion-body {
    color: #64748b;
    padding: 0 0 1.25rem 0;
  }


  
/* ===== SNACKBAR ===== */
.snackbar {
    visibility: hidden;
    min-width: 250px;
    background: linear-gradient(135deg, #1da850, #28a745);
    color: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 14px 28px;
    position: fixed;
    z-index: 9999;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 32px rgba(40,167,69,0.35);
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
    letter-spacing: 0.3px;
}

#how-it-works h5 span {
    background: #26a848;
    color: #fff;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
}

section.searchBoxExam {
    background: #ecfbf2;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 1px 2px #dadada;
}

.snackbar.show {
    visibility: visible;
}

.afterLoginSearch {
  display:none !important;
}

@keyframes fadein {
    from { bottom: 0; opacity: 0; }
    to   { bottom: 30px; opacity: 1; }
}
@keyframes fadeout {
    from { bottom: 30px; opacity: 1; }
    to   { bottom: 0; opacity: 0; }
}

/* ===== HERO SECTION ===== */
.heroSection {
    background: linear-gradient(135deg, #eafaf0 0%, #f0fdf4 50%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.heroSection::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,167,69,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.heroSection::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(40,167,69,0.06) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
    pointer-events: none;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a2e1f;
    line-height: 1.3;
}

.hero-title b {
    color: #1da850;
}

.hero-text {
    font-size: 1.05rem;
    color: #4a6157;
    line-height: 1.7;
}

.badge-custom {
    background: transparent;
    color: #155724;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.refer-works .btn-success {
    background: linear-gradient(135deg, #1da850, #28a745);
    border: none;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 6px 20px rgba(29,168,80,0.35);
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.refer-works .btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(29,168,80,0.45);
    background: linear-gradient(135deg, #19963f, #1da850);
}

.refer-works .btn-outline-secondary {
    font-weight: 600;
    border-color: #adb5bd;
    color: #495057;
    transition: all 0.3s ease;
}

.refer-works .btn-outline-secondary:hover {
    background: #495057;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== REFERRAL CODE BOX ===== */
#start-referring-now {
    margin: 0 auto;
    max-width: 720px;
    border-radius: 24px !important;
    position: relative;
    z-index: 10;
    background: linear-gradient(145deg, #ffffff, #f8fff9) !important;
    border: 2px solid #e2f5e8 !important;
    box-shadow: 0 20px 60px rgba(29,168,80,0.12) !important;
    padding: 2.5rem !important;
}

#start-referring-now h2 {
    
    font-weight: 800;
    color: #1a2e1f;
    font-size: 1.6rem;
}

.uniqe_coupon {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border: 2px dashed #4ade80;
    color: #166534;
    font-family: 'Courier New', monospace;
    font-size: 1.35rem;
    font-weight: 800;
    padding: 8px 28px;
    border-radius: 5px;
    letter-spacing: 3px;
    min-width: 200px;
    justify-content: center;
    transition: all 0.3s ease;
}

.uniqe_coupon:hover {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    transform: scale(1.02);
}

#copyReferralBtn {
    font-weight: 700;
    background: linear-gradient(135deg, #1da850, #28a745);
    border: none;
    padding: 12px 28px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(29,168,80,0.3);
    transition: all 0.3s ease;
    align-self: center;
    margin-left: 14px;
}

#copyReferralBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29,168,80,0.4);
    background: linear-gradient(135deg, #19963f, #1da850);
}

/* ===== SOCIAL SHARE BUTTONS ===== */
.social-share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e8f5e9;
}

.social-btn {
    width: 35px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-btn:hover {
    transform: translateY(-5px) scale(1.12);
    box-shadow: 0 12px 28px rgba(0,0,0,0.22);
}

.whatsapp-btn  { background: linear-gradient(135deg, #25D366, #20BA5A); }
.whatsapp-btn:hover  { background: linear-gradient(135deg, #20BA5A, #1aab4f); }

.facebook-btn  { background: linear-gradient(135deg, #1877F2, #0A66C2); }
.facebook-btn:hover  { background: linear-gradient(135deg, #0A66C2, #085aad); }

.twitter-btn   { background: linear-gradient(135deg, #1DA1F2, #1a8cd8); }
.twitter-btn:hover   { background: linear-gradient(135deg, #1a8cd8, #177bbf); }

.linkedin-btn  { background: linear-gradient(135deg, #0077B5, #005A9E); }
.linkedin-btn:hover  { background: linear-gradient(135deg, #005A9E, #004f8c); }

.email-btn     { background: linear-gradient(135deg, #EA4335, #c5221f); }
.email-btn:hover     { background: linear-gradient(135deg, #c5221f, #b01e1b); }

.telegram-btn  { background: linear-gradient(135deg, #0088cc, #0077b5); }
.telegram-btn:hover  { background: linear-gradient(135deg, #0077b5, #006699); }

/* ===== GOLDEN 10% SECTION ===== */
.py-5.bg-light {
    background: linear-gradient(180deg, #f8fffe 0%, #edfbf2 100%) !important;
}

.py-5.bg-light .container > h2,
#how-it-works .text-center.mb-5 h2 {
    
    font-weight: 800;
    color: #1a2e1f;
}

.py-5.bg-light .p-4.bg-white {
    border-radius: 20px !important;
    border: 1.5px solid #e2f5e8;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.py-5.bg-light .p-4.bg-white::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1da850, #4ade80);
    border-radius: 20px 20px 0 0;
}

.py-5.bg-light .p-4.bg-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(29,168,80,0.15) !important;
    border-color: #a3d9b1;
}

.py-5.bg-light h5.fw-semibold {
    color: #155724;
    font-size: 1.05rem;
    margin-top: 8px;
}

/* ===== REWARD STACK ===== */
.p-4.rounded-4.shadow-sm.h-100.text-center.bg-white {
    border: 1.5px solid #e9ecef;
    transition: all 0.35s ease;
    border-radius: 20px !important;
    position: relative;
    overflow: hidden;
}

.p-4.rounded-4.shadow-sm.h-100.text-center.bg-white::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1da850, #4ade80);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.p-4.rounded-4.shadow-sm.h-100.text-center.bg-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(29,168,80,0.12) !important;
    border-color: #c3e6cb;
}

.p-4.rounded-4.shadow-sm.h-100.text-center.bg-white:hover::after {
    opacity: 1;
}

.p-4.rounded-4.shadow-sm.h-100.text-center.bg-white h4 {
    
    font-weight: 800;
    color: #1da850;
    font-size: 1.5rem;
}

/* Elite 7 Challenge banner */
.bg-success.text-white.d-inline-block {
    background: linear-gradient(135deg, #1da850, #28a745, #0f7a38) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 35px rgba(29,168,80,0.4) !important;
    padding: 28px 48px !important;
    position: relative;
    overflow: hidden;
}

.bg-success.text-white.d-inline-block::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 140px; height: 140px;
    border-radius: 50%;
    background: rgba(255,255,255,0.07);
    pointer-events: none;
}

.bg-success.text-white.d-inline-block h4 {
    
    font-weight: 800;
    font-size: 1.4rem;
}

/* ===== HOW IT WORKS ===== */
#how-it-works {
    background: linear-gradient(180deg, #edfbf2 0%, #f8fffe 100%) !important;
}

#how-it-works .p-4.bg-white {
    border-radius: 20px !important;
    border: 1.5px solid #e2f5e8;
    transition: all 0.35s ease;
}

#how-it-works .p-4.bg-white:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(29,168,80,0.15) !important;
    border-color: #a3d9b1;
}

#how-it-works h5 {
    
    font-weight: 700;
    color: #155724;
    font-size: 1.1rem;
}

/* ===== TERMS SECTION ===== */
.conditions-list {
    padding-left: 1.4rem;
}

.conditions-list li {
    margin-bottom: 12px;
    color: #4a6157;
    line-height: 1.75;
    padding-left: 4px;
}

.conditions-list li::marker {
    color: #1da850;
    font-weight: 700;
}

.conditions-list a {
    color: #1da850;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed #1da850;
    transition: all 0.2s;
}

.conditions-list a:hover {
    color: #155724;
    border-bottom-style: solid;
}

.conditions-list b {
    color: #155724;
}

/* ===== FAQ SECTION ===== */
.faq-green {
    background: linear-gradient(135deg, #f0fdf4 0%, #e8f5e9 100%);
}

.faq-green h2 {
    
    font-weight: 800;
    color: #1a2e1f;
    font-size: 1.8rem;
}

.faq-green .hero-text {
    color: #4a6157;
}

.faq-green hr {
    border-color: #c3e6cb;
    opacity: 0.6;
    margin: 16px 0 24px;
}

.faq-green .accordion-item {
    border-bottom: 1px solid #d4edda !important;
    background: transparent !important;
}

.faq-green .accordion-button {
    background: transparent !important;
    color: #1a2e1f !important;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    padding: 18px 4px;
    box-shadow: none !important;
    transition: color 0.2s ease;
}

.faq-green .accordion-button:not(.collapsed) {
    color: #1da850 !important;
}

.faq-green .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231da850'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-green .accordion-body {
    color: #4a6157 !important;
    padding: 4px 4px 20px;
    line-height: 1.7;
    font-size: 0.97rem;
}

.faq-green #telads {
    background: linear-gradient(135deg, #1da850, #28a745) !important;
    color: #fff !important;
    border-radius: 50px;
    padding: 6px 18px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 12px rgba(29,168,80,0.3);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-left: 4px;
}

.faq-green #telads:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(29,168,80,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.65rem;
    }

    #start-referring-now {
        margin: 12px;
        padding: 1.5rem !important;
    }

    .uniqe_coupon {
        font-size: 1.05rem;
        letter-spacing: 2px;
        padding: 10px 18px;
    }

    .bg-success.text-white.d-inline-block {
        padding: 20px 24px !important;
    }

    .refer-works {
        flex-direction: column;
        gap: 12px !important;
    }

    .refer-works .btn {
        width: 100%;
        text-align: center;
    }
}


   /* ===============================
        Referral Locked Section
        =============================== */


        /* Lock Icon */
        .lock-icon {
            width: 80px;
            height: 80px;
            margin: auto;
            margin-bottom: 20px;
            border-radius: 50%;
            background: linear-gradient(135deg, #28a745, #fec106);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 34px;
            color: #fff;
            box-shadow: 0 10px 25px rgba(40, 167, 69, 0.35);
        }

        /* Title */
        .referral-lock-card .title {
            font-weight: 700;
            font-size: 26px;
            color: #000;
            margin-bottom: 12px;
        }

        /* Subtitle */
        .referral-lock-card .subtitle {
            font-size: 16px;
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 30px;
        }

        /* Code Box */
        .code-box {
            background: #f8f9fa;
            border: 1px dashed #ced4da;
            padding: 16px;
            border-radius: 12px;
            margin-bottom: 30px;
        }

        .referral-code {
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 3px;
            color: #adb5bd;
            user-select: none;
        }

        /* CTA Button */
        .unlock-btn {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 14px;
            font-size: 17px;
            font-weight: 600;
            color: #fff;
            text-decoration: none;
            background: linear-gradient(135deg, #28a745, #fec106);
            transition: all 0.3s ease;
            box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
        }

        .unlock-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 35px rgba(40, 167, 69, 0.45);
            color: #fff;
        }

        /* Mobile Responsive */
        @media (max-width: 576px) {
            .referral-lock-card {
                padding: 36px 20px;
            }

            .referral-lock-card .title {
                font-size: 22px;
            }

            .referral-code {
                font-size: 18px;
                letter-spacing: 2px;
            }
        }


          .how-to-section {
            background: #f8f9fb;
            border-top: 1px solid #e8eaed;
            border-bottom: 1px solid #e8eaed;
            padding: 28px 0;
            font-family: 'Segoe UI', sans-serif;
          }

          

          .section-label {
            text-align: center;
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 18px;
          }

          .steps-row {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
          }

          .step-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: #fff;
            border: 1px solid #e4e7ec;
            border-radius: 10px;
            padding: 10px 16px;
            flex: 1;
            min-height: 85px;
            min-width: 160px;
            max-width: 310px;
            transition: box-shadow 0.2s;
          }

          .step-item:hover {
            box-shadow: 0 4px 14px rgba(0,0,0,0.07);
          }

          .step-item.highlight {
            background: #fff8ec;
            border-color: #ffd166;
          }

          .step-num {
            font-size: 11px;
            font-weight: 800;
            color: #c5cad3;
            letter-spacing: 0.5px;
            flex-shrink: 0;
          }

          .step-item.highlight .step-num {
            color: #f4a922;
          }

          .step-item p {
            margin: 0;
            font-size: 13.5px;
            color: #3d4451;
            line-height: 1.4;
          }

          .step-divider {
            font-size: 14px;
            color: #cdd1da;
            flex-shrink: 0;
          }

          .myRefHistoryBtn {
            border-radius: 14px;
            font-weight: 700;
            background: linear-gradient(135deg, #1da850, #28a745);
            border: none;
            padding: 12px 28px;
            font-size: 0.95rem;
            box-shadow: 0 4px 15px rgba(29, 168, 80, 0.3);
            transition: all 0.3s ease;
            align-self: center;
            margin-left: 14px;
        }

          @media(min-width: 1200px) {
              .refer_packages_grid .col-lg-4 {
                width: 31.33333333%;
              }
          }

          @media (max-width: 640px) {
            .step-divider { display: none; }
            .step-item { max-width: 100%; }

            .refer_packages_grid .col-sm-12 {
              width: 90%;
            }

            .img-d-none{
                display: none;
            }  

          }
