.crop-screen {
    position: fixed;
    inset: 0;

    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,0.88);

    backdrop-filter: blur(8px);
}

.crop-card {
    width: 100%;
    max-width: 500px;

    background: #101936;

    border-radius: 24px;

    padding: 20px;

    color: white;
}

.crop-title {
    text-align: center;

    font-size: 22px;
    font-weight: 700;

    margin-bottom: 20px;
}

.crop-image {
    width: 100%;
    max-height: 60vh;

    display: block;
}

.crop-actions {
    display: flex;

    gap: 14px;

    margin-top: 20px;
}

.crop-actions button {
    flex: 1;

    border: none;

    border-radius: 14px;

    padding: 14px;

    font-size: 16px;
    font-weight: 700;

    cursor: pointer;
}

.crop-cancel {
    background: #2b3558;
    color: white;
}

.crop-confirm {
    background: #2563eb;
    color: white;
}