/* =========================
   REFERRAL PAGE STYLES
========================= */

body {
    background: #0b0b0b;
    color: #ffffff;
}

/* Card */
.referral-card {
    background: #111;
    border: 1px solid #d4af37;
    border-radius: 14px;
}

/* Title */
.referral-card h4 {
    color: #f5d76e;
    font-weight: 600;
}

/* Radio buttons */
.referral-position label {
    font-weight: 500;
    cursor: pointer;
    color: white;
    margin-right: 15px;
}

.referral-position input[type="radio"] {
    accent-color: #d4af37;
    
}

/* Input group */
.referral-input input {
    background: #000;
    border: 1px solid #d4af37;
    color: #fff;
    font-size: 14px;
}

.referral-input input:focus {
    background: #000;
    color: #fff;
    border-color: #f5d76e;
    box-shadow: none;
}

/* Copy button */
.btn-copy {
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    border: none;
    color: #000;
    font-weight: 600;
}

.btn-copy:hover {
    opacity: 0.9;
}

/* Share buttons */
.share-buttons a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* WhatsApp */
.share-whatsapp {
    background: #25D366;
    color: #fff;
}

/* Telegram */
.share-telegram {
    background: #229ED9;
    color: #fff;
}

/* Facebook */
.share-facebook {
    background: #1877F2;
    color: #fff;
}

.share-buttons a:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .share-buttons {
        flex-direction: column;
    }

    .share-buttons a {
        justify-content: center;
        width: 100%;
    }
}
