.ff-notify-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: flex-end;
    justify-content: center;
}
.ff-notify-overlay.active {
    display: flex;
}
.ff-notify-modal {
    background: #fff;
    border-radius: 16px 16px 0 0;
    padding: 28px 24px 32px;
    width: 100%;
    max-width: 480px;
    font-family: sans-serif;
    color: #222;
}
.ff-notify-modal h2 {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 700;
}
.ff-notify-modal p {
    margin: 0 0 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}
.ff-notify-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 15px;
    cursor: pointer;
}
.ff-notify-check input[type=checkbox] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.ff-notify-btn {
    display: block;
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 8px;
    min-height: 48px;
}
.ff-notify-btn-primary {
    background: #000;
    color: #fff;
}
.ff-notify-btn-secondary {
    background: #f0f0f0;
    color: #555;
    margin-top: 10px;
}
.ff-notify-ios-steps {
    background: #f8f8f8;
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.7;
}
