.frmt-popup-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
    display: none;
}

.frmt-popup-notice.show {
    display: block;
    animation: slideInFromRight 1s ease-out;
}

.frmt-popup-content {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 20px 60px 20px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    font-size: 16px;
    text-align: center;
}

.frmt-popup-text {
    display: inline-block;
    font-weight: 500;
}

.frmt-popup-text a {
    color: white;
    text-decoration: underline;
    font-weight: bold;
    margin-left: 5px;
}

.frmt-popup-text a:hover {
    color: #FFD700;
}

.frmt-popup-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 50%;
    transition: all 0.3s;
}

.frmt-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .frmt-popup-content {
        padding: 15px 50px 15px 20px;
        font-size: 14px;
    }
    
    .frmt-popup-close {
        right: 15px;
        font-size: 24px;
        padding: 3px 10px;
    }
}