.action-button span {
    font-size: 13px !important;
}

.reward-button span {
    font-size: 13px !important;
}

.collect-button {
    display: flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-left: auto;
}

.collect-button:hover {
    background-color: #f8fafc;
}

.collect-button span {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    line-height: 20px;
}

.collect-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.collect-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.collect-modal {
    background-color: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 380px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.collect-modal-overlay.active .collect-modal {
    transform: scale(1);
    opacity: 1;
}

.collect-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.collect-modal-header h2 {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
}

.collect-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.collect-modal-close:hover {
    background-color: #f1f5f9;
}

.collect-modal-content {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.collect-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    border: 1px solid #bae6fd;
}

.collect-amount span {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
}

.collect-description {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
    text-align: center;
    margin: 0;
}

.collect-bonus {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background-color: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    width: 100%;
}

.collect-bonus span {
    font-size: 13px;
    font-weight: 600;
    color: #166534;
}

.collect-subscription-note {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background-color: #f8fafc;
    border-radius: 6px;
    width: 100%;
}

.collect-subscription-note span {
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
}

.collect-modal-actions {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.collect-modal-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.collect-modal-btn.primary {
    background-color: #0f172a;
    color: #ffffff;
}

.collect-modal-btn.primary:hover {
    background-color: #1e293b;
}

.collect-modal-btn.secondary {
    background-color: #f1f5f9;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.collect-modal-btn.secondary:hover {
    background-color: #e2e8f0;
}