 /* Modal Backdrop */
        .hmp-modal-backdrop {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hmp-modal-backdrop.active {
            display: block;
            opacity: 1;
        }

        /* Modal Container */
        .hmp-modal {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.7);
            background: #fff;
            width: 90%;
            max-width: 500px;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            z-index: 1001;
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            overflow: hidden;
        }

        .hmp-modal.active {
            display: block;
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        /* Modal Header */
        .modal-header {
            padding: 24px 24px 20px;
            border-bottom: 1px solid #e2e8f0;
            position: relative;
        }

        .modal-title {
            font-size: 24px;
            font-weight: 700;
            color: #1a202c;
            margin: 0;
        }

        .modal-subtitle {
            font-size: 14px;
            color: #718096;
            margin-top: 4px;
        }

        /* Close Button */
        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 32px;
            height: 32px;
            background: #f7fafc;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .modal-close:hover {
            background: #e2e8f0;
            transform: rotate(90deg);
        }

        .modal-close svg {
            width: 16px;
            height: 16px;
            stroke: #4a5568;
            stroke-width: 2;
        }

        /* Modal Body */
        .modal-body {
            padding: 24px;
            max-height: 60vh;
            overflow-y: auto;
        }

        .modal-body::-webkit-scrollbar {
            width: 6px;
        }

        .modal-body::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 3px;
        }

        .modal-body::-webkit-scrollbar-thumb {
            background: #cbd5e0;
            border-radius: 3px;
        }

        .modal-body::-webkit-scrollbar-thumb:hover {
            background: #a0aec0;
        }

        .modal-body p {
            line-height: 1.6;
            color: #4a5568;
            margin-bottom: 16px;
        }

        
        /* Animation keyframes */
        @keyframes modalSlideIn {
            from {
                transform: translate(-50%, -50%) translateY(20px) scale(0.9);
                opacity: 0;
            }
            to {
                transform: translate(-50%, -50%) translateY(0) scale(1);
                opacity: 1;
            }
        }

        .hmp-modal.animate {
            animation: modalSlideIn 0.3s ease forwards;
        }

        /* Responsive */
        @media (max-width: 640px) {
            .hmp-modal {
                width: 95%;
                max-width: none;
            }
            
            .modal-body {
                max-height: 50vh;
            }
            
            .modal-footer {
                flex-direction: column;
            }
            
            .btn {
                width: 100%;
            }
        }