/**
 * SupportBanner Styles - Professional Modal Version
 * Centered modal overlay with backdrop blur
 */

/* Modal Container */
.support-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.support-modal-visible {
    opacity: 1;
    visibility: visible;
}

/* Backdrop */
.support-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Modal Content Card */
.support-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 480px;
    width: 100%;
    padding: 40px 32px;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
}

.support-modal-visible .support-modal-content {
    transform: scale(1);
}

/* Close Button */
.support-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.support-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
    transform: rotate(90deg);
}

/* Header Section */
.support-modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.support-modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 50%;
    color: #f59e0b;
    margin-bottom: 20px;
    animation: heartbeat 2s ease-in-out infinite;
}

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

.support-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.3;
}

.support-modal-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* Body Section */
.support-modal-body {
    margin-bottom: 32px;
}

.support-feature-list {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 24px;
}

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

.support-feature:last-child {
    margin-bottom: 0;
}

.support-feature-icon {
    flex-shrink: 0;
    color: #16a34a;
    margin-top: 2px;
}

.support-feature span {
    font-size: 14px;
    color: #166534;
    line-height: 1.5;
}

.support-modal-message {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    text-align: center;
}

.support-modal-message strong {
    color: #f59e0b;
    font-weight: 700;
}

/* Action Buttons */
.support-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-btn {
    width: 100%;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    font-family: inherit;
}

.support-btn-primary {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.support-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 158, 11, 0.4);
}

.support-btn-primary:active {
    transform: translateY(0);
}

.support-btn-secondary {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

.support-btn-secondary:hover {
    background: #e5e7eb;
    color: #4b5563;
}

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

    .support-modal-content {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .support-modal-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }

    .support-modal-icon svg {
        width: 36px;
        height: 36px;
    }

    .support-modal-title {
        font-size: 20px;
    }

    .support-modal-subtitle {
        font-size: 14px;
    }

    .support-feature-list {
        padding: 16px;
    }

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

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

    .support-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

@media (max-width: 380px) {
    .support-modal-content {
        padding: 28px 20px;
    }

    .support-modal-title {
        font-size: 18px;
    }

    .support-modal-subtitle {
        font-size: 13px;
    }

    .support-feature span {
        font-size: 12px;
    }

    .support-modal-message {
        font-size: 12px;
    }
}
