@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #000;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .card {
            background: linear-gradient(135deg, #4C1D95, #7C3AED);
            width: 380px;
            padding: 40px 30px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 20px 40px rgba(124, 58, 237, 0.4);
            animation: popUp 0.4s ease;
        }

        @keyframes popUp {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .title {
            color: white;
            font-size: 24px;
            font-weight: 600;
            line-height: 1.3;
            margin-bottom: 40px;
        }

        .btn {
            width: 100%;
            padding: 16px;
            border: none;
            border-radius: 50px;
            font-size: 17px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 12px;
        }

        .btn-yes {
            background: white;
            color: #4C1D95;
        }

        .btn-yes:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
        }

        .btn-no {
            background: #FF3B5C;
            color: white;
        }

        .btn-no:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 59, 92, 0.4);
        }