﻿#NotSoFast
{
    display: none;
}

#NotSoFastFree
{
    display: none;
}

.not-so-fast-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    font-family: 'Poppins', sans-serif;
}

.not-so-fast-container {
    width: 90%;
    max-width: 550px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: slideIn 0.5s ease forwards;
}

.not-so-fast-content {
    padding: 30px;
    text-align: center;
}

.not-so-fast-icon {
    font-size: 64px;
    color: #FF6B6B;
    margin-bottom: 20px;
}

.not-so-fast-content h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.not-so-fast-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.not-so-fast-steps {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 25px;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

    .step:last-child {
        margin-bottom: 0;
    }

.step-number {
    width: 28px;
    height: 28px;
    background-color: #0866ff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    font-size: 15px;
    color: #333;
}

.not-so-fast-button {
    display: inline-block;
    background-color: #0866ff;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(8, 102, 255, 0.2);
}

    .not-so-fast-button:hover {
        background-color: #0652c8;
        transform: translateY(-2px);
        box-shadow: 0 6px 8px rgba(8, 102, 255, 0.3);
    }

    .not-so-fast-button i {
        margin-right: 8px;
    }

.not-so-fast-note {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFF8E6;
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 4px solid #FFD166;
}

    .not-so-fast-note i {
        color: #FFD166;
        font-size: 20px;
        margin-right: 10px;
    }

    .not-so-fast-note p {
        color: #666;
        font-size: 14px;
        margin: 0;
        text-align: left;
    }

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .not-so-fast-container {
        width: 95%;
    }

    .not-so-fast-content {
        padding: 20px;
    }

    .not-so-fast-icon {
        font-size: 48px;
    }

    .not-so-fast-content h2 {
        font-size: 24px;
    }

    .step-text {
        font-size: 14px;
    }
}

/* Thêm hiệu ứng nhấp nháy nhẹ cho nút */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(8, 102, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(8, 102, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(8, 102, 255, 0);
    }
}

.not-so-fast-button {
    animation: pulse 2s infinite;
}
