
.unlock-popup {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: 5s;
}
.unlock-popup.active {
    display: flex;
    width: 100%;
    height: 100%;
}

.unlock-popup .main{
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #ff9500;
    background-color: #fff;
}

.popup-header {
    background-color: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.popup-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.popup-header p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    padding: 30px;
    gap: 25px;
    justify-content: center;
}

.popup-footer {
    background-color: #f8f9fa;
    padding: 25px;
    text-align: center;
    border-top: 1px solid #eaeaea;
}

.confirm-btn {
    background-color: #ff9500;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px #ff9500;
}

.confirm-btn:hover {
    background-color: #ff9500;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px #ff9500;
}

.confirm-btn i {
    margin-right: 10px;
}