/* Support Message - Inline Payment Prompt */
/* Shows after conversion success, above download button */

.support-message {
    margin: 25px 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}

.support-message-visible {
    opacity: 1;
    transform: translateY(0);
}

.support-message-content {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #86efac;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.support-message-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.support-message-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.support-message-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.support-message-body strong {
    font-size: 16px;
    font-weight: 700;
    color: #166534;
    line-height: 1.3;
}

.support-message-body span {
    font-size: 14px;
    color: #15803d;
    line-height: 1.5;
}

.support-message-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.support-message-btn {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.support-message-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.support-message-btn:hover::before {
    width: 300px;
    height: 300px;
}

.support-message-btn-icon {
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.support-message-btn span {
    position: relative;
    z-index: 1;
}

/* Buy Me a Coffee Button */
.support-message-btn-coffee {
    background: linear-gradient(135deg, #FFDD00 0%, #FBB034 100%);
    color: #000;
    border-color: #FFDD00;
}

.support-message-btn-coffee:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 176, 52, 0.4);
}

/* PayPal Button */
.support-message-btn-paypal {
    background: linear-gradient(135deg, #0070ba 0%, #1546a0 100%);
    color: white;
    border-color: #0070ba;
}

.support-message-btn-paypal:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 112, 186, 0.4);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .support-message-content {
        padding: 16px 18px;
    }

    .support-message-text {
        gap: 10px;
        margin-bottom: 14px;
    }

    .support-message-icon {
        font-size: 24px;
    }

    .support-message-body strong {
        font-size: 15px;
    }

    .support-message-body span {
        font-size: 13px;
    }

    .support-message-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .support-message-btn {
        width: 100%;
        min-width: unset;
        padding: 11px 18px;
        font-size: 14px;
    }

    .support-message-btn-icon {
        font-size: 16px;
    }
}

/* Tablet landscape */
@media (max-width: 768px) and (min-width: 641px) {
    .support-message-buttons {
        gap: 8px;
    }

    .support-message-btn {
        min-width: 160px;
        padding: 11px 16px;
    }
}

/* Print - hide support message when printing */
@media print {
    .support-message {
        display: none !important;
    }
}
