.unlock-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.unlock-modal.hidden {
    display: none;
}

.unlock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.unlock-card {
    position: relative;
    background: #f6f7fb;
    width: 520px;
    max-width: 92%;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    z-index: 2;
}

.unlock-card h2 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #1b1b1b;
}

.unlock-subtitle {
    color: #555;
    margin-bottom: 25px;
}

.price-box {
    background: #2f3136;
    color: white;
    font-size: 60px;
    padding: 15px 30px;
    border-radius: 18px;
    display: inline-block;
    margin: 20px 0;
}

.price-desc {
    font-size: 22px;
    margin: 10px 0 5px;
}

.price-small {
    color: #666;
    margin-bottom: 25px;
}

.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 18px;
}

.unlock-btn {
    width: 100%;
    background: linear-gradient(90deg,#2b6cff,#1e54d8);
    color: white;
    border: none;
    padding: 18px;
    font-size: 22px;
    border-radius: 14px;
    cursor: pointer;
    transition: 0.25s;
}

.unlock-btn:hover {
    transform: translateY(-2px);
}

.unlock-close {
    position: absolute;
    top: 15px;
    right: 18px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
}