        /* Modal Overlay */
        .abm-modal-overlay {
            background-color: rgba(0, 0, 0, 0.3);
            position: fixed;
            inset: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 25000;
            transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
        }

        .abm-modal-overlay.abm-show {
            opacity: 1;
            visibility: visible;
            pointer-events: all;
        }

        /* Modal Container */
        .abm-modal-container {
            background: white;
            border-radius: 20px;
            padding: 32px;
            width: 480px;
            max-width: 95vw;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.86, 0, 0.07, 1);
            transform: scale(0.8);
            border: 1px solid #d1d5db;
        }

        .abm-modal-overlay.abm-show .abm-modal-container {
            transform: scale(0.95);
        }

        /* Modal Header */
        .abm-modal-title {
            font-size: 28px;
            font-weight: 500;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-family: 'Poppins', sans-serif;
        }

        .abm-modal-subtitle {
            font-size: 14px;
            color: #6b7280;
            margin-bottom: 28px;
            font-family: 'Poppins', sans-serif;
        }

        /* Options Container */
        .abm-options-container {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 20px;
        }

        /* Option Button */
        .abm-option-btn {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: white;
            border: 1px solid #d1d5db;
            border-radius: 16px;
            font-size: 14px;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            cursor: pointer;
            transition: all 0.2s ease;
            color: #1f2937;
            text-align: left;
        }

        .abm-option-btn:hover {
            background: #f9fafb;
            border-color: #9ca3af;
        }

        .abm-option-btn .ph {
            font-size: 24px;
            color: #6b7280;
        }

        .abm-option-text {
            flex: 1;
        }

        .abm-option-title {
            font-weight: 500;
            color: #1f2937;
            margin-bottom: 2px;
            font-family: 'Poppins', sans-serif;
        }

        .abm-option-description {
            font-size: 12px;
            color: #9ca3af;
            font-weight: 400;
            font-family: 'Poppins', sans-serif;
        }

        /* Mobile Styles (Bottomsheet) */
        @media (max-width: 768px) {
            .abm-modal-overlay {
                align-items: flex-end;
            }

            .abm-modal-container {
                width: 100%;
                max-width: 100vw;
                border-radius: 20px 20px 0 0;
                transform: translateY(100%);
                padding: 24px;
            }

            .abm-modal-overlay.abm-show .abm-modal-container {
                transform: translateY(0);
            }

            .abm-modal-title {
                font-size: 24px;
            }
        }

        /* Dark Mode */
        @media (prefers-color-scheme: dark) {
            .abm-demo-body {
                background: #0a0a0a;
            }

            .abm-modal-overlay {
                background-color: rgba(0, 0, 0, 0.65);
            }

            .abm-modal-container {
                background: #101010;
                color: #e8eaed;
                box-shadow: 0 2px 5px 1px rgba(32, 33, 36, 0.28);
                border-color: #5f6368;
            }

            .abm-modal-title {
                color: #e8eaed;
            }

            .abm-modal-subtitle {
                color: #9aa0a6;
            }

            .abm-option-btn {
                background: #101010;
                border-color: #5f6368;
                color: #e8eaed;
            }

            .abm-option-btn:hover {
                background: #3c4043;
                border-color: #9aa0a6;
            }

            .abm-option-title {
                color: #e8eaed;
            }

            .abm-option-description {
                color: #9aa0a6;
            }

            .abm-option-btn .ph {
                color: #9aa0a6;
            }

            .abm-trigger-btn {
                background: #eef2ff;
                color: #000000;
                border-color: #5f6368;
            }

            .abm-trigger-btn:hover {
                background: #cfd3e1;
            }
        }