.confirm-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
    box-sizing: border-box;
    animation: fadeIn 0.3s ease;
}

.confirm-modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.confirm-modal {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    margin: 20px auto;
    padding: 0;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.4s ease;
    overflow: hidden;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.confirm-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.confirm-modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #333;
}

.confirm-hero {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 50px 40px 40px;
    text-align: center;
}

.confirm-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.confirm-hero h1 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.confirm-hero p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.confirm-section {
    padding: 35px 40px;
}

.confirm-section h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.confirm-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.confirm-feature {
    background: white;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    text-align: center;
    transition: all 0.3s;
}

.confirm-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.confirm-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: white;
    font-size: 20px;
}

.confirm-feature h3 {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.confirm-feature p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.confirm-cta-section {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 40px;
    text-align: center;
    color: white;
}

.confirm-cta-section h2 {
    color: #06b6d4;
    font-size: 24px;
    margin-bottom: 15px;
}

.confirm-cta-section p {
    font-size: 15px;
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.confirm-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {

    0%,
    100% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

.confirm-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.confirm-cta-button i {
    font-size: 24px;
}

.confirm-cta-subtext {
    margin-top: 15px;
    font-size: 13px;
    opacity: 0.7;
}

.confirm-why {
    background: #f8fafc;
}

.confirm-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.confirm-why-item {
    text-align: center;
    padding: 20px 15px;
}

.confirm-why-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

.confirm-why-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}

.confirm-why-item p {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

.confirm-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 18px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    color: #92400e;
}

.confirm-notice-icon {
    font-size: 24px;
}

.confirm-disclaimer {
    padding: 25px 40px;
    background: #f1f5f9;
    text-align: center;
}

.confirm-disclaimer h3 {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 10px;
}

.confirm-disclaimer p {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .confirm-modal {
        margin: 10px;
        border-radius: 16px;
    }

    .confirm-hero {
        padding: 40px 25px 30px;
    }

    .confirm-hero h1 {
        font-size: 22px;
    }

    .confirm-hero p {
        font-size: 14px;
    }

    .confirm-section {
        padding: 25px 20px;
    }

    .confirm-section h2 {
        font-size: 18px;
    }

    .confirm-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .confirm-cta-section {
        padding: 30px 20px;
    }

    .confirm-cta-section h2 {
        font-size: 20px;
    }

    .confirm-cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }

    .confirm-why-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .confirm-notice {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
    }

    .confirm-disclaimer {
        padding: 20px;
    }
}