/* ============================================
   مودال‌های شیشه‌ای
   ============================================ */

.modal-glass .modal-content {
    background: linear-gradient(145deg, #15122b, #0d0a18);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
}

.modal-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(253, 86, 49, 0.15), rgba(93, 60, 242, 0.15));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fd5631;
}

.btn-close-modal {
    background: none;
    border: none;
    color: #9691a4;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-close-modal:hover {
    color: #fd5631;
}

/* ---- مودال درخواست همکاری ---- */
.modal-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-option-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.modal-option-card:hover {
    background: rgba(253, 86, 49, 0.08);
    border-color: rgba(253, 86, 49, 0.3);
    transform: translateX(-5px);
}

.modal-option-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(253, 86, 49, 0.2), rgba(93, 60, 242, 0.2));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fd5631;
}

.modal-option-title {
    flex: 1;
    font-weight: 600;
    color: #fff;
    font-size: 0.9rem;
}

.modal-option-desc {
    font-size: 0.7rem;
    color: #9691a4;
}

.modal-option-arrow {
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-option-card:hover .modal-option-arrow {
    opacity: 1;
    transform: translateX(-5px);
}

/* ---- مودال اشتراک‌گذاری ---- */
.share-url-container {
    display: flex;
    gap: 0.5rem;
}

.share-url-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: #fff;
    font-size: 0.7rem;
}

.share-copy-btn {
    background: rgba(253, 86, 49, 0.2);
    border: 1px solid rgba(253, 86, 49, 0.3);
    border-radius: 0.75rem;
    padding: 0.5rem 0.75rem;
    color: #fd5631;
    transition: all 0.3s ease;
}

.share-copy-btn:hover {
    background: #fd5631;
    color: #fff;
}

/* ---- مودال ثبت نظر (ستاره‌ها) ---- */
.star-rating-input i {
    cursor: pointer;
    font-size: 1.5rem;
    color: #ddd;
    transition: color 0.2s ease;
}

.star-rating-input i.active {
    color: #fdbc31 !important;
}