.ylc-popup-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ylc-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

.ylc-popup-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: ylcPopupSlideIn 0.3s ease-out;
}

@keyframes ylcPopupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.ylc-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.ylc-popup-close:hover {
    background: #f0f0f0;
    color: #333;
}

.ylc-popup-body {
    padding: 50px 30px 30px;
}

.ylc-popup-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 15px 0;
    text-align: center;
}

.ylc-popup-description {
    font-size: 16px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
}

.ylc-popup-description p {
    margin-bottom: 10px;
}

.ylc-popup-actions {
    text-align: center;
}

.ylc-popup-cta {
    display: inline-block;
    background: #EF1B33;
    color: #fff;
    padding: 12px 30px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}

.ylc-popup-cta:hover {
    background: #dc3b3b;
    color: #fff;
    text-decoration: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .ylc-popup-content {
        max-width: 95%;
        margin: 20px;
    }
    
    .ylc-popup-body {
        padding: 30px 20px 20px;
    }
    
    .ylc-popup-title {
        font-size: 20px;
    }
    
    .ylc-popup-description {
        font-size: 14px;
    }
}

/* Animation for closing */
.ylc-popup-banner.ylc-closing {
    animation: ylcPopupFadeOut 0.3s ease-in forwards;
}

@keyframes ylcPopupFadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}