
        /* Overlay */
        .popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(5px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

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

        /* Popup Container - KOMPAKT */
        .popup-container {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            width: 90%;
            max-width: 420px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
            border-radius: 20px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.25),
                0 10px 30px rgba(176, 0, 32, 0.15);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid rgba(176, 0, 32, 0.2);
            overflow: hidden;
        }

        .popup-container.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        /* Close Button */
        .close-btn {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            background: rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(0, 0, 0, 0.1);
            border-radius: 50%;
            color: #333;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .close-btn:hover {
            background: #b00020;
            color: white;
            border-color: #b00020;
            transform: rotate(90deg);
        }

        /* Content */
        .popup-content {
            padding: 35px 30px 30px;
            text-align: center;
        }

        .popup-icon {
            font-size: 48px;
            margin-bottom: 15px;
            animation: bounce 1.5s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        .popup-badge {
            display: inline-block;
            background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 12px;
            box-shadow: 0 4px 12px rgba(176, 0, 32, 0.3);
        }

        .popup-title {
            font-size: 22px;
            color: #333;
            margin-bottom: 12px;
            font-weight: 800;
            line-height: 1.3;
        }

        .popup-message {
            font-size: 15px;
            color: #555;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        /* Info Box */
        .info-box {
            background: linear-gradient(135deg, rgba(176, 0, 32, 0.08) 0%, rgba(176, 0, 32, 0.04) 100%);
            border-left: 3px solid #b00020;
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 20px;
            text-align: left;
        }

        .info-box p {
            font-size: 14px;
            color: #333;
            margin: 8px 0;
            font-weight: 600;
        }

        .info-box p strong {
            color: #b00020;
            margin-right: 5px;
        }

        /* Button */
        .btn-ok {
            width: 100%;
            background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
            color: white;
            padding: 14px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(176, 0, 32, 0.3);
            position: relative;
            overflow: hidden;
        }

        .btn-ok::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .btn-ok:hover::before {
            left: 100%;
        }

        .btn-ok:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(176, 0, 32, 0.4);
        }

        /* Demo Button */
        .demo-trigger {
            position: fixed;
            bottom: 30px;
            left: 30px;
            background: linear-gradient(135deg, #b00020 0%, #d32f2f 100%);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            box-shadow: 0 6px 20px rgba(176, 0, 32, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .demo-trigger:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(176, 0, 32, 0.4);
        }

        /* Responsive */
        @media (max-width: 480px) {
            .popup-container {
                width: 85%;
                max-width: none;
            }

            .popup-content {
                padding: 30px 20px 25px;
            }

            .popup-title {
                font-size: 20px;
            }

            .popup-message {
                font-size: 14px;
            }

            .demo-trigger {
                bottom: 20px;
                right: 20px;
                padding: 10px 20px;
                font-size: 13px;
            }
        }